Файловый менеджер - Редактировать - /var/www/iplanru/data/www/i-plan.ru/media/zoo/elements/itemfrontpage/itemfrontpage.php
Назад
<?php /** * @package com_zoo * @author YOOtheme http://www.yootheme.com * @copyright Copyright (C) YOOtheme GmbH * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ /* Class: ElementItemFrontpage The item frontpage element class */ class ElementItemFrontpage extends Element implements iSubmittable { protected $_frontpage; /* Function: hasValue Checks if the element's value is set. Parameters: $params - render parameter Returns: Boolean - true, on success */ public function hasValue($params = array()) { return true; } /* Function: edit Renders the edit form field. Returns: String - html */ public function edit() { return null; } /* Function: render Renders the element. Parameters: $params - render parameter Returns: String - html */ public function render($params = array()) { return in_array(0, $this->_item->getRelatedCategoryIds()); } /* Function: renderSubmission Renders the element in submission. Parameters: $params - AppData submission parameters Returns: String - html */ public function renderSubmission($params = array()) { $frontpage = isset($this->_frontpage) ? $this->_frontpage : in_array(0, $this->_item->getRelatedCategoryIds()); return $this->app->html->_('select.booleanlist', $this->getControlName('value'), null, $frontpage); } /* Function: validateSubmission Validates the submitted element Parameters: $value - AppData value $params - AppData submission parameters Returns: Array - cleaned value */ public function validateSubmission($value, $params) { // connect to submission aftersave event $this->app->event->dispatcher->connect('submission:saved', array($this, 'aftersubmissionsave')); return array('value' => (bool) $value->get('value')); } /* Function: afterSubmissionSave Callback after item submission is saved Returns: void */ public function afterSubmissionSave() { $ids = $this->app->category->getItemsRelatedCategoryIds($this->_item->id); if ($this->_frontpage) { $ids[] = '0'; } else { $ids = array_filter($ids); } $this->app->category->saveCategoryItemRelations($this->_item, $ids); } /* Function: bindData Set data through data array. Parameters: $data - array Returns: Void */ public function bindData($data = array()) { $this->_frontpage = (bool) @$data['value']; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45-1~dotdeb+6.1 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка