承接 asgard/hook 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

asgard/hook

Composer 安装命令:

composer require asgard/hook

包简介

README 文档

README

#Hook

Build Status

If you have ever used an event manager, you will find the Hooks component very similar. With the HookManager you can create hooks, on which you can hook callbacks to be executed when the hooks are triggered.

##Installation If you are working on an Asgard project you don't need to install this library as it is already part of the standard libraries.

composer require asgard/hook 0.*

##Usage in the Asgard Framework

$hm = $container['hooks'];

The container is often accessible as a method parameter or through a ContainerAware object. You can also use the singleton but it is not recommended.

##Usage outside the Asgard Framework

$hm = new \Asgard\Hook\HookManager;

##Create a hook

$hm->hook('name_of_hook', function($chain, $param1) {
	// ...
});

The first parameter is always a \Asgard\Hook\HooksChain object. The next ones are passed when the hook is triggered.

##Trigger a hook

$hm->trigger('name_of_hook', [$param]);

If you want to execute your own function when calling trigger, use the last argument:

$hm->trigger('name_of_hook', [$param], function($chain, $param) {
	// ...
});

##Executing callbacks before and after hooks To execute functions before a hook:

$hm->preHook('name_of_hook', function($chain, $param) {
	// ...
});

And after:

$hm->postHook('name_of_hook', function($chain, $param) {
	// ...
});

##Filters Hooks can be used as filters when parameters are passed by reference

$hm->hook('name_of_hook', function($chain, &$param) {
	$param = 123;
});
$hm->trigger('name_of_hook', [&$param]);

##The HooksChain object The chain contains all the callbacks to be executed in a hook. If a function returns a value, the chain stops and the value is returned by the trigger method.

The chain call also be stopped by calling:

$chain->stop();

The function calling the stop method will be the last one to be executed.

To know how many functions have been executed in a hook:

$hm->trigger('name_of_hook', [$param], null, $chain);
$count = $chain->executed;

Here we provide a reference to retrieve the chain object and its executed property.

##HooksContainer A HooksContainer is a class containing hooks. It extends Asgard\Hook\HooksContainer and contains methods that are matched to hooks with annotations.

Example:

<?php
namespace Bundle\Hooks;

class SomeHooks extends \Asgard\Hook\HooksContainer {
	/**
	 * @Hook("Asgard.Http.Start")
	 */
	public static function start($chain, $request) {
		//do something when HTTP starts processing a request
	}
}

Here the method start is executed when the hook "Asgard.Http.Start" is triggered.

If you are working with a Asgard project, all HooksContainer in the Hooks/ folder of a bundle are automatically loaded.

If not, you can register the hooks with:

$annotationsReader = new \Asgard\Hook\AnnotationReader;
$hooks = $annotationsReader->fetchHooks('Bundle\Hooks\SomeHooks');
$hookManager->hooks($hooks);

###Contributing

Please submit all issues and pull requests to the asgardphp/asgard repository.

License

The Asgard framework is open-sourced software licensed under the MIT license

asgard/hook 适用场景与选型建议

asgard/hook 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.4k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2014 年 03 月 24 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 asgard/hook 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 asgard/hook 我们能提供哪些服务?
定制开发 / 二次开发

基于 asgard/hook 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 2.4k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-03-24