Sources/ManageCalendar.php 1 location
|
@@ 63-71 (lines=9) @@
|
| 60 |
|
'help' => 'calendar', |
| 61 |
|
'description' => $txt['calendar_settings_desc'], |
| 62 |
|
); |
| 63 |
|
if (!empty($modSettings['cal_enabled'])) |
| 64 |
|
$context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
| 65 |
|
'holidays' => array( |
| 66 |
|
'description' => $txt['manage_holidays_desc'], |
| 67 |
|
), |
| 68 |
|
'settings' => array( |
| 69 |
|
'description' => $txt['calendar_settings_desc'], |
| 70 |
|
), |
| 71 |
|
); |
| 72 |
|
|
| 73 |
|
call_integration_hook('integrate_manage_calendar', array(&$subActions)); |
| 74 |
|
|
Sources/ManagePaid.php 1 location
|
@@ 62-70 (lines=9) @@
|
| 59 |
|
'help' => '', |
| 60 |
|
'description' => $txt['paid_subscriptions_desc'], |
| 61 |
|
); |
| 62 |
|
if (!empty($modSettings['paid_enabled'])) |
| 63 |
|
$context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
| 64 |
|
'view' => array( |
| 65 |
|
'description' => $txt['paid_subs_view_desc'], |
| 66 |
|
), |
| 67 |
|
'settings' => array( |
| 68 |
|
'description' => $txt['paid_subs_settings_desc'], |
| 69 |
|
), |
| 70 |
|
); |
| 71 |
|
|
| 72 |
|
call_integration_hook('integrate_manage_subscriptions', array(&$subActions)); |
| 73 |
|
|