本文整理汇总了PHP中EventManager::registerEvent方法的典型用法代码示例。如果您正苦于以下问题:PHP EventManager::registerEvent方法的具体用法?PHP EventManager::registerEvent怎么用?PHP EventManager::registerEvent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EventManager
的用法示例。
在下文中一共展示了EventManager::registerEvent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
<?php
header('Content-type: text/html;charset=UTF-8');
?>
<pre><?php
error_reporting(-1);
ini_set('display_errors', 1);
chdir(dirname(__FILE__));
require_once 'system/init.php';
EventManager::registerEvent(new Event('onBeforeAppExec'));
EventManager::registerEvent(new Event('onAfterAppExec'));
//require_once 'system/init.php';
Registry::set('designpath', ICMS_SYS_PATH . 'designs/');
Registry::set('logpath', ICMS_SYS_PATH . 'logs/frontend/');
Registry::set('languagepath', ICMS_SYS_PATH . 'language/frontend/');
Registry::set('controllerpath', ICMS_SYS_PATH . 'controller/frontend/');
Registry::set('templatepath', ICMS_SYS_PATH . 'templates/frontend/');
$frontcontroller = new Frontcontroller();
try {
$frontcontroller->run();
} catch (Exception $e) {
echo $e->getMessage();
}
/*
Application::import('text::bbcode');
class myApplication implements IApplication
{
public function run()
{
//echo 'Application execution...' . "\n\n";
$txt = <<<text