Actions
1 year ago
AsyncData
1 year ago
Blocks
1 year ago
Controllers
2 years ago
DataTransferObjects
1 year ago
Exceptions
1 year ago
Factories
2 years ago
FormDesigns
1 year ago
FormPage
2 years ago
Listeners
1 year ago
Migrations
2 years ago
Models
2 years ago
Properties
1 year ago
Repositories
2 years ago
Routes
1 year ago
Rules
1 year ago
Shortcodes
2 years ago
V2
1 year ago
ValueObjects
2 years ago
ViewModels
2 years ago
resources
1 year ago
DonationFormsAdminPage.php
1 year ago
DonationQuery.php
1 year ago
ServiceProvider.php
1 year ago
SubscriptionQuery.php
2 years ago
DonationFormsAdminPage.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonationForms; |
| 4 | |
| 5 | /** |
| 6 | * @since 3.15.0 |
| 7 | */ |
| 8 | class DonationFormsAdminPage |
| 9 | { |
| 10 | /** |
| 11 | * @since 3.15.0 |
| 12 | */ |
| 13 | public function addFormSubmenuLink() |
| 14 | { |
| 15 | remove_submenu_page('edit.php?post_type=give_forms', 'post-new.php?post_type=give_forms'); |
| 16 | add_submenu_page('edit.php?post_type=give_forms', __('Add Form', 'give'), __('Add Form', 'give'), |
| 17 | 'edit_give_forms', |
| 18 | 'edit.php?post_type=give_forms&page=givewp-form-builder', '', 1); |
| 19 | } |
| 20 | } |
| 21 |