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/security/group/ |
<?php /** * Gets a list of user groups * * @param boolean $combo (optional) If true, will append a (anonymous) row * @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. * @param string $sort (optional) The column to sort by. Defaults to name. * @param string $dir (optional) The direction of the sort. Defaults to ASC. * * @package modx * @subpackage processors.security.group */ class modUserGroupGetListProcessor extends modObjectGetListProcessor { public $classKey = 'modUserGroup'; public $languageTopics = array('user','access','messages'); public $permission = 'usergroup_view'; public function initialize() { $initialized = parent::initialize(); $this->setDefaultProperties(array( 'addAll' => false, 'addNone' => false, 'combo' => false, )); return $initialized; } public function beforeIteration(array $list) { if ($this->getProperty('addAll',false)) { $list[] = array( 'id' => '', 'name' => '('.$this->modx->lexicon('all').')', 'description' => '', 'parent' => 0, ); } if ($this->getProperty('addNone',false)) { $list[] = array( 'id' => 0, 'name' => $this->modx->lexicon('none'), 'description' => '', 'parent' => 0, ); } if ($this->getProperty('combo',false)) { $list[] = array( 'id' => '', 'name' => ' ('.$this->modx->lexicon('anonymous').') ', 'description' => '', 'parent' => 0, ); } return $list; } public function prepareQueryBeforeCount(xPDOQuery $c) { $exclude = $this->getProperty('exclude',''); if (!empty($exclude)) { $c->where(array( 'id:NOT IN' => is_array($exclude) ? $exclude : explode(',',$exclude), )); } return $c; } } return 'modUserGroupGetListProcessor';