Download the PHP package 2upmedia/hooky without Composer

On this page you can find all versions of the php package 2upmedia/hooky. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package hooky

Build Status

Hooky

Easily and reliably allow your classes to be hooked into without allowing people to touch your core code. Some inspiration came from Aspect Oriented Programming.

Audience

Authors of packages or developers extending existing packages and anyone that needs to allow hooks for core code they can modify.

Uses

Features

Installing via Composer

The recommended way to install Hooky is through Composer.

Next, run the Composer command to install the latest stable version of Hooky:

After installing, you need to require Composer's autoloader:

Examples

Check out demos with well-known packages

https://github.com/2upmedia/hooky-demos

Documentation

Making your classes hooky-compatible

Hook executors

There's two core actions: before and after. You choose what if want to allow one, both, or either/or.

$this->callBeforeHooks() allows ALL before-type hooks: beforeAll, onceBeforeAll, before{Method}, and onceBefore{Method}

$this->callAfterHooks() does the same but for after-type hooks

Controlling actions

You can control the types of hooks you will allow per method by using the specific call method for the action you want to allow.

For instance, if you don't want to allow beforeAll hooks for your method, but you want to allow people to hook before your method you can call $this->callAfterMethodHooks().

Allowing return values from callables

Early returns are possible using the following format right before your core method code:

Note: The first applicable registered hook that returns a value will cancel all successively registered hooks for that method.

Allowing parameters to be overridden

NOTE: use with care

Just send parameters as references

Handling returned null values

Return the special NULL constant and also make sure to use hookReturn() when you set up your hooks.

Allowing original return value to be manipulated in your after hooks

NOTE: use with care

Cancelling propagation

Default behavior

To reduce the risk of hooks breaking because of the underlying libraries being refactored, the decision was made to restrict hooking to concrete public methods of interface methods or abstract methods as the default. Interfaces and abstracts are usually well thought out and usually don't change as often as they're supposed to be contracts, and thus any hooks relying on those methods would break much less frequently, if not at all.

This default behavior can be changed. See the Changing Default Behavior section.

Changing Default Behavior

You can restrict hooking to the following types of methods using setDefaultAccessibility(): public, protected, private, and/or abstract/interface method.

Class-wide hooks

Global hooks are called statically by the name of the class that's using the HooksTrait. Global hooks are called for all instances.

The format is: {ClassName}::global{Action}[ {Method} ]Hook

Instance-specific hooks

Instance-specific hooks are called as methods of an instance and these hooks are not called globally.

The format is: {$instanceVariable}->{action}[ {Method} ]Hook

Check potential bugs before going out to production

The {ClassName}::$checkCallableParameters flag triggers PHP Notices on different issues where method parameters don't match up with the callables set up through hooks. This is handy during development to catch potential bugs. By default it is turned on to reduce bugs immediately. Turn it off in a production environment.

Restricting hooking to specific methods

In the __construct() of your concrete class call $this->setHookableMethods(['methodName1', 'methodName2']).

Working with existing __destruct()

Because of the nature of Traits, __destruct() will be overridden if the implemented class already has them. The workaround is to use an alias.

keywords: aop, hook, event, pub, sub


All versions of hooky with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
ext-spl Version *
ext-reflection Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package 2upmedia/hooky contains the following files

Loading the files please wait ....