1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Carbon_Fields\Container; |
4
|
|
|
|
5
|
|
|
use Carbon_Fields\Datastore\Datastore; |
6
|
|
|
use Carbon_Fields\Exception\Incorrect_Syntax_Exception; |
7
|
|
|
|
8
|
|
|
/** |
9
|
|
|
* Theme options container class. |
10
|
|
|
*/ |
11
|
|
|
class Network_Container extends Theme_Options_Container { |
12
|
|
|
/** |
13
|
|
|
* ID of the site the container is operating with |
14
|
|
|
* |
15
|
|
|
* @see init() |
16
|
|
|
* @var int |
17
|
|
|
*/ |
18
|
|
|
protected $site_id; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* {@inheritDoc} |
22
|
|
|
*/ |
23
|
|
|
public function __construct( $id, $title, $type, $condition_collection, $condition_translator ) { |
24
|
|
|
parent::__construct( $id, $title, $type, $condition_collection, $condition_translator ); |
25
|
|
|
|
26
|
|
|
if ( ! is_multisite() ) { |
27
|
|
|
Incorrect_Syntax_Exception::raise( 'The "' . $title . '" container will not be available because your site is not a multisite.' ); |
28
|
|
|
return; |
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
$this->set_datastore( Datastore::make( 'network' ), $this->has_default_datastore() ); |
32
|
|
|
$this->set_site_id( SITE_ID_CURRENT_SITE ); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* {@inheritDoc} |
37
|
|
|
*/ |
38
|
|
|
public function init() { |
39
|
|
|
$registered = $this->register_page(); |
40
|
|
|
if ( $registered ) { |
41
|
|
|
add_action( 'network_admin_menu', array( $this, '_attach' ) ); |
42
|
|
|
} |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* {@inheritDoc} |
47
|
|
|
*/ |
48
|
|
View Code Duplication |
public function render() { |
|
|
|
|
49
|
|
|
$input = stripslashes_deep( $_GET ); |
50
|
|
|
$request_settings_updated = isset( $input['settings-updated'] ) ? $input['settings-updated'] : ''; |
51
|
|
|
if ( $request_settings_updated === 'true' ) { |
52
|
|
|
$this->notifications[] = __( 'Settings saved.', 'carbon-fields' ); |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
include \Carbon_Fields\DIR . '/templates/Container/network.php'; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* Check if a site exists by id |
60
|
|
|
* |
61
|
|
|
* @param integer $id |
62
|
|
|
* @return boolean |
63
|
|
|
*/ |
64
|
|
|
protected function site_exists( $id ) { |
65
|
|
|
if ( ! function_exists( 'get_blog_status' ) ) { |
66
|
|
|
return false; |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
$blog_domain = get_blog_status( $id, 'domain' ); |
70
|
|
|
return ! empty( $blog_domain ); |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* Get the site ID the container is operating with. |
75
|
|
|
* |
76
|
|
|
* @return integer |
77
|
|
|
*/ |
78
|
|
|
public function get_site_id() { |
79
|
|
|
return $this->site_id; |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
/** |
83
|
|
|
* Set the site ID the container will operate with. |
84
|
|
|
* |
85
|
|
|
* @param int $id |
86
|
|
|
* @return self $this |
87
|
|
|
*/ |
88
|
|
|
public function set_site_id( $id ) { |
89
|
|
|
$id = intval( $id ); |
90
|
|
|
|
91
|
|
|
if ( ! $this->site_exists( $id ) ) { |
92
|
|
|
Incorrect_Syntax_Exception::raise( 'The specified site id #' . $id . ' does not exist' ); |
93
|
|
|
return $this; |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
$this->site_id = $id; |
97
|
|
|
$this->datastore->set_object_id( $this->get_site_id() ); |
98
|
|
|
|
99
|
|
|
return $this; |
100
|
|
|
} |
101
|
|
|
} |
102
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.