%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/administrator/components/com_jckman/models/ |
Upload File : |
<?php
/*------------------------------------------------------------------------
# Copyright (C) 2005-2013 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
# ------------------------------------------------------------------------*/
// no direct access
defined( '_JEXEC' ) or die();
// Import library dependencies
require_once(dirname(__FILE__).DS.'extension.php');
class JCKManModelLanguage extends JCKManModelInstaller
{
/**
* Extension Type
* @var string
*/
var $_type = 'language';
/**
* Overridden constructor
* @access protected
*/
function __construct()
{
$app = JFactory::getApplication();
// Call the parent constructor
parent::__construct();
// Set state variables from the request
$this->setState('filter.string', $app->getUserStateFromRequest( "com_jckman.language.string", 'filter', '', 'string' ));
}
function _loadItems()
{
// Get a database connector
$db = JFactory::getDBO();
$sql = $db->getQuery( true );
$sql->select( 'id, tag, filename' )
->from( '#__jcklanguages' )
->order( 'id DESC' );
if($search = $this->state->get('filter.string'))
{
$sql->where( 'title LIKE '.$db->Quote( '%'.$db->getEscaped( $search, true ).'%', false ) );
}
$rows = $db->setQuery($sql)->loadObjectList();
// Get the plugin base path
$baseDir = JPATH_COMPONENT.'/language';
$numRows = count($rows);
for ($i = 0; $i < $numRows; $i ++)
{
$row = & $rows[$i];
// Get the plugin xml file
$xmlfile = $baseDir.'/overrides/'. $row->filename;
if(!file_exists( $xmlfile))
$xmlfile = $baseDir.'/'. $row->tag .'/'. $row->filename;
if (file_exists($xmlfile)) {
if ($data = JCKHelper::parseXMLInstallFile($xmlfile)) {
foreach($data as $key => $value)
{
$row->$key = $value;
}
}
}
}
$this->setState('pagination.total', $numRows);
if($this->state->get('pagination.limit') > 0) {
$this->_items = array_slice( $rows, $this->state->get('pagination.offset'), $this->state->get('pagination.limit') );
} else {
$this->_items = $rows;
}
}
}