PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 2.8.23.4
Pods – Custom Content Types and Fields v2.8.23.4
2.7.31.4 2.8.23.5 2.9.19.5 3.0.10.5 3.1.4.3 3.2.8.4 3.3.9.2 2.8.23.4 2.9.19.4 3.0.10.4 3.1.4.2 3.2.8.3 3.3.9.1 trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / tribe-common / src / admin-views / tribe-options-network.php
pods / tribe-common / src / admin-views Last commit date
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