Your IP : 216.73.216.229


Current Path : /home/jeromecohp/www/templates/yootheme/packages/builder-joomla-search/
Upload File :
Current File : /home/jeromecohp/www/templates/yootheme/packages/builder-joomla-search/bootstrap.php

<?php

namespace YOOtheme\Builder\Joomla\Search;

use Joomla\CMS\Component\ComponentHelper;

if (!ComponentHelper::isEnabled('com_search')) {
    return [];
}

return [
    'events' => [
        'source.init' => [Listener\LoadSourceTypes::class => '@handle'],
        'builder.template' => [Listener\MatchTemplate::class => '@handle'],
        'builder.template.load' => [Listener\LoadTemplateUrl::class => '@handle'],
    ],

    'actions' => [
        'onContentPrepare' => [Listener\LoadSearchArticle::class => '@handle'],
    ],
];