本文整理汇总了PHP中Notifier::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Notifier::getInstance方法的具体用法?PHP Notifier::getInstance怎么用?PHP Notifier::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Notifier
的用法示例。
在下文中一共展示了Notifier::getInstance方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
public function run()
{
$this->ajaxAuth = true;
if ($this->getOption('auth')) {
$this->ajaxAuth = false;
$subController = new M_Office_Auth($_REQUEST['database']);
if (!key_exists('adminPrivileges', $_SESSION) || key_exists('logout', $_REQUEST)) {
$this->assign('username', User::getInstance('office')->getProperty('username'));
$this->ajaxAuth = true;
} elseif (!User::getInstance('office')->isLoggedIn()) {
$this->ajaxAuth = false;
} else {
$subController->initOptions();
$this->assign('username', User::getInstance('office')->getProperty('username'));
}
}
$not = Notifier::getInstance();
$not->addListener($this);
if ($this->getOption('auth') && !User::getInstance('office')->isLoggedIn()) {
if (self::isAjaxRequest()) {
$this->assign('__action', 'ajaxlogin');
}
return;
}
if (key_exists('updateSuccess', $_REQUEST)) {
$this->say(__('Record was successfully updated'));
M_Office_Util::clearRequest(array('updateSuccess' => 1));
}
if (isset($_REQUEST['module'])) {
$info = M_Office_Util::getModuleInfo($_REQUEST['module']);
$module = $_REQUEST['module'];
if (!$info) {
if (strpos($_REQUEST['module'], ':')) {
$info = array('type' => 'dyn', 'title' => 'Plugin');
$module = $tab[1];
} elseif (preg_match('`^(.+)helper$`', $_REQUEST['module'], $tab)) {
$info = array('type' => 'dyn', 'title' => __("modules.{$tab[1]}helper.title"));
$module = $_REQUEST['module'];
} else {
throw new NotFoundException(__('error.module_not_found', array($_REQUEST['module'])));
}
}
}
if ($this->isAjaxRequest() && $this->ajaxAuth && $info['type'] != 'dyn') {
$this->output = '';
unset($this->localOutput);
}
if (isset($_REQUEST['debug']) && MODE == 'development') {
$debug = (int) $_REQUEST['debug'] % 3;
DB_DataObject::debugLevel($debug);
ini_set('display_errors', 1);
}
if ($_REQUEST['livesearch']) {
$aj = new M_Office_livesearch($_REQUEST['searchtext'], $_REQUEST['expand']);
$this->output = $aj->processRequest();
return;
} elseif ($_REQUEST['treesort']) {
$aj = new M_Office_treesort();
$this->output = $aj->processRequest();
return;
} elseif ($_REQUEST['liveedit']) {
$aj = new M_Office_liveedit($_REQUEST['liveedit']);
$this->output = $aj->processRequest();
return;
} elseif (key_exists('ajaxfromtable', $_REQUEST)) {
$table = $_REQUEST['module'];
$do = DB_DataObject::factory($table);
$do->get($_REQUEST['filterField'], $_REQUEST['filterValue']);
$aj = new M_Office_ajaxFromTable($do, $_REQUEST['module'], $_REQUEST['module'], $_REQUEST['filterField'], $_REQUEST['filterValue']);
$this->output = $aj->processRequest();
return;
}
if (isset($_REQUEST['module'])) {
if (!$info) {
$info = M_Office_Util::getModuleInfo($_REQUEST['module']);
}
switch ($info['type']) {
case 'db':
// TODO ajouter ce path en avant-dernier et non en dernier
Mreg::get('tpl')->addPath(APP_ROOT . 'app/' . APP_NAME . '/templates/' . $info['table'] . '/', 'after');
Mreg::get('tpl')->addPath(APP_ROOT . 'app/' . APP_NAME . '/templates/' . $_REQUEST['module'] . '/', 'after');
$subController = new M_Office_ShowTable($_REQUEST['module'], $filter);
break;
case 'dyn':
// home module = available for everyone
$allowAccess = $_REQUEST['module'] == 'home' || M_Office_Util::getGlobalOption('view', 'showtable', $_REQUEST['module']);
if (!$allowAccess) {
Log::warn('User is NOT allowed to access ' . $_REQUEST['module']);
M_Office_Util::refresh(M_Office::URL(array(), array_keys($_REQUEST)));
} else {
Log::info('User is allowed to access ' . $_REQUEST['module']);
}
$subController = Module::factory($_REQUEST['module'], M::getPaths('module'));
$subController->executeAction($_REQUEST['action'] ? $_REQUEST['action'] : 'index');
$this->assign('__action', 'dyn');
$layout = $subController->getConfig('layout', $_REQUEST['action'] ? $_REQUEST['action'] : 'index');
if ($layout == '__self') {
M_Office::$dsp = '__defaut/ajaxindex';
} elseif ($layout) {
M_Office::$dsp = $layout;
//.........这里部分代码省略.........
示例2: say
/**
* Notifications
* Sends messages to Notifier instance
* @param string Message content
* @param int Message type (NOTIFICATION_ERROR, NOTIFICATION_WARNING, NOTIFICATION_NOTICE, NOTIFICATION_SUCCESS)
**/
function say($message, $type = NULL)
{
if (class_exists('Notifier')) {
$not = Notifier::getInstance();
$not->broadCastMessage($this, $message, $type);
}
}