Actions
4 months ago
AsyncData
1 year ago
Blocks
2 months ago
Controllers
3 months ago
DataTransferObjects
1 week ago
Exceptions
1 year ago
Factories
9 months ago
FormDesigns
11 months ago
FormPage
1 year ago
Listeners
1 year ago
Migrations
1 year ago
Models
10 months ago
OrphanedForms
1 year ago
Properties
2 months ago
Repositories
10 months ago
Routes
5 months ago
Rules
9 months ago
Shortcodes
2 years ago
V2
4 months ago
ValueObjects
1 year ago
ViewModels
2 months ago
resources
1 month ago
DonationFormDataQuery.php
11 months ago
DonationFormsAdminPage.php
1 year ago
DonationQuery.php
11 months ago
ServiceProvider.php
7 months ago
SubscriptionQuery.php
2 years ago
DonationFormsAdminPage.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonationForms; |
| 4 | |
| 5 | use Give\Helpers\Language; |
| 6 | |
| 7 | /** |
| 8 | * @since 3.22.0 Add locale support |
| 9 | * @since 3.15.0 |
| 10 | */ |
| 11 | class DonationFormsAdminPage |
| 12 | { |
| 13 | /** |
| 14 | * @since 4.0.0 Remove logic to add the "Add Form" menu item |
| 15 | * @since 3.15.0 |
| 16 | */ |
| 17 | public function addFormSubmenuLink() |
| 18 | { |
| 19 | remove_submenu_page('edit.php?post_type=give_forms', 'post-new.php?post_type=give_forms'); |
| 20 | } |
| 21 | } |
| 22 |