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


PHP Hooks::actions方法代碼示例

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


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

示例1: doActionRefArray

 /**
  * doActionRefArray Execute functions hooked on a specific action hook, specifying arguments in an array.
  * @access public
  * @since 0.1
  * @param string $tag The name of the action to be executed.
  * @param array $args The arguments supplied to the functions hooked to <tt>$tag</tt>
  * @return null Will return null if $tag does not exist in $filter array
  */
 public static function doActionRefArray($tag, $args)
 {
     if (!isset(self::$actions)) {
         self::$actions = array();
     }
     if (!isset(self::$actions[$tag])) {
         self::$actions[$tag] = 1;
     } else {
         ++self::$actions[$tag];
     }
     // Do 'all' actions first
     if (isset(self::$filters['all'])) {
         self::$currentFilter[] = $tag;
         $all_args = func_get_args();
         self::$__callAllHook($all_args);
     }
     if (!isset(self::$filters[$tag])) {
         if (isset(self::$filters['all'])) {
             array_pop(self::$currentFilter);
         }
         return;
     }
     if (!isset(self::$filters['all'])) {
         self::$currentFilter[] = $tag;
     }
     // Sort
     if (!isset($mergedFilters[$tag])) {
         ksort(self::$filters[$tag]);
         $mergedFilters[$tag] = true;
     }
     reset(self::$filters[$tag]);
     do {
         foreach ((array) current(self::$filters[$tag]) as $the_) {
             if (!is_null($the_['function'])) {
                 call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));
             }
         }
     } while (next(self::$filters[$tag]) !== false);
     array_pop(self::$currentFilter);
 }
開發者ID:LobbyOS,項目名稱:server,代碼行數:48,代碼來源:Hooks.php


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