Code Duplication    Length = 6-6 lines in 2 locations

admin_pages/registration_form/Registration_Form_Admin_Page.core.php 1 location

@@ 81-86 (lines=6) @@
78
79
80
81
	protected function _init_page_props() {
82
		$this->page_slug = REGISTRATION_FORM_PG_SLUG;
83
		$this->page_label = esc_html__('Registration Form', 'event_espresso');
84
		$this->_admin_base_url = REGISTRATION_FORM_ADMIN_URL;
85
		$this->_admin_base_path = REGISTRATION_FORM_ADMIN;
86
	}
87
88
89

admin_pages/transactions/Transactions_Admin_Page.core.php 1 location

@@ 74-79 (lines=6) @@
71
     *    _init_page_props
72
     * @return void
73
     */
74
    protected function _init_page_props()
75
    {
76
        $this->page_slug        = TXN_PG_SLUG;
77
        $this->page_label       = esc_html__('Transactions', 'event_espresso');
78
        $this->_admin_base_url  = TXN_ADMIN_URL;
79
        $this->_admin_base_path = TXN_ADMIN;
80
    }
81
    
82