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


PHP Hook::attach方法代码示例

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


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

示例1: factory

 static function factory($command, $name, $is_command, $regex, $func, $category)
 {
     $hook = new Hook();
     $hook->command = $command;
     $hook->name = $name;
     $hook->is_command = $is_command == true ? true : false;
     $hook->regex = $regex != '' ? $regex : "/^{$command}\$/";
     $hook->func = $func;
     $hook->category = $category;
     $hook->attach($hook->category);
     return $hook;
 }
开发者ID:rbraband,项目名称:LouCes,代码行数:12,代码来源:bot.php

示例2: RegisterHook

	/**
	 * Register a hook object with the global HookHandler object.
	 *
	 * Allows for abstract calling of the hook.
	 *
	 * @param Hook $hook
	 *
	 * @return void
	 */
	public static function RegisterHook(Hook $hook) {
		$name = $hook->getName();

		Core\Utilities\Logger\write_debug('Registering new hook [' . $name . ']');

		if(isset(HookHandler::$RegisteredHooks[$name]) && FULL_DEBUG){
			trigger_error('Registering hook that is already registered [' . $name . ']', E_USER_NOTICE);
		}

		HookHandler::$RegisteredHooks[$name] = $hook;
		//var_dump(self::$EarlyRegisteredHooks);
		// Attach any bindings that may have existed.
		if (isset(self::$EarlyRegisteredHooks[$name])) {
			foreach (self::$EarlyRegisteredHooks[$name] as $b) {
				$hook->attach($b['call']);
			}

			unset(self::$EarlyRegisteredHooks[$name]);
		}
	}
开发者ID:nicholasryan,项目名称:CorePlus,代码行数:29,代码来源:HookHandler.class.php


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