Exemplo n.º 1
0
 /**
  * Execute functions hooked on a specific filter hook, specifying arguments in an array.
  *
  * @see   applyFilters() This function is identical, but the arguments passed to the
  * functions hooked to <tt>$tag</tt> are supplied using an array.
  *
  * @param string $tag  The name of the filter hook.
  * @param array  $args The arguments supplied to the functions hooked to <tt>$tag</tt>
  *
  * @return mixed The filtered value after all hooked functions are applied to it.
  */
 public function applyFiltersRefArray($tag, $args)
 {
     return HuradHook::apply_filters_ref_array($tag, $args);
 }