当前位置: 首页>>代码示例>>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;未经允许,请勿转载。