Asset
5 years ago
HelpTab
5 years ago
Main
5 years ago
Menu
5 years ago
Notice
5 years ago
Preference
5 years ago
ScreenOption
5 years ago
Section
5 years ago
AddonStatus.php
5 years ago
Admin.php
5 years ago
AdminNetwork.php
5 years ago
AdminScripts.php
5 years ago
Banner.php
5 years ago
HelpTab.php
5 years ago
Helpable.php
5 years ago
MainFactory.php
5 years ago
MainFactoryInterface.php
5 years ago
Menu.php
5 years ago
MenuFactory.php
5 years ago
MenuFactoryInterface.php
5 years ago
NetworkRequestHandler.php
5 years ago
Page.php
5 years ago
PageFactory.php
5 years ago
PageFactoryInterface.php
5 years ago
PageRequestHandler.php
5 years ago
RequestHandler.php
5 years ago
RequestHandlerInterface.php
5 years ago
ScreenOption.php
5 years ago
ScreenOptions.php
5 years ago
Section.php
5 years ago
SectionCollection.php
5 years ago
Table.php
5 years ago
Tooltip.php
5 years ago
WpMenuFactory.php
5 years ago
WpMenuFactory.php
43 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Admin; |
| 4 | |
| 5 | use AC\Capabilities; |
| 6 | |
| 7 | class WpMenuFactory { |
| 8 | |
| 9 | /** |
| 10 | * @param string $parent_menu |
| 11 | * @param int $position |
| 12 | * |
| 13 | * @return string |
| 14 | */ |
| 15 | public function create_sub_menu( $parent_menu, $position = null ) { |
| 16 | return add_submenu_page( |
| 17 | $parent_menu, |
| 18 | __( 'Admin Columns Settings', 'codepress-admin-columns' ), |
| 19 | __( 'Admin Columns', 'codepress-admin-columns' ), |
| 20 | Capabilities::MANAGE, |
| 21 | Admin::NAME, |
| 22 | null, |
| 23 | $position |
| 24 | ); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * @param string $icon |
| 29 | * @param int $position |
| 30 | */ |
| 31 | public function create_menu( $icon = null, $position = null ) { |
| 32 | return add_menu_page( |
| 33 | __( 'Admin Columns Settings', 'codepress-admin-columns' ), |
| 34 | __( 'Admin Columns', 'codepress-admin-columns' ), |
| 35 | Capabilities::MANAGE, |
| 36 | Admin::NAME, |
| 37 | null, |
| 38 | $icon, |
| 39 | $position |
| 40 | ); |
| 41 | } |
| 42 | |
| 43 | } |