admin_pages/registration_form/Registration_Form_Admin_Page.core.php 1 location
|
@@ 223-228 (lines=6) @@
|
220 |
|
$this->_admin_page_title = $page_title; |
221 |
|
} |
222 |
|
|
223 |
|
protected function _add_screen_options_question_groups() { |
224 |
|
$page_title = $this->_admin_page_title; |
225 |
|
$this->_admin_page_title = esc_html__('Question Groups', 'event_espresso'); |
226 |
|
$this->_per_page_screen_option(); |
227 |
|
$this->_admin_page_title = $page_title; |
228 |
|
} |
229 |
|
|
230 |
|
//none of the below group are currently used for Event Categories |
231 |
|
protected function _add_feature_pointers() {} |
admin_pages/venues/Venues_Admin_Page.core.php 1 location
|
@@ 441-446 (lines=6) @@
|
438 |
|
|
439 |
|
|
440 |
|
|
441 |
|
protected function _add_screen_options_category_list() { |
442 |
|
$page_title = $this->_admin_page_title; |
443 |
|
$this->_admin_page_title = __('Venue Categories', 'event_espresso'); |
444 |
|
$this->_per_page_screen_option(); |
445 |
|
$this->_admin_page_title = $page_title; |
446 |
|
} |
447 |
|
|
448 |
|
|
449 |
|
|
caffeinated/admin/extend/messages/Extend_Messages_Admin_Page.core.php 1 location
|
@@ 155-160 (lines=6) @@
|
152 |
|
|
153 |
|
|
154 |
|
|
155 |
|
protected function _add_screen_options_custom_mtps() { |
156 |
|
$page_title = $this->_admin_page_title; |
157 |
|
$this->_admin_page_title = __('Custom Message Templates', 'event_espresso'); |
158 |
|
$this->_per_page_screen_option(); |
159 |
|
$this->_admin_page_title = $page_title; |
160 |
|
} |
161 |
|
|
162 |
|
|
163 |
|
|
caffeinated/admin/extend/registrations/Extend_Registrations_Admin_Page.core.php 1 location
|
@@ 202-207 (lines=6) @@
|
199 |
|
|
200 |
|
|
201 |
|
|
202 |
|
protected function _add_screen_options_registration_checkins() { |
203 |
|
$page_title = $this->_admin_page_title; |
204 |
|
$this->_admin_page_title = __('Check-In Records', 'event_espresso'); |
205 |
|
$this->_per_page_screen_option(); |
206 |
|
$this->_admin_page_title = $page_title; |
207 |
|
} |
208 |
|
|
209 |
|
|
210 |
|
|
admin_pages/registrations/Registrations_Admin_Page.core.php 1 location
|
@@ 588-593 (lines=6) @@
|
585 |
|
$this->_per_page_screen_option(); |
586 |
|
} |
587 |
|
|
588 |
|
protected function _add_screen_options_contact_list() { |
589 |
|
$page_title = $this->_admin_page_title; |
590 |
|
$this->_admin_page_title = __("Contacts", 'event_espresso'); |
591 |
|
$this->_per_page_screen_option(); |
592 |
|
$this->_admin_page_title = $page_title; |
593 |
|
} |
594 |
|
|
595 |
|
|
596 |
|
|
admin_pages/messages/Messages_Admin_Page.core.php 1 location
|
@@ 646-655 (lines=10) @@
|
643 |
|
|
644 |
|
|
645 |
|
|
646 |
|
protected function _add_screen_options_global_mtps() { |
647 |
|
/** |
648 |
|
* Note: the reason for the value swap here on $this->_admin_page_title is because $this->_per_page_screen_options |
649 |
|
* uses the $_admin_page_title property and we want different outputs in the different spots. |
650 |
|
*/ |
651 |
|
$page_title = $this->_admin_page_title; |
652 |
|
$this->_admin_page_title = __('Global Message Templates', 'event_espresso'); |
653 |
|
$this->_per_page_screen_option(); |
654 |
|
$this->_admin_page_title = $page_title; |
655 |
|
} |
656 |
|
|
657 |
|
|
658 |
|
|
caffeinated/admin/new/pricing/Pricing_Admin_Page.core.php 1 location
|
@@ 351-356 (lines=6) @@
|
348 |
|
} |
349 |
|
|
350 |
|
|
351 |
|
protected function _add_screen_options_price_types() { |
352 |
|
$page_title = $this->_admin_page_title; |
353 |
|
$this->_admin_page_title = __('Price Types', 'event_espresso'); |
354 |
|
$this->_per_page_screen_option(); |
355 |
|
$this->_admin_page_title = $page_title; |
356 |
|
} |
357 |
|
|
358 |
|
|
359 |
|
|