Файловый менеджер - Редактировать - /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_widgetkit/helpers/event.php
Назад
<?php /** * @package Widgetkit * @author YOOtheme http://www.yootheme.com * @copyright Copyright (C) YOOtheme GmbH * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */ /* Class: EventWidgetkitHelper Event helper class. Create and manage Events. */ class EventWidgetkitHelper extends WidgetkitHelper { /* events */ protected static $_events = array(); /* Function: bind Bind a function to an event. Parameters: $event - Event name $callback - Function callback Returns: Void */ public function bind($event, $callback) { if (!isset(self::$_events[$event])) { self::$_events[$event] = array(); } self::$_events[$event][] = $callback; } /* Function: trigger Trigger Event Parameters: $event - Event name $parameters - Function arguments Returns: Void */ public function trigger($event, $args = array()) { if (isset(self::$_events[$event])) { foreach (self::$_events[$event] as $callback) { $this->_call($callback, $args); } } } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45-1~dotdeb+6.1 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка