1 | <?php |
||
14 | class EventsAdmin extends CoreAdmin |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * Selector for the Add new Event button in the admin. |
||
19 | * @var string |
||
20 | */ |
||
21 | const ADD_NEW_EVENT_BUTTON_SELECTOR = '#add-new-event'; |
||
22 | |||
23 | |||
24 | /** |
||
25 | * Selector for the Event Title field in the event editor |
||
26 | * @var string |
||
27 | */ |
||
28 | const EVENT_EDITOR_TITLE_FIELD_SELECTOR = "//input[@id='title']"; |
||
29 | |||
30 | /** |
||
31 | * Selector for the publish submit button in the event editor. |
||
32 | * @var string |
||
33 | */ |
||
34 | const EVENT_EDITOR_PUBLISH_BUTTON_SELECTOR = "#publish"; |
||
35 | |||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | const EVENT_EDITOR_DEFAULT_REGISTRATION_STATUS_FIELD_SELECTOR = '#EVT_default_registration_status'; |
||
41 | |||
42 | /** |
||
43 | * Selector for the view link after publishing an event. |
||
44 | * @var string |
||
45 | */ |
||
46 | const EVENT_EDITOR_VIEW_LINK_AFTER_PUBLISH_SELECTOR = "//div[@id='message']/p/a"; |
||
47 | |||
48 | |||
49 | /** |
||
50 | * Selector for the ID of the event in the event editor |
||
51 | * @var string |
||
52 | */ |
||
53 | const EVENT_EDITOR_EVT_ID_SELECTOR = "//input[@id='post_ID']"; |
||
54 | |||
55 | |||
56 | /** |
||
57 | * Selector for the search input on the event list table page. |
||
58 | * @var string |
||
59 | */ |
||
60 | const EVENT_LIST_TABLE_SEARCH_INPUT_SELECTOR = '#toplevel_page_espresso_events-search-input'; |
||
61 | |||
62 | |||
63 | |||
64 | |||
65 | /** |
||
66 | * @param string $additional_params |
||
67 | * @return string |
||
68 | */ |
||
69 | public static function defaultEventsListTableUrl($additional_params = '') |
||
73 | |||
74 | |||
75 | /** |
||
76 | * The selector for the DTTname field for the given row in the event editor. |
||
77 | * @param int $row_number |
||
78 | * @return string |
||
79 | */ |
||
80 | public static function eventEditorDatetimeNameFieldSelector($row_number = 1) |
||
84 | |||
85 | |||
86 | /** |
||
87 | * The selector for the DTT_EVT_start field for the given row in the event editor.d |
||
88 | * @param int $row_number |
||
89 | * @return string |
||
90 | */ |
||
91 | public static function eventEditorDatetimeStartDateFieldSelector($row_number = 1) |
||
95 | |||
96 | |||
97 | /** |
||
98 | * Wrapper for getting the selector for a given field and given row of a datetime in the event editor. |
||
99 | * |
||
100 | * @param string $field_name |
||
101 | * @param int $row_number |
||
102 | * @return string |
||
103 | */ |
||
104 | public static function eventEditorDatetimeFieldSelectorForField($field_name, $row_number = 1) |
||
108 | |||
109 | |||
110 | /** |
||
111 | * The selector for the TKT_name field for the given display row in the event editor. |
||
112 | * @param int $row_number |
||
113 | * @return string |
||
114 | */ |
||
115 | public static function eventEditorTicketNameFieldSelector($row_number = 1) |
||
119 | |||
120 | |||
121 | /** |
||
122 | * Wrapper for getting the selector for a given field and given display row of a ticket in the event editor. |
||
123 | * @param $field_name |
||
124 | * @param int $row_number |
||
125 | * @return string |
||
126 | */ |
||
127 | public static function eventEditorTicketFieldSelectorForFieldInDisplayRow($field_name, $row_number = 1) |
||
132 | |||
133 | |||
134 | /** |
||
135 | * Returns the selector for the event title edit link in the events list table for the given Event Title. |
||
136 | * @param string $event_title |
||
137 | * @return string |
||
138 | */ |
||
139 | public static function eventListTableEventTitleEditLinkSelectorForTitle($event_title) |
||
143 | |||
144 | |||
145 | /** |
||
146 | * Locator for for the ID column in the event list table for a given event title. |
||
147 | * @param string $event_title |
||
148 | * @return string |
||
149 | */ |
||
150 | public static function eventListTableEventIdSelectorForTitle($event_title) |
||
155 | |||
156 | |||
157 | /** |
||
158 | * Locator for the view link in the row of an event list table for the given event title. |
||
159 | * @param string $event_title |
||
160 | * @return string |
||
161 | */ |
||
162 | public static function eventListTableEventTitleViewLinkSelectorForTitle($event_title) |
||
167 | |||
168 | |||
169 | /** |
||
170 | * Locator for the messenger tab in the Notifications metabox in the event editor. |
||
171 | * @param string $messenger_slug The slug for the messenger (it's reference slug). |
||
172 | * @return string |
||
173 | */ |
||
174 | public static function eventEditorNotificationsMetaBoxMessengerTabSelector($messenger_slug) |
||
179 | |||
180 | |||
181 | /** |
||
182 | * Locator for the select input within the notifications metabox. |
||
183 | * Note, this assumes the tab content for the related messenger is already visible. |
||
184 | * @param string $message_type_label The message type label (visible string in the table) you want the selector for. |
||
185 | * @return string |
||
186 | */ |
||
187 | public static function eventEditorNotificationsMetaBoxSelectSelectorForMessageType($message_type_label) |
||
194 | } |
||
195 |