当前位置: 首页>>代码示例>>PHP>>正文


PHP Observer::getObserverList方法代码示例

本文整理汇总了PHP中Observer::getObserverList方法的典型用法代码示例。如果您正苦于以下问题:PHP Observer::getObserverList方法的具体用法?PHP Observer::getObserverList怎么用?PHP Observer::getObserverList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Observer的用法示例。


在下文中一共展示了Observer::getObserverList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: main

function main()
{
    // get the uri string from the query
    $path = $_SERVER['QUERY_STRING'];
    // Make sure special characters are decoded (support non-western glyphs like japanese)
    $path = urldecode($path);
    // START processing $_GET variables
    // If we're NOT using mod_rewrite, we check for GET variables we need to integrate
    if (!USE_MOD_REWRITE && strpos($path, '?') !== false) {
        $_GET = array();
        // empty $_GET array since we're going to rebuild it
        list($path, $get_var) = explode('?', $path);
        $exploded_get = explode('&', $get_var);
        if (count($exploded_get)) {
            foreach ($exploded_get as $get) {
                list($key, $value) = explode('=', $get);
                $_GET[$key] = $value;
            }
        }
    } else {
        if (!USE_MOD_REWRITE && (strpos($path, '&') !== false || strpos($path, '=') !== false)) {
            $path = '/';
        }
    }
    // If we're using mod_rewrite, we should have a WOLFPAGE entry.
    if (USE_MOD_REWRITE && array_key_exists('WOLFPAGE', $_GET)) {
        $path = $_GET['WOLFPAGE'];
        unset($_GET['WOLFPAGE']);
    } else {
        if (USE_MOD_REWRITE) {
            // We're using mod_rewrite but don't have a WOLFPAGE entry, assume site root.
            $path = '/';
        }
    }
    // Needed to allow for ajax calls to backend
    if (array_key_exists('WOLFAJAX', $_GET)) {
        $path = '/' . ADMIN_DIR . $_GET['WOLFAJAX'];
        unset($_GET['WOLFAJAX']);
    }
    // END processing $_GET variables
    // remove suffix page if founded
    if (URL_SUFFIX !== '' and URL_SUFFIX !== '/') {
        $path = preg_replace('#^(.*)(' . URL_SUFFIX . ')$#i', "\$1", $path);
    }
    define('CURRENT_PATH', trim($path, '/'));
    // Alias for backward compatibility, this constant should no longer be used.
    define('CURRENT_URI', CURRENT_PATH);
    if ($path != null && $path[0] != '/') {
        $path = '/' . $path;
    }
    // Check if there's a custom route defined for this URI,
    // otherwise continue and assume page was requested.
    if (Dispatcher::hasRoute($path)) {
        Observer::notify('dispatch_route_found', $path);
        Dispatcher::dispatch($path);
        exit;
    }
    foreach (Observer::getObserverList('page_requested') as $callback) {
        $path = call_user_func_array($callback, array(&$path));
    }
    // this is where 80% of the things is done
    $page = Page::findByPath($path, true);
    // if we found it, display it!
    if (is_object($page)) {
        // If a page is in preview status, only display to logged in users
        if (Page::STATUS_PREVIEW == $page->status_id) {
            AuthUser::load();
            if (!AuthUser::isLoggedIn() || !AuthUser::hasPermission('page_view')) {
                pageNotFound($path);
            }
        }
        // If page needs login, redirect to login
        if ($page->getLoginNeeded() == Page::LOGIN_REQUIRED) {
            AuthUser::load();
            if (!AuthUser::isLoggedIn()) {
                Flash::set('redirect', $page->url());
                redirect(URL_PUBLIC . (USE_MOD_REWRITE ? '' : '?/') . ADMIN_DIR . '/login');
            }
        }
        Observer::notify('page_found', $page);
        $page->_executeLayout();
    } else {
        pageNotFound($path);
    }
}
开发者ID:ariksavage,项目名称:superior-optical-eyewear,代码行数:85,代码来源:main.php

示例2: page_not_found_hack

 /**
  * Hack for the page not found plugin.
  */
 public static function page_not_found_hack()
 {
     // only throw exception if main page has been found
     if (defined('page_found') && page_found == true) {
         throw new Exception('Page not found!');
     }
     // call other observer methods first
     $observerList = Observer::getObserverList('page_not_found');
     unset($observerList['behavior_page_not_found']);
     $alreadyCalled = true;
     foreach ($observerList as $callback) {
         if ($callback == 'FrogTagsHacks::page_not_found_hack') {
             $alreadyCalled = false;
         } elseif (!$alreadyCalled) {
             call_user_func($callback);
         }
     }
     if (function_exists('behavior_page_not_found')) {
         global $__FROG_CONN__;
         $query = 'SELECT slug FROM ' . TABLE_PREFIX . "page WHERE behavior_id='page_not_found'";
         $statement = $__FROG_CONN__->prepare($query);
         $statement->execute();
         if ($page = $statement->fetchObject()) {
             $page = find_page_by_uri($page->slug);
             if (is_object($page)) {
                 header("HTTP/1.0 404 Not Found");
                 header("Status: 404 Not Found");
                 frog_tags_main($page);
                 exit;
             }
         }
     }
 }
开发者ID:harendt,项目名称:frog_tags,代码行数:36,代码来源:FrogTagsHacks.php


注:本文中的Observer::getObserverList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。