tickets
12 years ago
app-shop.php
12 years ago
datepicker.php
12 years ago
event-map.php
12 years ago
event-sidebar-options.php
12 years ago
events-audit-trail.php
12 years ago
events-meta-box.php
12 years ago
no-comments.php
12 years ago
organizer-meta-box.php
12 years ago
recurrence-dialog.php
12 years ago
tribe-options-display.php
12 years ago
tribe-options-general.php
12 years ago
tribe-options-help.php
12 years ago
tribe-options-network.php
12 years ago
venue-meta-box.php
12 years ago
widget-admin-list.php
12 years ago
tribe-options-network.php
34 lines
| 1 | <?php |
| 2 | $allTabs = apply_filters( 'tribe_settings_all_tabs', array() ); |
| 3 | |
| 4 | $networkTab = array( |
| 5 | 'priority' => 10, |
| 6 | 'network_admin' => true, |
| 7 | 'fields' => apply_filters( 'tribe_network_settings_tab_fields', array( |
| 8 | 'info-start' => array( |
| 9 | 'type' => 'html', |
| 10 | 'html' => '<div id="modern-tribe-info">' |
| 11 | ), |
| 12 | 'info-box-title' => array( |
| 13 | 'type' => 'html', |
| 14 | 'html' => '<h2>' . __('Network Settings', 'tribe-events-calendar') . '</h2>', |
| 15 | ), |
| 16 | 'info-box-description' => array( |
| 17 | 'type' => 'html', |
| 18 | 'html' => '<p>' . __('This is where all of the global network settings for Modern Tribe\'s The Events Calendar can be modified.', 'tribe-events-calendar') . '</p>', |
| 19 | ), |
| 20 | 'info-end' => array( |
| 21 | 'type' => 'html', |
| 22 | 'html' => '</div>', |
| 23 | ), |
| 24 | 'hideSettingsTabs' => array( |
| 25 | 'type' => 'checkbox_list', |
| 26 | 'label' => __( 'Hide the following settings tabs on every site:', 'tribe-events-calendar' ), |
| 27 | 'default' => false, |
| 28 | 'options' => $allTabs, |
| 29 | 'validation_type' => 'options_multi', |
| 30 | 'can_be_empty' => true, |
| 31 | ), |
| 32 | ) |
| 33 | ) |
| 34 | ); |