%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/old/plugins/editors/jckeditor/install/models/ |
Upload File : |
<?php
/*------------------------------------------------------------------------
# Copyright (C) 2005-2012 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
# ------------------------------------------------------------------------*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die();
/**
* Install Model
*
* @package JCK Editor
* @subpackage JCK.install Wizard
*/
JCKLoader::loadExtendClass('model');
class InstallModelFolders extends JCKModel
{
private $_editor;
public function __construct($config = array())
{
if( defined('JLEGACY_CMS') )
{
$sql = "SELECT id,params FROM #__plugins WHERE element = 'jckeditor' AND folder ='editors'" ;
} else
{
$sql = "SELECT extension_id as id, params FROM #__extensions WHERE element = 'jckeditor' AND folder ='editors'" ;
}//end if
$database = JFactory::getDBO();
$database->setQuery( $sql );
$result = $database->loadObject();
$this->_editor = $result;
parent::__construct($config);
}
private function _getParams()
{
static $registry = NULL;
if(is_null($registry))
{
$registry = new JRegistry($this->_editor->params);
}
return $registry;
}
public function getUserList()
{
$params = $this->_getParams();
$default = $params->get('displayFoldersTo','');
$db = JFactory::getDBO();
$query = $db->getQuery(true);
$query->select('a.id AS value, a.title AS text, COUNT(DISTINCT b.id) AS level');
$query->from($db->quoteName('#__usergroups') . ' AS a');
$query->join('LEFT', $db->quoteName('#__usergroups') . ' AS b ON a.lft > b.lft AND a.rgt < b.rgt');
$query->group('a.id, a.title, a.lft, a.rgt');
$query->order('a.lft ASC');
$db->setQuery($query);
$options = $db->loadObjectList();
for ($i = 0, $n = count($options); $i < $n; $i++)
{
$options[$i]->text = str_repeat('- ', $options[$i]->level) . $options[$i]->text;
}
$list = JHTML::_('select.genericlist', $options, 'displayFoldersTo[]', 'class="box" size="5" multiple="multiple"','value','text',$default);
return $list;
}
public function getUseUserFolderBooleanList()
{
$params = $this->_getParams();
$default = $params->get('useUserFolders',0);
$options = array(
JHTML::_('select.option', '0', 'No'),
JHTML::_('select.option', '1', 'Yes')
);
$list = JHTML::_('select.genericlist', $options, 'useUserFolders', 'class="box" size="1"','value','text',$default);
return $list;
}
public function getUserFolderTypeList()
{
$params = $this->_getParams();
$default = $params->get('userFolderType','username');
$options = array(
JHTML::_('select.option', 'username', 'UserName'),
JHTML::_('select.option', 'id', 'ID')
);
$list = JHTML::_('select.genericlist', $options, 'userFolderType', 'class="box" size="1"','value','text',$default);
return $list;
}
public function store()
{
$post = JRequest::get('post');
foreach($post as $key=>$value)
{
if(strtolower(trim($value)) == 'automatic' || strtolower(trim($value)) =='None')
$post[$key] = '';
}
if( defined('JLEGACY_CMS') )
$table = JTable::getInstance('plugin');
else
$table = JTable::getInstance('extension');
$registry = $this->_getParams();
$registry->loadArray($post);
$table->load($this->_editor->id);
$table->params = $registry->toString();
return $table->store();
}
}