notices
2 weeks ago
tabbed-view
2 weeks ago
widgets
2 weeks ago
app-shop.php
2 weeks ago
event-log.php
2 weeks ago
tribe-options-display.php
2 weeks ago
tribe-options-general.php
2 weeks ago
tribe-options-help.php
2 weeks ago
tribe-options-licenses.php
2 weeks ago
tribe-options-network.php
2 weeks ago
tribe-options-network.php
36 lines
| 1 | <?php |
| 2 | $allTabs = apply_filters( 'tribe_settings_all_tabs', [] ); |
| 3 | |
| 4 | $networkTab = [ |
| 5 | 'priority' => 10, |
| 6 | 'network_admin' => true, |
| 7 | 'fields' => apply_filters( |
| 8 | 'tribe_network_settings_tab_fields', [ |
| 9 | 'info-start' => [ |
| 10 | 'type' => 'html', |
| 11 | 'html' => '<div id="modern-tribe-info">', |
| 12 | ], |
| 13 | 'info-box-title' => [ |
| 14 | 'type' => 'html', |
| 15 | 'html' => '<h1>' . esc_html__( 'Network Settings', 'tribe-common' ) . '</h1>', |
| 16 | ], |
| 17 | 'info-box-description' => [ |
| 18 | 'type' => 'html', |
| 19 | 'html' => '<p>' . esc_html__( 'This is where all of the global network settings for The Events Calendar can be modified.', 'tribe-common' ) . '</p>', |
| 20 | ], |
| 21 | 'info-end' => [ |
| 22 | 'type' => 'html', |
| 23 | 'html' => '</div>', |
| 24 | ], |
| 25 | 'hideSettingsTabs' => [ |
| 26 | 'type' => 'checkbox_list', |
| 27 | 'label' => esc_html__( 'Hide the following settings tabs on every site:', 'tribe-common' ), |
| 28 | 'default' => false, |
| 29 | 'options' => $allTabs, |
| 30 | 'validation_type' => 'options_multi', |
| 31 | 'can_be_empty' => true, |
| 32 | ], |
| 33 | ] |
| 34 | ), |
| 35 | ]; |
| 36 |