當前位置: 首頁>>代碼示例>>PHP>>正文


PHP JApplication::triggerEvent方法代碼示例

本文整理匯總了PHP中JApplication::triggerEvent方法的典型用法代碼示例。如果您正苦於以下問題:PHP JApplication::triggerEvent方法的具體用法?PHP JApplication::triggerEvent怎麽用?PHP JApplication::triggerEvent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在JApplication的用法示例。


在下文中一共展示了JApplication::triggerEvent方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: onContentAfterDisplay

 /**
  * @param    string    The context of the content being passed to the plugin.
  * @param    object    The article object.  Note $article->text is also available
  * @param    object    The article params
  * @param    int       The 'page' number
  *
  * @return    void
  * @since       1.1.0
  */
 public function onContentAfterDisplay($context, &$row, &$params, $page = 0)
 {
     JPluginHelper::importPlugin('fieldsandfiltersextensions');
     // Trigger the onFinderBeforeSave event.
     $results = $this->app->triggerEvent('onFieldsandfiltersContentAfterDisplay', array($context, &$row, &$params, $page = 0));
     return !empty($results) ? trim(implode("\n", $results)) : null;
 }
開發者ID:fields-and-filters,項目名稱:fields-and-filters,代碼行數:16,代碼來源:fieldsandfilters.php

示例2: _actionPrepclienv

 /**
  * Prepares the CLI mode.
  * 
  * @param KCommandContext $context
  */
 protected function _actionPrepclienv(KCommandContext $context)
 {
     if (!empty($_SERVER['argv']) && count($_SERVER['argv']) > 1) {
         $args = array_slice($_SERVER['argv'], 1);
         if (is_readable(realpath($args[0]))) {
             $file = array_shift($args);
         }
         $args = explode('&-data&', implode($args, '&'));
         $args = array_filter($args, 'trim');
         foreach ($args as $i => $arg) {
             $arg = trim($arg);
             if ($i == 0) {
                 if (strpos($arg, '/') !== false) {
                     $arg = substr_replace($arg, '?', strpos($arg, '&'), 1);
                     $url = KService::get('koowa:http.url', array('url' => $arg));
                     KRequest::url()->path = KRequest::base() . $url->path;
                     $_GET = $url->query;
                 } else {
                     KRequest::url()->path = KRequest::base();
                     parse_str($arg, $_GET);
                 }
             } else {
                 parse_str($arg, $_POST);
             }
         }
     }
     $_GET['format'] = 'json';
     KRequest::url()->format = 'json';
     KRequest::url()->setQuery($_GET);
     jimport('joomla.plugin.helper');
     JPluginHelper::importPlugin('cli');
     $this->_application->triggerEvent('onCli');
     //if there's a file then just load the file and exit
     if (!empty($file)) {
         KService::get('koowa:loader')->loadFile($file);
         exit(0);
     }
 }
開發者ID:stonyyi,項目名稱:anahita,代碼行數:43,代碼來源:dispatcher.php


注:本文中的JApplication::triggerEvent方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。