action-integration-interface.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace JFB_Modules\Actions_V2\Interfaces; |
| 4 | |
| 5 | use Jet_Form_Builder\Actions\Manager; |
| 6 | use JFB_Components\Module\Base_Module_Dir_It; |
| 7 | use JFB_Components\Module\Base_Module_Handle_It; |
| 8 | use JFB_Components\Module\Base_Module_Url_It; |
| 9 | use JFB_Components\Repository\Repository_Item_Instance_Trait; |
| 10 | |
| 11 | interface Action_Integration_Interface extends |
| 12 | Base_Module_Handle_It, |
| 13 | Base_Module_Dir_It, |
| 14 | Base_Module_Url_It, |
| 15 | Repository_Item_Instance_Trait { |
| 16 | |
| 17 | public function init_hooks(); |
| 18 | |
| 19 | public function on_install(); |
| 20 | |
| 21 | public function register_actions( Manager $manager ); |
| 22 | |
| 23 | } |
| 24 |