Your IP : 216.73.216.68


Current Path : /home/jeromecohp/www/plugins/system/fs_grid/
Upload File :
Current File : /home/jeromecohp/www/plugins/system/fs_grid/fs_grid.php

<?php
/**
 * @package   Grid 10 element for YOOtheme Pro
 * @author    Flart Studio https://www.flart.studio
 * @copyright Copyright (C) Flart Studio
 * @license   GNU General Public License version 3, or later
 */

// No direct access to this file
defined('_JEXEC') or die();

use Joomla\CMS\Plugin\CMSPlugin;
use YOOtheme\Application;

class plgSystemfs_grid extends CMSPlugin
{
    public function onAfterInitialise()
    {
        if (!class_exists(Application::class, false)) {
            return;
        }
        $app = Application::getInstance();
        $app->load(__DIR__ . '/bootstrap.php');
    }

}