| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/plugins/system/tabber/ |
Upload File : |
<?php
/**
* Main Plugin File
* Does all the magic!
*
* @package Tabber editor System
* @version 1.6.0
*
* @author Peter van Westen <peter@nonumber.nl>
* @link http://www.nonumber.nl
* @copyright Copyright © 2011 NoNumber! All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
// No direct access
defined( '_JEXEC' ) or die();
// Import library dependencies
jimport( 'joomla.plugin.plugin' );
/**
* System Plugin that places a Tabber code block into the text
*/
class plgSystemTabber extends JPlugin
{
function __construct( &$subject, $config )
{
$this->_pass = 0;
parent::__construct( $subject, $config );
}
function onAfterRoute()
{
$this->_pass = 0;
// return if disabled via url
// return if current page is raw format
// return if current page is a joomfishplus page
if (
JRequest::getCmd( 'disable_tabber' )
|| JRequest::getCmd( 'format' ) == 'raw'
|| JRequest::getCmd( 'option' ) == 'com_joomfishplus'
) {
return;
}
$mainframe =& JFactory::getApplication();
// load the admin language file
$lang =& JFactory::getLanguage();
if ( $lang->getTag() != 'en-GB' ) {
// Loads English language file as fallback (for undefined stuff in other language file)
$lang->load( 'plg_'.$this->_type.'_'.$this->_name, JPATH_ADMINISTRATOR, 'en-GB' );
}
$lang->load( 'plg_'.$this->_type.'_'.$this->_name, JPATH_ADMINISTRATOR, null, 1 );
// return if NoNumber! Framework plugin is not installed
jimport( 'joomla.filesystem.file' );
if ( !JFile::exists( JPATH_PLUGINS.DS.'system'.DS.'nnframework'.DS.'nnframework.php' ) ) {
if ( $mainframe->isAdmin() && JRequest::getCmd( 'option' ) !== 'com_login' ) {
$msg = JText::_( 'TBR_NONUMBER_FRAMEWORK_PLUGIN_NOT_INSTALLED' );
$mq = $mainframe->getMessageQueue();
foreach ( $mq as $m ) {
if ( $m['message'] == $msg ) {
$msg = '';
break;
}
}
if ( $msg ) {
$mainframe->enqueueMessage( $msg, 'error' );
}
}
return;
}
// return if current page is an administrator page (and not acymailing)
if ( $mainframe->isAdmin() && JRequest::getCmd( 'option' ) != 'com_acymailing' ) { return; }
$this->_pass = 1;
// Load plugin parameters
require_once JPATH_PLUGINS.DS.'system'.DS.'nnframework'.DS.'helpers'.DS.'parameters.php';
$parameters =& NNParameters::getParameters();
$params = $parameters->getParams( $this->params->_raw, JPATH_PLUGINS.DS.$this->_type.DS.$this->_name.'.xml' );
// Include the Helper
require_once JPATH_PLUGINS.DS.$this->_type.DS.$this->_name.DS.'helper.php';
$class = get_class( $this ).'Helper';
$this->helper = new $class ( $params );
}
function onAfterDispatch()
{
if ( $this->_pass ) {
$this->helper->onAfterDispatch();
}
}
function onAfterRender()
{
if ( $this->_pass ) {
$this->helper->onAfterRender();
}
}
}