Code Duplication    Length = 10-12 lines in 2 locations

admin_pages/other_services/Other_Services_Admin_Page.core.php 1 location

@@ 53-62 (lines=10) @@
50
    }
51
52
53
    protected function _set_page_config()
54
    {
55
        $this->_page_config = array(
56
            'default' => array(
57
                'nav'           => array(
58
                    'label' => __('Other Available Services', 'event_espresso'),
59
                    'order' => 10,
60
                ),
61
                'require_nonce' => false,
62
            ),
63
        );
64
    }
65

caffeinated/admin/new/tickets/Tickets_Admin_Page.core.php 1 location

@@ 92-103 (lines=12) @@
89
    }
90
91
92
    protected function _set_page_config()
93
    {
94
        $this->_page_config = array(
95
            'default' => array(
96
                'nav'           => array(
97
                    'label' => __('Default Tickets', 'event_espresso'),
98
                    'order' => 10,
99
                ),
100
                'list_table'    => 'Tickets_List_Table',
101
                'require_nonce' => false,
102
            ),
103
        );
104
    }
105
106