| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/vesoul/components/com_content/src/Helper/ |
Upload File : |
<?php
/**
* @package Joomla.Site
* @subpackage com_content
*
* @copyright (C) 2007 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\Component\Content\Site\Helper;
use Joomla\CMS\Factory;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\Database\DatabaseInterface;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Content Component Query Helper
*
* @since 1.5
*/
class QueryHelper
{
/**
* Translate an order code to a field for category ordering.
*
* @param string $orderby The ordering code.
*
* @return string The SQL field(s) to order by.
*
* @since 1.5
*/
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;
}
/**
* Translate an order code to a field for article ordering.
*
* @param string $orderby The ordering code.
* @param string $orderDate The ordering code for the date.
* @param ?DatabaseInterface $db The database
*
* @return string The SQL field(s) to order by.
*
* @since 1.5
*/
public static function orderbySecondary($orderby, $orderDate = 'created', ?DatabaseInterface $db = null)
{
$db = $db ?: Factory::getDbo();
$queryDate = self::getQueryDate($orderDate, $db);
switch ($orderby) {
case 'date':
$orderby = $queryDate;
break;
case 'rdate':
$orderby = $queryDate . ' DESC ';
break;
case 'alpha':
$orderby = 'a.title';
break;
case 'ralpha':
$orderby = 'a.title DESC';
break;
case 'hits':
$orderby = 'a.hits DESC';
break;
case 'rhits':
$orderby = 'a.hits';
break;
case 'rorder':
$orderby = 'a.ordering DESC';
break;
case 'author':
$orderby = 'author';
break;
case 'rauthor':
$orderby = 'author DESC';
break;
case 'front':
$orderby = 'a.featured DESC, fp.ordering, ' . $queryDate . ' DESC ';
break;
case 'random':
$orderby = $db->createQuery()->rand();
break;
case 'vote':
$orderby = 'a.id DESC ';
if (PluginHelper::isEnabled('content', 'vote')) {
$orderby = 'rating_count DESC ';
}
break;
case 'rvote':
$orderby = 'a.id ASC ';
if (PluginHelper::isEnabled('content', 'vote')) {
$orderby = 'rating_count ASC ';
}
break;
case 'rank':
$orderby = 'a.id DESC ';
if (PluginHelper::isEnabled('content', 'vote')) {
$orderby = 'rating DESC ';
}
break;
case 'rrank':
$orderby = 'a.id ASC ';
if (PluginHelper::isEnabled('content', 'vote')) {
$orderby = 'rating ASC ';
}
break;
default:
$orderby = 'a.ordering';
break;
}
return $orderby;
}
/**
* Translate an order code to a field for date ordering.
*
* @param string $orderDate The ordering code.
* @param ?DatabaseInterface $db The database
*
* @return string The SQL field(s) to order by.
*
* @since 1.6
*/
public static function getQueryDate($orderDate, ?DatabaseInterface $db = null)
{
switch ($orderDate) {
case 'modified':
$queryDate = ' CASE WHEN a.modified IS NULL THEN a.created ELSE a.modified END';
break;
// Use created if publish_up is not set
case 'published':
$queryDate = ' CASE WHEN a.publish_up IS NULL THEN a.created ELSE a.publish_up END ';
break;
case 'unpublished':
$queryDate = ' CASE WHEN a.publish_down IS NULL THEN a.created ELSE a.publish_down END ';
break;
case 'created':
default:
$queryDate = ' a.created ';
break;
}
return $queryDate;
}
}