File "tribe-options-network.php"

Full Path: /home/londdqdw/public_html/06/wp-content/plugins/the-events-calendar/common/src/admin-views/tribe-options-network.php
File size: 1.06 KB
MIME-type: text/x-php
Charset: utf-8

<?php
$allTabs = apply_filters( 'tribe_settings_all_tabs', [] );

$networkTab = [
	'priority'      => 10,
	'network_admin' => true,
	'fields'        => apply_filters(
		'tribe_network_settings_tab_fields', [
			'info-start'           => [
				'type' => 'html',
				'html' => '<div id="modern-tribe-info">',
			],
			'info-box-title'       => [
				'type' => 'html',
				'html' => '<h1>' . esc_html__( 'Network Settings', 'tribe-common' ) . '</h1>',
			],
			'info-box-description' => [
				'type' => 'html',
				'html' => '<p>' . esc_html__( 'This is where all of the global network settings for The Events Calendar can be modified.', 'tribe-common' ) . '</p>',
			],
			'info-end'             => [
				'type' => 'html',
				'html' => '</div>',
			],
			'hideSettingsTabs'     => [
				'type'            => 'checkbox_list',
				'label'           => esc_html__( 'Hide the following settings tabs on every site:', 'tribe-common' ),
				'default'         => false,
				'options'         => $allTabs,
				'validation_type' => 'options_multi',
				'can_be_empty'    => true,
			],
		]
	),
];