JSPM

@wordpress/hooks

0.1.0-beta.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 183437
  • Score
    100M100P100Q223796F
  • License GPL-2.0+

WordPress Hooks library

Package Exports

  • @wordpress/hooks

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@wordpress/hooks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@wordpress/hooks

A lightweight & efficient EventManager for JavaScript in WordPress.

Installation

Install the module

npm install @wordpress/hooks@next --save

Usage

API functions can be called via the global wp.hooks like this wp.hooks.addAction(), etc.

A lightweight & efficient filter and action manager.

API Usage

  • addAction( 'hookName', 'functionName', callback, priority )
  • addFilter( 'hookName', 'functionName', callback, priority )
  • removeAction( 'hookName', 'functionName' )
  • removeFilter( 'hookName', 'functionName' )
  • removeAllActions( 'hookName' )
  • removeAllFilters( 'hookName' )
  • doAction( 'hookName', arg1, arg2, moreArgs, finalArg )
  • applyFilters( 'hookName', content, arg1, arg2, moreArgs, finalArg )
  • doingAction( 'hookName' )
  • doingFilter( 'hookName' )
  • didAction( 'hookName' )
  • didFilter( 'hookName' )
  • hasAction( 'hookName' )
  • hasFilter( 'hookName' )

Hooks can be added to an object via composition: import createHooks from '../';

myObject.hooks = createHooks();

API functions are then be called: myObject.hooks.addAction()...