/var/www/vhosts/nabawater/common/components
NameSizeModeActions
AttributeKeyGeneratorBehaviour.php51450644editdlrm
CController.php63170644editdlrm
CErrorAction.php7410644editdlrm
CListView.php29960644editdlrm
CModel.php81060644editdlrm
ConfigurationMethod.php84080644editdlrm
ConfigurationOption.php98580644editdlrm
GeoData.php24270644editdlrm
UserIdentity.php13900644editdlrm
Edit: /var/www/vhosts/nabawater/common/components/CListView.php (2996B)
*/ class CListView extends ListView { /** * @var array */ public $itemOptions = ['class' => 'item-list']; /** * @var Closure an anonymous function that is called once BEFORE rendering data model. * It should have the following signature: * * ```php * function () * ``` * * The return result of the function will be rendered directly. * Note: If the function returns `null`, nothing will be rendered before the item. * @see renderBeforeItemList * @author A Vijay */ public $beforeItemList; /** * @var Closure an anonymous function that is called once AFTER rendering data model. * * It should have the same signature as [[beforeItemList]]. * * The return result of the function will be rendered directly. * Note: If the function returns `null`, nothing will be rendered after the item. * @see renderAfterItemList * @author A Vijay */ public $afterItemList; /** * @var bool */ public $usePrimaryKey = false; /** * Renders all data models. * @return string the rendering result */ public function renderItems() { $list = []; if (($before = $this->renderBeforeItemList()) !== null) { $list[] = $before; } $list[] = parent::renderItems(); if (($after = $this->renderAfterItemList()) !== null) { $list[] = $after; } return implode('', $list); } /** * Calls [[beforeItemList]] closure, returns execution result. * If [[beforeItemList]] is not a closure, `null` will be returned. * * @return mixed|null */ public function renderBeforeItemList() { if ($this->beforeItemList instanceof Closure) { return call_user_func($this->beforeItemList, $this); } return null; } /** * Calls [[afterItemList]] closure, returns execution result. * If [[afterItemList]] is not a closure, `null` will be returned. * * @return mixed|null */ public function renderAfterItemList() { if ($this->afterItemList instanceof Closure) { return call_user_func($this->afterItemList, $this); } return null; } /** * @param mixed $model * @param mixed $key * @param int $index * @return string * @throws \yii\base\InvalidConfigException */ public function renderItem($model, $key, $index) { if (!$this->usePrimaryKey) { /* @var $model CModel */ if (($temp = $model->getKey()) !== null) { $key = $temp; } } return parent::renderItem($model, $key, $index); } }