crtl / wp-plugin-base
Provides API to register wordpress hooks and actions using PHP8 Attributes and reflection API
1.0.5
2024-01-23 13:54 UTC
Requires
- php: ^8.1
Requires (Dev)
- phpunit/phpunit: ^10
This package is auto-updated.
Last update: 2025-03-23 16:30:55 UTC
README
Provides base class word plugins (and themes) to register hooks and actions using PHPs reflection API and PHP8 attributes.
Requirements
- PHP >= 8.1
Installation
composer require crtl/wp-plugin-base
Usage
<?php use Crtl\WpPluginBase\PluginBase; use Crtl\WpPluginBase\Attribute\WPAction; use Crtl\WpPluginBase\Attribute\WPFilter; class MyPlugin extends PluginBase { /** * Registers an action by creating method in format action_{action_name} * @return void */ public function action_wp_enqueue_scripts() { wp_enqueue_script(...) } /** * Registers a filter by creating method in format action_{action_name} * @return false */ public function filter_admin_bar() { return false; } /** * Register action using {@link WPAction} attribute * @return void */ #[WPAction("action_name", 10, 0)] public function usingAttributes() { } /** * Register filter using {@link WPFilter} attribute * @return void */ #[WPFilter("filter_name", 10, 0)] public function usingAttributes() { } }
WPFilter
,WPAction
attributes can also ba used to set optional priority and args count for actions and filters respectively.#[WPAction(priority: 10)] public function action_my_action() {}