Your IP : 104.23.197.123


Current Path : /var/www/html/Joomla/plugins/editors-xtd/sourcerer/
Upload File :
Current File : /var/www/html/Joomla/plugins/editors-xtd/sourcerer/sourcerer.php

<?php
/**
 * @package         Sourcerer
 * @version         8.4.1
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            http://www.regularlabs.com
 * @copyright       Copyright © 2020 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

defined('_JEXEC') or die;

if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php'))
{
	return;
}

require_once JPATH_LIBRARIES . '/regularlabs/autoload.php';

/**
 * Button Plugin that places a Sourcerer code block into the text
 */
class PlgButtonSourcerer
	extends \RegularLabs\Library\EditorButtonPlugin
{
}