MF_PostTypePages::TopMenu PHP Method

TopMenu() public method

Adding the menu in the admin
public TopMenu ( )
    function TopMenu()
    {
        global $mf_domain;
        // Add top menu
        /**
         * For now this menu is only displayed for the admin user, i think to this will change soon 
         */
        $post_type_screen = add_submenu_page('MagicFieldsMenu', __('Post Types', $mf_domain), __('Post types', $mf_domain), 10, 'mf_posttypes', array('MF_PostTypePages', 'Dispacher'));
        add_contextual_help($post_type_screen, '<p>' . __('Hi you can create and manage Post Types here') . '</p>');
    }