Your IP : 216.73.216.85


Current Path : /home/smartconb/www/armencom33/plugins/eventgallery_sur/standard/src/Extension/
Upload File :
Current File : /home/smartconb/www/armencom33/plugins/eventgallery_sur/standard/src/Extension/StandardPlugin.php

<?php
/**
 * @package     Sven.Bluege
 * @subpackage  com_eventgallery
 *
 * @copyright   Copyright (C) 2005 - 2019 Sven Bluege All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
namespace Svenbluege\Plugin\EventgallerySurcharge\Standard\Extension;
use Joomla\CMS\Plugin\CMSPlugin;
use Svenbluege\Plugin\EventgallerySurcharge\Standard\Workingclass\Standard;

defined('_JEXEC') || die;

class StandardPlugin extends CMSPlugin {
    public function init() {
        $this->loadLanguage();
    }

    public function getWorkingClass() {
        return Standard::class;
    }
}