Library for handling hooks.
- Installation
- Requirements
- Quick Start and Examples
- Available Methods
- Usage
- Tests
- Exception Handler
- Contribute
- Repository
- Licensing
- Copyright
The preferred way to install this extension is through composer.
To install PHP Hook library, simply:
$ composer require Josantonius/Hook
The previous command will only install the necessary files, if you prefer to download the entire source code (including tests, vendor folder, exceptions not used, docs...) you can use:
$ composer require Josantonius/Hook --prefer-source
Or you can also clone the complete repository with Git:
$ git clone https://github.com/Josantonius/PHP-Hook.git
This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.
To use this library in HHVM (HipHop Virtual Machine) you will have to activate the scalar types. Add the following line "hhvm.php7.scalar_types = true" in your "/etc/hhvm/php.ini".
To use this class, simply:
require __DIR__ . '/vendor/autoload.php';
use Josantonius\Hook\Hook;
Available methods in this library:
getInstance()
Hook::getInstance();
setSingletonName()
Hook::setSingletonName($method);
Atttribute | Description | Type | Required | Default |
---|---|---|---|---|
$method | Set method name for use singleton pattern | string | Yes |
addAction()
Hook::addAction($tag, $function, $priority, $args);
Atttribute | Description | Type | Required | Default |
---|---|---|---|---|
$tag | Action hook name | string | Yes | |
$function | Function to attach to action hook | callable | Yes | |
$priority | Order in which the action is executed | int | No | 8 |
$args | Number of arguments accepted | int | No | 0 |
addActions()
Hook::addActions($actions);
Atttribute | Description | Type | Required | Default |
---|---|---|---|---|
$actions | Actions hooks | array | Yes |
doAction()
Hook::doAction($tag, $args, $remove);
Atttribute | Description | Type | Required | Default |
---|---|---|---|---|
$tag | Action hook name | string | Yes | |
$args | Optional arguments | mixed | No | array() |
$remove | Delete hook after executing actions | boolean | No | true |
current()
Hook::current();
Example of use for this library:
<?php
require __DIR__ . '/vendor/autoload.php';
use Josantonius\Hook\Hook;
/* Add actions */
Hook::addAction('css', ['Namespace\Class\Example', 'css'], 2, 0);
$hooks = [
['meta', ['Namespace\Class\Example', 'meta'], 1, 0],
['js', ['Namespace\Class\Example', 'js'], 3, 0],
['after-body', ['Namespace\Class\Example', 'afterBody'], 4, 0],
['footer', ['Namespace\Class\Example', 'footer'], 5, 0],
];
Hook::addActions($hooks);
/* Run actions */
Hook::doAction('meta');
Hook::doAction('css');
Hook::doAction('js');
Hook::doAction('after-body');
Hook::doAction('footer');
To use the test class, simply:
<?php
$loader = require __DIR__ . '/vendor/autoload.php';
$loader->addPsr4('Josantonius\\Hook\\Tests\\', __DIR__ . '/vendor/josantonius/hook/tests');
use Josantonius\Hook\Tests\HookTest;
Available test methods in this library:
HookTest::testAddHooksMethod();
HookTest::testAddHooksArray();
HookTest::testAddHooksInstance();
HookTest::testSetSingletonName();
HookTest::testCurrentHook();
HookTest::testExecuteHooks();
This library uses exception handler that you can customize.
- Check for open issues or open a new issue to start a discussion around a bug or feature.
- Fork the repository on GitHub to start making your changes.
- Write one or more tests for the new feature or that expose the bug.
- Make code changes to implement the feature or fix the bug.
- Send a pull request to get your changes merged and published.
This is intended for large and long-lived objects.
All files in this repository were created and uploaded automatically with Reposgit Creator.
This project is licensed under MIT license. See the LICENSE file for more info.
2017 Josantonius, josantonius.com
If you find it useful, let me know 😉