Form
1 week ago
Migrations
1 week ago
Option
1 week ago
Route
1 week ago
Tab
1 week ago
Forms.php
1 week ago
Menu.php
1 week ago
MigrationsManager.php
1 week ago
Page.php
1 week ago
Routes.php
1 week ago
Tabs.php
1 week ago
Forms.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPDesk\FCF\Free\Settings; |
| 4 | |
| 5 | use WPDesk\FCF\Free\Settings\Form\EditFieldsForm; |
| 6 | use WPDesk\FCF\Free\Settings\Form\FormIntegration; |
| 7 | use WPDesk\FCF\Free\Settings\Form\SettingsPageForm; |
| 8 | |
| 9 | /** |
| 10 | * Supports management for forms. |
| 11 | */ |
| 12 | class Forms { |
| 13 | |
| 14 | /** |
| 15 | * Initializes actions for class. |
| 16 | * |
| 17 | * @return void |
| 18 | */ |
| 19 | public function init() { |
| 20 | ( new FormIntegration( new EditFieldsForm() ) )->hooks(); |
| 21 | ( new FormIntegration( new SettingsPageForm() ) )->hooks(); |
| 22 | } |
| 23 | } |
| 24 |