芝麻web文件管理V1.00
编辑当前文件:/home/mybf1/www/pati.bf1.my/wp-content/plugins/spotlight-social-photo-feeds/src/core/Wp/Menu.php
page = $page; $this->slug = $slug; $this->label = $label; $this->capability = $capability; $this->icon = $icon; $this->position = $position; $this->items = $items; } /** * Registers a menu with WordPress. * * @since 0.1 * * @param Menu $menu The menu instance to register. */ public static function register(Menu $menu) { if (!current_user_can($menu->capability)) { return; } add_menu_page( $menu->page->getTitle(), $menu->label, $menu->capability, $menu->slug, $menu->page->getRenderFn(), $menu->icon, $menu->position ); foreach ($menu->items as $item) { SubMenu::registerFor($menu->slug, $item); } } }