admin_pages/events/Events_Admin_Page.core.php 1 location
|
@@ 527-533 (lines=7) @@
|
524 |
|
/** |
525 |
|
* Implementing screen options for the category list route. |
526 |
|
*/ |
527 |
|
protected function _add_screen_options_category_list() |
528 |
|
{ |
529 |
|
$page_title = $this->_admin_page_title; |
530 |
|
$this->_admin_page_title = esc_html__('Categories', 'event_espresso'); |
531 |
|
$this->_per_page_screen_option(); |
532 |
|
$this->_admin_page_title = $page_title; |
533 |
|
} |
534 |
|
|
535 |
|
|
536 |
|
/** |
admin_pages/registration_form/Registration_Form_Admin_Page.core.php 2 locations
|
@@ 200-206 (lines=7) @@
|
197 |
|
// todo |
198 |
|
} |
199 |
|
|
200 |
|
protected function _add_screen_options_default() |
201 |
|
{ |
202 |
|
$page_title = $this->_admin_page_title; |
203 |
|
$this->_admin_page_title = esc_html__('Questions', 'event_espresso'); |
204 |
|
$this->_per_page_screen_option(); |
205 |
|
$this->_admin_page_title = $page_title; |
206 |
|
} |
207 |
|
|
208 |
|
protected function _add_screen_options_question_groups() |
209 |
|
{ |
|
@@ 208-214 (lines=7) @@
|
205 |
|
$this->_admin_page_title = $page_title; |
206 |
|
} |
207 |
|
|
208 |
|
protected function _add_screen_options_question_groups() |
209 |
|
{ |
210 |
|
$page_title = $this->_admin_page_title; |
211 |
|
$this->_admin_page_title = esc_html__('Question Groups', 'event_espresso'); |
212 |
|
$this->_per_page_screen_option(); |
213 |
|
$this->_admin_page_title = $page_title; |
214 |
|
} |
215 |
|
|
216 |
|
// none of the below group are currently used for Event Categories |
217 |
|
protected function _add_feature_pointers() |
admin_pages/registrations/Registrations_Admin_Page.core.php 1 location
|
@@ 647-653 (lines=7) @@
|
644 |
|
} |
645 |
|
|
646 |
|
|
647 |
|
protected function _add_screen_options_contact_list() |
648 |
|
{ |
649 |
|
$page_title = $this->_admin_page_title; |
650 |
|
$this->_admin_page_title = esc_html__("Contacts", 'event_espresso'); |
651 |
|
$this->_per_page_screen_option(); |
652 |
|
$this->_admin_page_title = $page_title; |
653 |
|
} |
654 |
|
|
655 |
|
|
656 |
|
public function load_scripts_styles() |
admin_pages/messages/Messages_Admin_Page.core.php 1 location
|
@@ 672-682 (lines=11) @@
|
669 |
|
} |
670 |
|
|
671 |
|
|
672 |
|
protected function _add_screen_options_global_mtps() |
673 |
|
{ |
674 |
|
/** |
675 |
|
* Note: the reason for the value swap here on $this->_admin_page_title is because $this->_per_page_screen_options |
676 |
|
* uses the $_admin_page_title property and we want different outputs in the different spots. |
677 |
|
*/ |
678 |
|
$page_title = $this->_admin_page_title; |
679 |
|
$this->_admin_page_title = esc_html__('Global Message Templates', 'event_espresso'); |
680 |
|
$this->_per_page_screen_option(); |
681 |
|
$this->_admin_page_title = $page_title; |
682 |
|
} |
683 |
|
|
684 |
|
|
685 |
|
protected function _add_screen_options_default() |
caffeinated/admin/extend/registrations/Extend_Registrations_Admin_Page.core.php 1 location
|
@@ 238-244 (lines=7) @@
|
235 |
|
/** |
236 |
|
* Register screen options for registration_checkins route |
237 |
|
*/ |
238 |
|
protected function _add_screen_options_registration_checkins() |
239 |
|
{ |
240 |
|
$page_title = $this->_admin_page_title; |
241 |
|
$this->_admin_page_title = esc_html__('Check-In Records', 'event_espresso'); |
242 |
|
$this->_per_page_screen_option(); |
243 |
|
$this->_admin_page_title = $page_title; |
244 |
|
} |
245 |
|
|
246 |
|
|
247 |
|
/** |