| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 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 : /Old Sites/Engineering/V2/plugins/editors/jckeditor/includes/ckeditor/ |
Upload File : |
<?php
/*------------------------------------------------------------------------
# Copyright (C) 2005-2010 WebxSolution Ltd. All Rights Reserved.
# @license - GPLv2.0
# Author: WebxSolution Ltd
# Websites: http://www.webxsolution.com
# Terms of Use: An extension that is derived from the JoomlaCK editor will only be allowed under the following conditions: http://joomlackeditor.com/terms-of-use
# ------------------------------------------------------------------------*/
class JCKPlugins
{
var $_extraPlugins = '';
var $_removePlugins = '';
function __construct()
{
foreach (get_object_vars($this ) as $k => $v)
{
if (is_array($v) || is_object($v) || is_null($k)) {
continue;
}
if ($k[0] == '_') { // internal field
continue;
}
if(is_numeric($v) && $v == 0)
$this->_removePlugins .= "$k,";
if(is_numeric($v) && $v == 1)
$this->_extraPlugins .= "$k,";
}
if (substr($this->_removePlugins, -1) == ',')
$this->_removePlugins = substr($this->_removePlugins, 0, -1);
if (substr($this->_extraPlugins, -1) == ',')
$this->_extraPlugins = substr($this->_extraPlugins, 0, -1);
}
function getExtraPlugins()
{
return $this->_extraPlugins;
}
function getRemovedPlugins()
{
return $this->_removePlugins;
}
}