%PDF- %PDF-
| Direktori : /home1/lightco1/public_html/lightcolab.com/plugins/system/regularlabs/src/ |
| Current File : //home1/lightco1/public_html/lightcolab.com/plugins/system/regularlabs/src/SearchHelper.php |
<?php
/**
* @package Regular Labs Library
* @version 18.2.5909
*
* @author Peter van Westen <info@regularlabs.com>
* @link http://www.regularlabs.com
* @copyright Copyright © 2018 Regular Labs All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
namespace RegularLabs\Plugin\System\RegularLabs;
defined('_JEXEC') or die;
use JFactory;
use RegularLabs\Library\Document as RL_Document;
class SearchHelper
{
public static function load()
{
// Only in frontend search component view
if ( ! RL_Document::isClient('site') || JFactory::getApplication()->input->get('option') != 'com_search')
{
return;
}
$classes = get_declared_classes();
if (in_array('SearchModelSearch', $classes) || in_array('searchmodelsearch', $classes))
{
return;
}
require_once JPATH_LIBRARIES . '/regularlabs/helpers/search.php';
}
}