| Server IP : 46.105.57.169 / Your IP : 216.73.217.8 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/m/a/i/maitricfuz/www/saint-martin-lg/libraries/regularlabs/src/ |
Upload File : |
<?php
/**
* @package Regular Labs Library
* @version 26.7.20176
*
* @author Peter van Westen <info@regularlabs.com>
* @link https://regularlabs.com
* @copyright Copyright © 2026 Regular Labs All Rights Reserved
* @license GNU General Public License version 2 or later
*/
namespace RegularLabs\Library;
defined('_JEXEC') or die;
use Joomla\CMS\Application\CMSApplicationInterface as JCMSApplicationInterface;
use Joomla\CMS\Document\Document as JDocument;
use Joomla\CMS\Version as JVersion;
class Indexer
{
public static function getApplication(): JCMSApplicationInterface
{
return \RegularLabs\Library\Application::get();
}
public static function getDocument(): ?JDocument
{
if (!self::isActive()) {
return \RegularLabs\Library\Document::get();
}
$language = self::getApplication()->getLanguage();
$version = new JVersion();
return JDocument::getInstance('html', ['charset' => 'utf-8', 'lineend' => 'unix', 'tab' => "\t", 'language' => $language?->getTag() ?? 'en-GB', 'direction' => $language?->isRtl() ?? \false ? 'rtl' : 'ltr', 'mediaversion' => $version->getMediaVersion() ?? null]);
}
public static function isActive(): bool
{
$request = \RegularLabs\Library\RequestContext::fromInput();
if ($request->isOption('com_finder') && $request->isTask('batch')) {
return \true;
}
if (!\RegularLabs\Library\Application::isCli()) {
return \false;
}
return in_array('finder:index', $_SERVER['argv'] ?? [], \true);
}
public static function isContext(string $context): bool
{
return in_array($context, ['com_finder.index', 'com_finder.indexer'], \true);
}
public static function isFinderContext(): bool
{
return self::isActive() || \RegularLabs\Library\RequestContext::fromInput()->isOption('com_finder');
}
}