API
2 years ago
Admin
2 years ago
Blocks
1 year ago
CLI
3 years ago
Container
2 years ago
Data
2 years ago
Integrations
1 year ago
REST
2 years ago
Theme
3 years ago
Tools
2 years ago
WP
1 year ago
Whatsit
2 years ago
Config_Handler.php
2 years ago
Integration.php
1 year ago
Permissions.php
2 years ago
Pod_Manager.php
2 years ago
Service_Provider.php
1 year ago
Service_Provider_Base.php
2 years ago
Static_Cache.php
4 years ago
Whatsit.php
2 years ago
Wisdom_Tracker.php
3 years ago
Integration.php
106 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Pods; |
| 4 | |
| 5 | /** |
| 6 | * Integration abstract class. |
| 7 | * |
| 8 | * @since 2.8.0 |
| 9 | */ |
| 10 | abstract class Integration { |
| 11 | |
| 12 | /** |
| 13 | * Integration hooks. |
| 14 | * |
| 15 | * @var array[] { |
| 16 | * @type array $action { |
| 17 | * @type callable $callback The callback or name of the method on current object. |
| 18 | * @type int $priority Priority. |
| 19 | * @type int $arguments Number of arguments. |
| 20 | * } |
| 21 | * @type array $filter { |
| 22 | * @type callable $callback The callbackor name of the method on current object. |
| 23 | * @type int $priority Priority. |
| 24 | * @type int $arguments Number of arguments. |
| 25 | * } |
| 26 | * } |
| 27 | */ |
| 28 | protected $hooks = [ |
| 29 | 'action' => [ |
| 30 | // 'name' => [ 'callback', 10, 2 ], |
| 31 | ], |
| 32 | 'filter' => [ |
| 33 | // 'name' => [ 'callback', 10, 2 ], |
| 34 | ], |
| 35 | ]; |
| 36 | |
| 37 | /** |
| 38 | * Whether the integration is active. |
| 39 | * |
| 40 | * @since 2.8.0 |
| 41 | * |
| 42 | * @return bool |
| 43 | */ |
| 44 | public static function is_active() { |
| 45 | return false; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Add the class hooks. |
| 50 | * |
| 51 | * @since 2.8.0 |
| 52 | */ |
| 53 | public function hook() { |
| 54 | foreach ( $this->hooks as $type => $hooks ) { |
| 55 | foreach ( $hooks as $hook => $params ) { |
| 56 | if ( is_string( $params[0] ) && method_exists( $this, $params[0] ) ) { |
| 57 | $params[0] = [ $this, $params[0] ]; |
| 58 | } |
| 59 | |
| 60 | if ( ! is_callable( $params[0]) ) { |
| 61 | _doing_it_wrong( 'hook', 'Pods Integration should have a callable for the first hook parameter', 'TBD' ); |
| 62 | } |
| 63 | |
| 64 | array_unshift( $params, $hook ); |
| 65 | call_user_func_array( 'add_' . $type, $params ); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | $this->post_hook(); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Do any post-hook related functionality. |
| 74 | * |
| 75 | * @since 3.2.7 |
| 76 | */ |
| 77 | public function post_hook() {} |
| 78 | |
| 79 | /** |
| 80 | * Remove the class hooks. |
| 81 | * |
| 82 | * @since 2.8.0 |
| 83 | */ |
| 84 | public function unhook() { |
| 85 | foreach ( $this->hooks as $type => $hooks ) { |
| 86 | foreach ( $hooks as $hook => $params ) { |
| 87 | if ( is_string( $params[0] ) && is_callable( $this, $params[0] ) ) { |
| 88 | $params[0] = [ $this, $params[0] ]; |
| 89 | } |
| 90 | array_unshift( $params, $hook ); |
| 91 | call_user_func_array( 'remove_' . $type, $params ); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | $this->post_unhook(); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Do any post-unhook related functionality. |
| 100 | * |
| 101 | * @since 3.2.7 |
| 102 | */ |
| 103 | public function post_unhook() {} |
| 104 | |
| 105 | } |
| 106 |