uawdijnntqw1x1x1
IP : 216.73.216.54
Hostname : neogeopocket.gameplayer.club
Kernel : Linux neogeopocket.gameplayer.club 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
html
/
1c732
/
..
/
1c732
/
.
/
..
/
libraries
/
Prism
/
Utilities
/
QueryHelper.php
/
/
<?php /** * @package Prism * @subpackage Utilities * @author Todor Iliev * @copyright Copyright (C) 2017 Todor Iliev <todor@itprism.com>. All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE.txt */ namespace Prism\Utilities; // no direct access defined('JPATH_PLATFORM') or die; /** * This class provides methods used in the process of preparing database query. * * @package Prism * @subpackage Utilities */ abstract class QueryHelper { /** * Translate an order code to a field for primary category ordering. * * @param string $orderBy The ordering code. * * @return string The SQL field(s) to order by. */ public static function orderbyPrimary($orderBy) { switch ($orderBy) { case 'alpha': $orderBy = 'c.path'; break; case 'ralpha': $orderBy = 'c.path DESC'; break; case 'order': $orderBy = 'c.lft'; break; default: $orderBy = ''; break; } return $orderBy; } }
/var/www/html/1c732/../1c732/./../libraries/Prism/Utilities/QueryHelper.php