Completed
Branch BUG/required-message-fields (8f9492)
by
unknown
10:53 queued 20s
created
core/services/validators/URLValidator.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,16 +16,16 @@
 block discarded – undo
16 16
  */
17 17
 class URLValidator
18 18
 {
19
-    /**
20
-     * Returns whether or not the URL is valid
21
-     * @since 4.9.68.p
22
-     * @param $url
23
-     * @return boolean
24
-     */
25
-    public function isValid($url)
26
-    {
27
-        return  esc_url_raw($url) === $url;
28
-    }
19
+	/**
20
+	 * Returns whether or not the URL is valid
21
+	 * @since 4.9.68.p
22
+	 * @param $url
23
+	 * @return boolean
24
+	 */
25
+	public function isValid($url)
26
+	{
27
+		return  esc_url_raw($url) === $url;
28
+	}
29 29
 }
30 30
 // End of file URLValidator.php
31 31
 // Location: ${NAMESPACE}/URLValidator.php
Please login to merge, or discard this patch.
core/services/validators/JsonValidator.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,19 +32,19 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function isValid($file, $func, $line)
34 34
     {
35
-        if (! defined('JSON_ERROR_RECURSION')) {
35
+        if ( ! defined('JSON_ERROR_RECURSION')) {
36 36
             define('JSON_ERROR_RECURSION', 6);
37 37
         }
38
-        if (! defined('JSON_ERROR_INF_OR_NAN')) {
38
+        if ( ! defined('JSON_ERROR_INF_OR_NAN')) {
39 39
             define('JSON_ERROR_INF_OR_NAN', 7);
40 40
         }
41
-        if (! defined('JSON_ERROR_UNSUPPORTED_TYPE')) {
41
+        if ( ! defined('JSON_ERROR_UNSUPPORTED_TYPE')) {
42 42
             define('JSON_ERROR_UNSUPPORTED_TYPE', 8);
43 43
         }
44
-        if (! defined('JSON_ERROR_INVALID_PROPERTY_NAME')) {
44
+        if ( ! defined('JSON_ERROR_INVALID_PROPERTY_NAME')) {
45 45
             define('JSON_ERROR_INVALID_PROPERTY_NAME', 9);
46 46
         }
47
-        if (! defined('JSON_ERROR_UTF16')) {
47
+        if ( ! defined('JSON_ERROR_UTF16')) {
48 48
             define('JSON_ERROR_UTF16', 10);
49 49
         }
50 50
         switch (json_last_error()) {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                 $error = ': Unknown error';
85 85
                 break;
86 86
         }
87
-        EE_Error::add_error('JSON decoding failed' . $error, $file, $func, $line);
87
+        EE_Error::add_error('JSON decoding failed'.$error, $file, $func, $line);
88 88
         return false;
89 89
     }
90 90
 }
Please login to merge, or discard this patch.
Indentation   +72 added lines, -72 removed lines patch added patch discarded remove patch
@@ -17,76 +17,76 @@
 block discarded – undo
17 17
  */
18 18
 class JsonValidator
19 19
 {
20
-    /**
21
-     * Call this method IMMEDIATELY after json_decode() and
22
-     * it will will return true if the decoded JSON was valid,
23
-     * or return false after adding an error if not valid.
24
-     * The actual JSON file does not need to be supplied,
25
-     * but details re: code execution location are required.
26
-     * ex:
27
-     * JsonValidator::isValid(__FILE__, __METHOD__, __LINE__)
28
-     *
29
-     * @param string $file
30
-     * @param string $func
31
-     * @param string $line
32
-     * @return boolean
33
-     * @since 4.9.70.p
34
-     */
35
-    public function isValid($file, $func, $line)
36
-    {
37
-        if (! defined('JSON_ERROR_RECURSION')) {
38
-            define('JSON_ERROR_RECURSION', 6);
39
-        }
40
-        if (! defined('JSON_ERROR_INF_OR_NAN')) {
41
-            define('JSON_ERROR_INF_OR_NAN', 7);
42
-        }
43
-        if (! defined('JSON_ERROR_UNSUPPORTED_TYPE')) {
44
-            define('JSON_ERROR_UNSUPPORTED_TYPE', 8);
45
-        }
46
-        if (! defined('JSON_ERROR_INVALID_PROPERTY_NAME')) {
47
-            define('JSON_ERROR_INVALID_PROPERTY_NAME', 9);
48
-        }
49
-        if (! defined('JSON_ERROR_UTF16')) {
50
-            define('JSON_ERROR_UTF16', 10);
51
-        }
52
-        switch (json_last_error()) {
53
-            case JSON_ERROR_NONE:
54
-                return true;
55
-            case JSON_ERROR_DEPTH:
56
-                $error = ': Maximum stack depth exceeded';
57
-                break;
58
-            case JSON_ERROR_STATE_MISMATCH:
59
-                $error = ': Invalid or malformed JSON';
60
-                break;
61
-            case JSON_ERROR_CTRL_CHAR:
62
-                $error = ': Control character error, possible malformed JSON';
63
-                break;
64
-            case JSON_ERROR_SYNTAX:
65
-                $error = ': Syntax error, malformed JSON';
66
-                break;
67
-            case JSON_ERROR_UTF8:
68
-                $error = ': Malformed UTF-8 characters, possible malformed JSON';
69
-                break;
70
-            case JSON_ERROR_RECURSION:
71
-                $error = ': One or more recursive references in the value to be encoded';
72
-                break;
73
-            case JSON_ERROR_INF_OR_NAN:
74
-                $error = ': One or more NAN or INF values in the value to be encoded';
75
-                break;
76
-            case JSON_ERROR_UNSUPPORTED_TYPE:
77
-                $error = ': A value of a type that cannot be encoded was given';
78
-                break;
79
-            case JSON_ERROR_INVALID_PROPERTY_NAME:
80
-                $error = ': A property name that cannot be encoded was given';
81
-                break;
82
-            case JSON_ERROR_UTF16:
83
-                $error = ': Malformed UTF-16 characters, possibly incorrectly encoded';
84
-                break;
85
-            default:
86
-                $error = ': Unknown error';
87
-                break;
88
-        }
89
-        EE_Error::add_error('JSON decoding failed' . $error, $file, $func, $line);
90
-        return false;
91
-    }
20
+	/**
21
+	 * Call this method IMMEDIATELY after json_decode() and
22
+	 * it will will return true if the decoded JSON was valid,
23
+	 * or return false after adding an error if not valid.
24
+	 * The actual JSON file does not need to be supplied,
25
+	 * but details re: code execution location are required.
26
+	 * ex:
27
+	 * JsonValidator::isValid(__FILE__, __METHOD__, __LINE__)
28
+	 *
29
+	 * @param string $file
30
+	 * @param string $func
31
+	 * @param string $line
32
+	 * @return boolean
33
+	 * @since 4.9.70.p
34
+	 */
35
+	public function isValid($file, $func, $line)
36
+	{
37
+		if (! defined('JSON_ERROR_RECURSION')) {
38
+			define('JSON_ERROR_RECURSION', 6);
39
+		}
40
+		if (! defined('JSON_ERROR_INF_OR_NAN')) {
41
+			define('JSON_ERROR_INF_OR_NAN', 7);
42
+		}
43
+		if (! defined('JSON_ERROR_UNSUPPORTED_TYPE')) {
44
+			define('JSON_ERROR_UNSUPPORTED_TYPE', 8);
45
+		}
46
+		if (! defined('JSON_ERROR_INVALID_PROPERTY_NAME')) {
47
+			define('JSON_ERROR_INVALID_PROPERTY_NAME', 9);
48
+		}
49
+		if (! defined('JSON_ERROR_UTF16')) {
50
+			define('JSON_ERROR_UTF16', 10);
51
+		}
52
+		switch (json_last_error()) {
53
+			case JSON_ERROR_NONE:
54
+				return true;
55
+			case JSON_ERROR_DEPTH:
56
+				$error = ': Maximum stack depth exceeded';
57
+				break;
58
+			case JSON_ERROR_STATE_MISMATCH:
59
+				$error = ': Invalid or malformed JSON';
60
+				break;
61
+			case JSON_ERROR_CTRL_CHAR:
62
+				$error = ': Control character error, possible malformed JSON';
63
+				break;
64
+			case JSON_ERROR_SYNTAX:
65
+				$error = ': Syntax error, malformed JSON';
66
+				break;
67
+			case JSON_ERROR_UTF8:
68
+				$error = ': Malformed UTF-8 characters, possible malformed JSON';
69
+				break;
70
+			case JSON_ERROR_RECURSION:
71
+				$error = ': One or more recursive references in the value to be encoded';
72
+				break;
73
+			case JSON_ERROR_INF_OR_NAN:
74
+				$error = ': One or more NAN or INF values in the value to be encoded';
75
+				break;
76
+			case JSON_ERROR_UNSUPPORTED_TYPE:
77
+				$error = ': A value of a type that cannot be encoded was given';
78
+				break;
79
+			case JSON_ERROR_INVALID_PROPERTY_NAME:
80
+				$error = ': A property name that cannot be encoded was given';
81
+				break;
82
+			case JSON_ERROR_UTF16:
83
+				$error = ': Malformed UTF-16 characters, possibly incorrectly encoded';
84
+				break;
85
+			default:
86
+				$error = ': Unknown error';
87
+				break;
88
+		}
89
+		EE_Error::add_error('JSON decoding failed' . $error, $file, $func, $line);
90
+		return false;
91
+	}
92 92
 }
Please login to merge, or discard this patch.
core/domain/services/blocks/EventAttendeesBlockRenderer.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         $template_args['attributes'] = $attributes;
47 47
         $template_args['attendees'] = $this->attendee_model->get_all($this->getQueryParams($attributes));
48 48
         return EEH_Template::display_template(
49
-            $this->templateRootPath() . 'event-attendees.php',
49
+            $this->templateRootPath().'event-attendees.php',
50 50
             $template_args,
51 51
             true
52 52
         );
Please login to merge, or discard this patch.
Indentation   +118 added lines, -118 removed lines patch added patch discarded remove patch
@@ -19,133 +19,133 @@
 block discarded – undo
19 19
  */
20 20
 class EventAttendeesBlockRenderer extends BlockRenderer
21 21
 {
22
-    /**
23
-     * @var EEM_Attendee
24
-     */
25
-    private $attendee_model;
22
+	/**
23
+	 * @var EEM_Attendee
24
+	 */
25
+	private $attendee_model;
26 26
 
27
-    public function __construct(DomainInterface $domain, EEM_Attendee $attendee_model)
28
-    {
29
-        $this->attendee_model = $attendee_model;
30
-        parent::__construct($domain);
31
-    }
27
+	public function __construct(DomainInterface $domain, EEM_Attendee $attendee_model)
28
+	{
29
+		$this->attendee_model = $attendee_model;
30
+		parent::__construct($domain);
31
+	}
32 32
 
33 33
 
34
-    /**
35
-     * Renders the block.
36
-     *
37
-     * @param array $attributes  Expect already validated and sanitized array of attributes for use in generating the
38
-     *                           query and the template output.
39
-     * @return string
40
-     * @throws DomainException
41
-     * @throws EE_Error
42
-     */
43
-    public function render(array $attributes)
44
-    {
45
-        $attributes = $this->parseGlobalIDs($attributes);
46
-        $template_args['attributes'] = $attributes;
47
-        $template_args['attendees'] = $this->attendee_model->get_all($this->getQueryParams($attributes));
48
-        return EEH_Template::display_template(
49
-            $this->templateRootPath() . 'event-attendees.php',
50
-            $template_args,
51
-            true
52
-        );
53
-    }
34
+	/**
35
+	 * Renders the block.
36
+	 *
37
+	 * @param array $attributes  Expect already validated and sanitized array of attributes for use in generating the
38
+	 *                           query and the template output.
39
+	 * @return string
40
+	 * @throws DomainException
41
+	 * @throws EE_Error
42
+	 */
43
+	public function render(array $attributes)
44
+	{
45
+		$attributes = $this->parseGlobalIDs($attributes);
46
+		$template_args['attributes'] = $attributes;
47
+		$template_args['attendees'] = $this->attendee_model->get_all($this->getQueryParams($attributes));
48
+		return EEH_Template::display_template(
49
+			$this->templateRootPath() . 'event-attendees.php',
50
+			$template_args,
51
+			true
52
+		);
53
+	}
54 54
 
55 55
 
56
-    /**
57
-     * Get query parameters for model query.
58
-     *
59
-     * @param array $attributes
60
-     * @return array
61
-     */
62
-    private function parseGlobalIDs(array $attributes)
63
-    {
64
-        // if ticket ID is set, then that's all we need to run the query
65
-        $ticket = isset($attributes['ticket']) ? $attributes['ticket'] : '';
66
-        $datetime = isset($attributes['datetime']) ? $attributes['datetime'] : '';
67
-        $event = isset($attributes['event']) ? $attributes['event'] : '';
68
-        if ($ticket !== '') {
69
-            $ticketId = $this->parseGUID($ticket);
70
-            $attributes['ticketId'] = $ticketId;
71
-        } elseif ($datetime !== '') {
72
-            $datetimeId = $this->parseGUID($datetime);
73
-            $attributes['datetimeId'] = $datetimeId;
74
-        } elseif ($event !== '') {
75
-            $eventId = $this->parseGUID($event);
76
-            $attributes['eventId'] = $eventId;
77
-        }
78
-        // remove unnecessary data so it doesn't get added to the query vars
79
-        unset($attributes['ticket'], $attributes['datetime'], $attributes['event']);
80
-        return $attributes;
81
-    }
56
+	/**
57
+	 * Get query parameters for model query.
58
+	 *
59
+	 * @param array $attributes
60
+	 * @return array
61
+	 */
62
+	private function parseGlobalIDs(array $attributes)
63
+	{
64
+		// if ticket ID is set, then that's all we need to run the query
65
+		$ticket = isset($attributes['ticket']) ? $attributes['ticket'] : '';
66
+		$datetime = isset($attributes['datetime']) ? $attributes['datetime'] : '';
67
+		$event = isset($attributes['event']) ? $attributes['event'] : '';
68
+		if ($ticket !== '') {
69
+			$ticketId = $this->parseGUID($ticket);
70
+			$attributes['ticketId'] = $ticketId;
71
+		} elseif ($datetime !== '') {
72
+			$datetimeId = $this->parseGUID($datetime);
73
+			$attributes['datetimeId'] = $datetimeId;
74
+		} elseif ($event !== '') {
75
+			$eventId = $this->parseGUID($event);
76
+			$attributes['eventId'] = $eventId;
77
+		}
78
+		// remove unnecessary data so it doesn't get added to the query vars
79
+		unset($attributes['ticket'], $attributes['datetime'], $attributes['event']);
80
+		return $attributes;
81
+	}
82 82
 
83 83
 
84
-    /**
85
-     * Get query parameters for model query.
86
-     *
87
-     * @param array $attributes
88
-     * @return array
89
-     */
90
-    private function getQueryParams(array $attributes)
91
-    {
92
-        return array(
93
-            0 => $this->getWhereQueryPart($attributes),
94
-            'default_where_conditions' => 'this_model_only',
95
-            'limit' => $attributes['limit'],
96
-            'group_by' => array('ATT_ID'),
97
-            'order_by' => $this->getOrderByQueryPart($attributes)
98
-        );
99
-    }
84
+	/**
85
+	 * Get query parameters for model query.
86
+	 *
87
+	 * @param array $attributes
88
+	 * @return array
89
+	 */
90
+	private function getQueryParams(array $attributes)
91
+	{
92
+		return array(
93
+			0 => $this->getWhereQueryPart($attributes),
94
+			'default_where_conditions' => 'this_model_only',
95
+			'limit' => $attributes['limit'],
96
+			'group_by' => array('ATT_ID'),
97
+			'order_by' => $this->getOrderByQueryPart($attributes)
98
+		);
99
+	}
100 100
 
101 101
 
102
-    /**
103
-     * Get where query part for query parameters for model query.
104
-     *
105
-     * @param array $attributes
106
-     * @return array
107
-     */
108
-    private function getWhereQueryPart(array $attributes)
109
-    {
110
-        $where = array();
111
-        if ($attributes['ticketId'] > 0) {
112
-            $where['Registration.TKT_ID'] = $attributes['ticketId'];
113
-        } elseif ($attributes['datetimeId'] > 0) {
114
-            $where['Registration.Ticket.Datetime.DTT_ID'] = $attributes['datetimeId'];
115
-        } else {
116
-            $where['Registration.EVT_ID'] = $attributes['eventId'];
117
-        }
118
-        $where['Registration.STS_ID'] = $attributes['status'];
119
-        return $where;
120
-    }
102
+	/**
103
+	 * Get where query part for query parameters for model query.
104
+	 *
105
+	 * @param array $attributes
106
+	 * @return array
107
+	 */
108
+	private function getWhereQueryPart(array $attributes)
109
+	{
110
+		$where = array();
111
+		if ($attributes['ticketId'] > 0) {
112
+			$where['Registration.TKT_ID'] = $attributes['ticketId'];
113
+		} elseif ($attributes['datetimeId'] > 0) {
114
+			$where['Registration.Ticket.Datetime.DTT_ID'] = $attributes['datetimeId'];
115
+		} else {
116
+			$where['Registration.EVT_ID'] = $attributes['eventId'];
117
+		}
118
+		$where['Registration.STS_ID'] = $attributes['status'];
119
+		return $where;
120
+	}
121 121
 
122 122
 
123
-    /**
124
-     * Get order by query part for query parameters for model query.
125
-     *
126
-     * @param array $attributes
127
-     * @return array
128
-     */
129
-    private function getOrderByQueryPart(array $attributes)
130
-    {
131
-        $order = $attributes['order'];
132
-        switch ($attributes['orderBy']) {
133
-            case 'id':
134
-                $order_by = array('ATT_ID' => $order);
135
-                break;
136
-            case 'lastNameOnly':
137
-                $order_by = array('ATT_lname' => $order);
138
-                break;
139
-            case 'firstNameOnly':
140
-                $order_by = array('ATT_fname' => $order);
141
-                break;
142
-            case 'firstThenLastName':
143
-                $order_by = array('ATT_fname' => $order, 'ATT_lname' => $order);
144
-                break;
145
-            default:
146
-                $order_by = array('ATT_lname' => $order, 'ATT_fname' => $order);
147
-                break;
148
-        }
149
-        return $order_by;
150
-    }
123
+	/**
124
+	 * Get order by query part for query parameters for model query.
125
+	 *
126
+	 * @param array $attributes
127
+	 * @return array
128
+	 */
129
+	private function getOrderByQueryPart(array $attributes)
130
+	{
131
+		$order = $attributes['order'];
132
+		switch ($attributes['orderBy']) {
133
+			case 'id':
134
+				$order_by = array('ATT_ID' => $order);
135
+				break;
136
+			case 'lastNameOnly':
137
+				$order_by = array('ATT_lname' => $order);
138
+				break;
139
+			case 'firstNameOnly':
140
+				$order_by = array('ATT_fname' => $order);
141
+				break;
142
+			case 'firstThenLastName':
143
+				$order_by = array('ATT_fname' => $order, 'ATT_lname' => $order);
144
+				break;
145
+			default:
146
+				$order_by = array('ATT_lname' => $order, 'ATT_fname' => $order);
147
+				break;
148
+		}
149
+		return $order_by;
150
+	}
151 151
 }
Please login to merge, or discard this patch.
core/services/blocks/BlockRenderer.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     private function setTemplateRootPath()
44 44
     {
45
-        $this->template_root_path = $this->domain->pluginPath() . 'ui/blocks/';
45
+        $this->template_root_path = $this->domain->pluginPath().'ui/blocks/';
46 46
     }
47 47
 
48 48
 
Please login to merge, or discard this patch.
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -15,57 +15,57 @@
 block discarded – undo
15 15
  */
16 16
 abstract class BlockRenderer implements BlockRendererInterface
17 17
 {
18
-    /**
19
-     * @var DomainInterface
20
-     */
21
-    protected $domain;
18
+	/**
19
+	 * @var DomainInterface
20
+	 */
21
+	protected $domain;
22 22
 
23
-    /**
24
-     * @var string
25
-     */
26
-    private $template_root_path;
23
+	/**
24
+	 * @var string
25
+	 */
26
+	private $template_root_path;
27 27
 
28 28
 
29
-    /**
30
-     * BlockRenderer constructor.
31
-     *
32
-     * @param DomainInterface $domain
33
-     */
34
-    public function __construct(DomainInterface $domain)
35
-    {
36
-        $this->domain = $domain;
37
-        $this->setTemplateRootPath();
38
-    }
29
+	/**
30
+	 * BlockRenderer constructor.
31
+	 *
32
+	 * @param DomainInterface $domain
33
+	 */
34
+	public function __construct(DomainInterface $domain)
35
+	{
36
+		$this->domain = $domain;
37
+		$this->setTemplateRootPath();
38
+	}
39 39
 
40 40
 
41
-    /**
42
-     * Sets the root path to the main block template.
43
-     */
44
-    private function setTemplateRootPath()
45
-    {
46
-        $this->template_root_path = $this->domain->pluginPath() . 'ui/blocks/';
47
-    }
41
+	/**
42
+	 * Sets the root path to the main block template.
43
+	 */
44
+	private function setTemplateRootPath()
45
+	{
46
+		$this->template_root_path = $this->domain->pluginPath() . 'ui/blocks/';
47
+	}
48 48
 
49 49
 
50
-    /**
51
-     * Exposes the root path for the main block template.
52
-     * @return string
53
-     */
54
-    public function templateRootPath()
55
-    {
56
-        return $this->template_root_path;
57
-    }
50
+	/**
51
+	 * Exposes the root path for the main block template.
52
+	 * @return string
53
+	 */
54
+	public function templateRootPath()
55
+	{
56
+		return $this->template_root_path;
57
+	}
58 58
 
59 59
 
60
-    /**
61
-     * converts GraphQL GUID into EE DB ID
62
-     *
63
-     * @param string $GUID
64
-     * @return int
65
-     */
66
-    protected function parseGUID($GUID)
67
-    {
68
-        $parts = Relay::fromGlobalId($GUID);
69
-        return ! empty($parts['id']) ? $parts['id'] : 0;
70
-    }
60
+	/**
61
+	 * converts GraphQL GUID into EE DB ID
62
+	 *
63
+	 * @param string $GUID
64
+	 * @return int
65
+	 */
66
+	protected function parseGUID($GUID)
67
+	{
68
+		$parts = Relay::fromGlobalId($GUID);
69
+		return ! empty($parts['id']) ? $parts['id'] : 0;
70
+	}
71 71
 }
Please login to merge, or discard this patch.
core/EE_Network_Config.core.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public static function instance()
40 40
     {
41 41
         // check if class object is instantiated, and instantiated properly
42
-        if (! self::$_instance instanceof EE_Network_Config) {
42
+        if ( ! self::$_instance instanceof EE_Network_Config) {
43 43
             self::$_instance = new self();
44 44
         }
45 45
         return self::$_instance;
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         // need to bust cache for comparing original if this is a multisite install
137 137
         if (is_multisite()) {
138 138
             global $current_site;
139
-            $cache_key = $current_site->id . ':ee_network_config';
139
+            $cache_key = $current_site->id.':ee_network_config';
140 140
             wp_cache_delete($cache_key, 'site-options');
141 141
         }
142 142
 
Please login to merge, or discard this patch.
Indentation   +197 added lines, -197 removed lines patch added patch discarded remove patch
@@ -13,180 +13,180 @@  discard block
 block discarded – undo
13 13
  */
14 14
 final class EE_Network_Config
15 15
 {
16
-    /**
17
-     * @var EE_Network_Config $_instance
18
-     */
19
-    private static $_instance;
20
-
21
-    /**
22
-     * addons can add their specific network_config objects to this property
23
-     *
24
-     * @var EE_Config_Base[] $addons
25
-     */
26
-    public $addons;
27
-
28
-    /**
29
-     * @var EE_Network_Core_Config $core
30
-     */
31
-    public $core;
32
-
33
-
34
-    /**
35
-     * @singleton method used to instantiate class object
36
-     * @return EE_Network_Config instance
37
-     */
38
-    public static function instance()
39
-    {
40
-        // check if class object is instantiated, and instantiated properly
41
-        if (! self::$_instance instanceof EE_Network_Config) {
42
-            self::$_instance = new self();
43
-        }
44
-        return self::$_instance;
45
-    }
46
-
47
-
48
-    /**
49
-     * class constructor
50
-     */
51
-    private function __construct()
52
-    {
53
-        do_action('AHEE__EE_Network_Config__construct__begin', $this);
54
-        // set defaults
55
-        $this->core = apply_filters('FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config());
56
-        $this->addons = array();
57
-
58
-        $this->_load_config();
59
-
60
-        // construct__end hook
61
-        do_action('AHEE__EE_Network_Config__construct__end', $this);
62
-    }
63
-
64
-
65
-    /**
66
-     * load EE Network Config options
67
-     *
68
-     * @return void
69
-     */
70
-    private function _load_config()
71
-    {
72
-        // load network config start hook
73
-        do_action('AHEE__EE_Network_Config___load_config__start', $this);
74
-        $config = $this->get_config();
75
-        foreach ($config as $config_prop => $settings) {
76
-            if ($config_prop === 'core' && ! $settings instanceof EE_Network_Core_Config) {
77
-                $core = new EE_Network_Core_Config();
78
-                foreach ($settings as $prop => $setting) {
79
-                    if (property_exists($core, $prop)) {
80
-                        $core->{$prop} = $setting;
81
-                    }
82
-                }
83
-                $settings = $core;
84
-                add_filter('FHEE__EE_Network_Config___load_config__update_network_config', '__return_true');
85
-            }
86
-            if (is_object($settings) && property_exists($this, $config_prop)) {
87
-                $this->{$config_prop} = apply_filters(
88
-                    'FHEE__EE_Network_Config___load_config__config_settings',
89
-                    $settings,
90
-                    $config_prop,
91
-                    $this
92
-                );
93
-                if (method_exists($settings, 'populate')) {
94
-                    $this->{$config_prop}->populate();
95
-                }
96
-                if (method_exists($settings, 'do_hooks')) {
97
-                    $this->{$config_prop}->do_hooks();
98
-                }
99
-            }
100
-        }
101
-        if (apply_filters('FHEE__EE_Network_Config___load_config__update_network_config', false)) {
102
-            $this->update_config();
103
-        }
104
-
105
-        // load network config end hook
106
-        do_action('AHEE__EE_Network_Config___load_config__end', $this);
107
-    }
108
-
109
-
110
-    /**
111
-     * get_config
112
-     *
113
-     * @return array of network config stuff
114
-     */
115
-    public function get_config()
116
-    {
117
-        // grab network configuration
118
-        $CFG = get_site_option('ee_network_config', array());
119
-        $CFG = apply_filters('FHEE__EE_Network_Config__get_config__CFG', $CFG);
120
-        return $CFG;
121
-    }
122
-
123
-
124
-    /**
125
-     * update_config
126
-     *
127
-     * @param bool $add_success
128
-     * @param bool $add_error
129
-     * @return bool success
130
-     */
131
-    public function update_config($add_success = false, $add_error = true)
132
-    {
133
-        do_action('AHEE__EE_Network_Config__update_config__begin', $this);
134
-
135
-        // need to bust cache for comparing original if this is a multisite install
136
-        if (is_multisite()) {
137
-            global $current_site;
138
-            $cache_key = $current_site->id . ':ee_network_config';
139
-            wp_cache_delete($cache_key, 'site-options');
140
-        }
141
-
142
-        // we have to compare existing saved config with config in memory because if there is no difference that means
143
-        // that the method executed fine but there just was no update.  WordPress doesn't distinguish between false because
144
-        // there were 0 records updated because of no change vs false because some error produced problems with the update.
145
-        $original = get_site_option('ee_network_config');
146
-
147
-        if ($original == $this) {
148
-            return true;
149
-        }
150
-        // update
151
-        $saved = update_site_option('ee_network_config', $this);
152
-
153
-        do_action('AHEE__EE_Network_Config__update_config__end', $this, $saved);
154
-        // if config remains the same or was updated successfully
155
-        if ($saved) {
156
-            if ($add_success) {
157
-                $msg = is_multisite() ? esc_html__(
158
-                    'The Event Espresso Network Configuration Settings have been successfully updated.',
159
-                    'event_espresso'
160
-                ) : esc_html__('Extra Event Espresso Configuration settings were successfully updated.', 'event_espresso');
161
-                EE_Error::add_success($msg);
162
-            }
163
-            return true;
164
-        }
165
-        if ($add_error) {
166
-            $msg = is_multisite() ? esc_html__(
167
-                'The Event Espresso Network Configuration Settings were not updated.',
168
-                'event_espresso'
169
-            ) : esc_html__('Extra Event Espresso Network Configuration settings were not updated.', 'event_espresso');
170
-            EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
171
-        }
172
-        return false;
173
-    }
174
-
175
-
176
-    /**
177
-     * __sleep
178
-     *
179
-     * @return array
180
-     */
181
-    public function __sleep()
182
-    {
183
-        return apply_filters(
184
-            'FHEE__EE_Network_Config__sleep',
185
-            array(
186
-                'core',
187
-            )
188
-        );
189
-    }
16
+	/**
17
+	 * @var EE_Network_Config $_instance
18
+	 */
19
+	private static $_instance;
20
+
21
+	/**
22
+	 * addons can add their specific network_config objects to this property
23
+	 *
24
+	 * @var EE_Config_Base[] $addons
25
+	 */
26
+	public $addons;
27
+
28
+	/**
29
+	 * @var EE_Network_Core_Config $core
30
+	 */
31
+	public $core;
32
+
33
+
34
+	/**
35
+	 * @singleton method used to instantiate class object
36
+	 * @return EE_Network_Config instance
37
+	 */
38
+	public static function instance()
39
+	{
40
+		// check if class object is instantiated, and instantiated properly
41
+		if (! self::$_instance instanceof EE_Network_Config) {
42
+			self::$_instance = new self();
43
+		}
44
+		return self::$_instance;
45
+	}
46
+
47
+
48
+	/**
49
+	 * class constructor
50
+	 */
51
+	private function __construct()
52
+	{
53
+		do_action('AHEE__EE_Network_Config__construct__begin', $this);
54
+		// set defaults
55
+		$this->core = apply_filters('FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config());
56
+		$this->addons = array();
57
+
58
+		$this->_load_config();
59
+
60
+		// construct__end hook
61
+		do_action('AHEE__EE_Network_Config__construct__end', $this);
62
+	}
63
+
64
+
65
+	/**
66
+	 * load EE Network Config options
67
+	 *
68
+	 * @return void
69
+	 */
70
+	private function _load_config()
71
+	{
72
+		// load network config start hook
73
+		do_action('AHEE__EE_Network_Config___load_config__start', $this);
74
+		$config = $this->get_config();
75
+		foreach ($config as $config_prop => $settings) {
76
+			if ($config_prop === 'core' && ! $settings instanceof EE_Network_Core_Config) {
77
+				$core = new EE_Network_Core_Config();
78
+				foreach ($settings as $prop => $setting) {
79
+					if (property_exists($core, $prop)) {
80
+						$core->{$prop} = $setting;
81
+					}
82
+				}
83
+				$settings = $core;
84
+				add_filter('FHEE__EE_Network_Config___load_config__update_network_config', '__return_true');
85
+			}
86
+			if (is_object($settings) && property_exists($this, $config_prop)) {
87
+				$this->{$config_prop} = apply_filters(
88
+					'FHEE__EE_Network_Config___load_config__config_settings',
89
+					$settings,
90
+					$config_prop,
91
+					$this
92
+				);
93
+				if (method_exists($settings, 'populate')) {
94
+					$this->{$config_prop}->populate();
95
+				}
96
+				if (method_exists($settings, 'do_hooks')) {
97
+					$this->{$config_prop}->do_hooks();
98
+				}
99
+			}
100
+		}
101
+		if (apply_filters('FHEE__EE_Network_Config___load_config__update_network_config', false)) {
102
+			$this->update_config();
103
+		}
104
+
105
+		// load network config end hook
106
+		do_action('AHEE__EE_Network_Config___load_config__end', $this);
107
+	}
108
+
109
+
110
+	/**
111
+	 * get_config
112
+	 *
113
+	 * @return array of network config stuff
114
+	 */
115
+	public function get_config()
116
+	{
117
+		// grab network configuration
118
+		$CFG = get_site_option('ee_network_config', array());
119
+		$CFG = apply_filters('FHEE__EE_Network_Config__get_config__CFG', $CFG);
120
+		return $CFG;
121
+	}
122
+
123
+
124
+	/**
125
+	 * update_config
126
+	 *
127
+	 * @param bool $add_success
128
+	 * @param bool $add_error
129
+	 * @return bool success
130
+	 */
131
+	public function update_config($add_success = false, $add_error = true)
132
+	{
133
+		do_action('AHEE__EE_Network_Config__update_config__begin', $this);
134
+
135
+		// need to bust cache for comparing original if this is a multisite install
136
+		if (is_multisite()) {
137
+			global $current_site;
138
+			$cache_key = $current_site->id . ':ee_network_config';
139
+			wp_cache_delete($cache_key, 'site-options');
140
+		}
141
+
142
+		// we have to compare existing saved config with config in memory because if there is no difference that means
143
+		// that the method executed fine but there just was no update.  WordPress doesn't distinguish between false because
144
+		// there were 0 records updated because of no change vs false because some error produced problems with the update.
145
+		$original = get_site_option('ee_network_config');
146
+
147
+		if ($original == $this) {
148
+			return true;
149
+		}
150
+		// update
151
+		$saved = update_site_option('ee_network_config', $this);
152
+
153
+		do_action('AHEE__EE_Network_Config__update_config__end', $this, $saved);
154
+		// if config remains the same or was updated successfully
155
+		if ($saved) {
156
+			if ($add_success) {
157
+				$msg = is_multisite() ? esc_html__(
158
+					'The Event Espresso Network Configuration Settings have been successfully updated.',
159
+					'event_espresso'
160
+				) : esc_html__('Extra Event Espresso Configuration settings were successfully updated.', 'event_espresso');
161
+				EE_Error::add_success($msg);
162
+			}
163
+			return true;
164
+		}
165
+		if ($add_error) {
166
+			$msg = is_multisite() ? esc_html__(
167
+				'The Event Espresso Network Configuration Settings were not updated.',
168
+				'event_espresso'
169
+			) : esc_html__('Extra Event Espresso Network Configuration settings were not updated.', 'event_espresso');
170
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
171
+		}
172
+		return false;
173
+	}
174
+
175
+
176
+	/**
177
+	 * __sleep
178
+	 *
179
+	 * @return array
180
+	 */
181
+	public function __sleep()
182
+	{
183
+		return apply_filters(
184
+			'FHEE__EE_Network_Config__sleep',
185
+			array(
186
+				'core',
187
+			)
188
+		);
189
+	}
190 190
 }
191 191
 
192 192
 
@@ -195,27 +195,27 @@  discard block
 block discarded – undo
195 195
  */
196 196
 class EE_Network_Core_Config extends EE_Config_Base
197 197
 {
198
-    /**
199
-     * PUE site license key
200
-     *
201
-     * @var string $site_license_key
202
-     */
203
-    public $site_license_key;
204
-
205
-    /**
206
-     * This indicates whether messages system processing should be done on the same request or not.
207
-     *
208
-     * @var boolean $do_messages_on_same_request
209
-     */
210
-    public $do_messages_on_same_request;
211
-
212
-
213
-    /**
214
-     * EE_Network_Core_Config constructor.
215
-     */
216
-    public function __construct()
217
-    {
218
-        $this->site_license_key = '';
219
-        $this->do_messages_on_same_request = false;
220
-    }
198
+	/**
199
+	 * PUE site license key
200
+	 *
201
+	 * @var string $site_license_key
202
+	 */
203
+	public $site_license_key;
204
+
205
+	/**
206
+	 * This indicates whether messages system processing should be done on the same request or not.
207
+	 *
208
+	 * @var boolean $do_messages_on_same_request
209
+	 */
210
+	public $do_messages_on_same_request;
211
+
212
+
213
+	/**
214
+	 * EE_Network_Core_Config constructor.
215
+	 */
216
+	public function __construct()
217
+	{
218
+		$this->site_license_key = '';
219
+		$this->do_messages_on_same_request = false;
220
+	}
221 221
 }
Please login to merge, or discard this patch.
core/services/assets/BlockAssetManagerInterface.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -12,42 +12,42 @@
 block discarded – undo
12 12
  */
13 13
 interface BlockAssetManagerInterface
14 14
 {
15
-    /**
16
-     * @since 4.9.71.p
17
-     * @return string
18
-     */
19
-    public function assetNamespace();
20
-
21
-    /**
22
-     * @since 4.9.71.p
23
-     * @return void
24
-     */
25
-    public function setAssetHandles();
26
-
27
-    /**
28
-     * @since 4.9.71.p
29
-     * @return string
30
-     */
31
-    public function getEditorScriptHandle();
32
-
33
-
34
-    /**
35
-     * @since 4.9.71.p
36
-     * @return string
37
-     */
38
-    public function getEditorStyleHandle();
39
-
40
-
41
-    /**
42
-     * @since 4.9.71.p
43
-     * @return string
44
-     */
45
-    public function getScriptHandle();
46
-
47
-
48
-    /**
49
-     * @since 4.9.71.p
50
-     * @return string
51
-     */
52
-    public function getStyleHandle();
15
+	/**
16
+	 * @since 4.9.71.p
17
+	 * @return string
18
+	 */
19
+	public function assetNamespace();
20
+
21
+	/**
22
+	 * @since 4.9.71.p
23
+	 * @return void
24
+	 */
25
+	public function setAssetHandles();
26
+
27
+	/**
28
+	 * @since 4.9.71.p
29
+	 * @return string
30
+	 */
31
+	public function getEditorScriptHandle();
32
+
33
+
34
+	/**
35
+	 * @since 4.9.71.p
36
+	 * @return string
37
+	 */
38
+	public function getEditorStyleHandle();
39
+
40
+
41
+	/**
42
+	 * @since 4.9.71.p
43
+	 * @return string
44
+	 */
45
+	public function getScriptHandle();
46
+
47
+
48
+	/**
49
+	 * @since 4.9.71.p
50
+	 * @return string
51
+	 */
52
+	public function getStyleHandle();
53 53
 }
54 54
\ No newline at end of file
Please login to merge, or discard this patch.
core/services/dependencies/DependencyResolverInterface.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -15,16 +15,16 @@
 block discarded – undo
15 15
  */
16 16
 interface DependencyResolverInterface
17 17
 {
18
-    /**
19
-     * Used to configure and/or setup any aliases or recursions required by the DependencyResolver
20
-     *
21
-     * @since 4.9.71.p
22
-     */
23
-    public function initialize();
18
+	/**
19
+	 * Used to configure and/or setup any aliases or recursions required by the DependencyResolver
20
+	 *
21
+	 * @since 4.9.71.p
22
+	 */
23
+	public function initialize();
24 24
 
25
-    /**
26
-     * @param string $fqcn Fully Qualified Class Name
27
-     * @since 4.9.71.p
28
-     */
29
-    public function resolveDependenciesForClass($fqcn);
25
+	/**
26
+	 * @param string $fqcn Fully Qualified Class Name
27
+	 * @since 4.9.71.p
28
+	 */
29
+	public function resolveDependenciesForClass($fqcn);
30 30
 }
Please login to merge, or discard this patch.
core/libraries/rest_api/RestIncomingQueryParamContext.php 1 patch
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -18,61 +18,61 @@
 block discarded – undo
18 18
  */
19 19
 class RestIncomingQueryParamContext
20 20
 {
21
-    /**
22
-     * @var EEM_Base
23
-     */
24
-    private $model;
25
-    /**
26
-     * @var string
27
-     */
28
-    private $requested_version;
29
-    /**
30
-     * @var boolean
31
-     */
32
-    private $writing;
21
+	/**
22
+	 * @var EEM_Base
23
+	 */
24
+	private $model;
25
+	/**
26
+	 * @var string
27
+	 */
28
+	private $requested_version;
29
+	/**
30
+	 * @var boolean
31
+	 */
32
+	private $writing;
33 33
 
34
-    /**
35
-     * RestIncomingQueryParamContext constructor.
36
-     * @param EEM_Base $model
37
-     * @param string $requested_version
38
-     * @param boolean $writing
39
-     */
40
-    public function __construct(EEM_Base $model, $requested_version, $writing)
41
-    {
42
-        $this->model = $model;
43
-        $this->requested_version = (string) $requested_version;
44
-        $this->writing = filter_var($writing, FILTER_VALIDATE_BOOLEAN);
45
-    }
34
+	/**
35
+	 * RestIncomingQueryParamContext constructor.
36
+	 * @param EEM_Base $model
37
+	 * @param string $requested_version
38
+	 * @param boolean $writing
39
+	 */
40
+	public function __construct(EEM_Base $model, $requested_version, $writing)
41
+	{
42
+		$this->model = $model;
43
+		$this->requested_version = (string) $requested_version;
44
+		$this->writing = filter_var($writing, FILTER_VALIDATE_BOOLEAN);
45
+	}
46 46
 
47
-    /**
48
-     * Gets the model currently being requested, eg class EEM_Event
49
-     * @since 4.9.72.p
50
-     * @return EEM_Base
51
-     */
52
-    public function getModel()
53
-    {
54
-        return $this->model;
55
-    }
47
+	/**
48
+	 * Gets the model currently being requested, eg class EEM_Event
49
+	 * @since 4.9.72.p
50
+	 * @return EEM_Base
51
+	 */
52
+	public function getModel()
53
+	{
54
+		return $this->model;
55
+	}
56 56
 
57
-    /**
58
-     * Gets the version being requested, eg 4.8.36
59
-     * @since 4.9.72.p
60
-     * @return string
61
-     */
62
-    public function getRequestedVersion()
63
-    {
64
-        return $this->requested_version;
65
-    }
57
+	/**
58
+	 * Gets the version being requested, eg 4.8.36
59
+	 * @since 4.9.72.p
60
+	 * @return string
61
+	 */
62
+	public function getRequestedVersion()
63
+	{
64
+		return $this->requested_version;
65
+	}
66 66
 
67
-    /**
68
-     * Gets if the current request is for a writing request or just simple read
69
-     * @since 4.9.72.p
70
-     * @return bool
71
-     */
72
-    public function isWriting()
73
-    {
74
-        return $this->writing;
75
-    }
67
+	/**
68
+	 * Gets if the current request is for a writing request or just simple read
69
+	 * @since 4.9.72.p
70
+	 * @return bool
71
+	 */
72
+	public function isWriting()
73
+	{
74
+		return $this->writing;
75
+	}
76 76
 }
77 77
 // End of file RestIncomingQueryParamContext.php
78 78
 // Location: EventEspresso\core\libraries\rest_api/RestIncomingQueryParamContext.php
Please login to merge, or discard this patch.
core/wordpress-shims.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * Note: this file should only be required right before calling the function the shim is for.  This is to ensure that
5 5
  * it does not override any existing definition of the function in WP.
6 6
  */
7
-if (! function_exists('get_preview_post_link')) {
7
+if ( ! function_exists('get_preview_post_link')) {
8 8
     /**
9 9
      * Function was added in WordPress 4.4.0
10 10
      *
@@ -16,13 +16,13 @@  discard block
 block discarded – undo
16 16
     function get_preview_post_link($post = null, $query_args = array(), $preview_link = '')
17 17
     {
18 18
         $post = get_post($post);
19
-        if (! $post) {
19
+        if ( ! $post) {
20 20
             return '';
21 21
         }
22 22
 
23 23
         $post_type_object = get_post_type_object($post->post_type);
24 24
         if (is_post_type_viewable($post_type_object)) {
25
-            if (! $preview_link) {
25
+            if ( ! $preview_link) {
26 26
                 $preview_link = set_url_scheme(get_permalink($post));
27 27
             }
28 28
 
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
     }
43 43
 }
44 44
 
45
-if (! function_exists('is_post_type_viewable')) {
45
+if ( ! function_exists('is_post_type_viewable')) {
46 46
     function is_post_type_viewable($post_type)
47 47
     {
48 48
         if (is_scalar($post_type)) {
49 49
             $post_type = get_post_type_object($post_type);
50
-            if (! $post_type) {
50
+            if ( ! $post_type) {
51 51
                 return false;
52 52
             }
53 53
         }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 }
58 58
 
59
-if (! function_exists('wp_scripts_get_suffix')) {
59
+if ( ! function_exists('wp_scripts_get_suffix')) {
60 60
     /**
61 61
      * Returns the suffix that can be used for the scripts.
62 62
      *
@@ -73,11 +73,11 @@  discard block
 block discarded – undo
73 73
         static $suffixes;
74 74
 
75 75
         if ($suffixes === null) {
76
-            include(ABSPATH . WPINC . '/version.php'); // include an unmodified $wp_version
76
+            include(ABSPATH.WPINC.'/version.php'); // include an unmodified $wp_version
77 77
 
78 78
             $develop_src = false !== strpos($wp_version, '-src');
79 79
 
80
-            if (! defined('SCRIPT_DEBUG')) {
80
+            if ( ! defined('SCRIPT_DEBUG')) {
81 81
                 define('SCRIPT_DEBUG', $develop_src);
82 82
             }
83 83
             $suffix = SCRIPT_DEBUG ? '' : '.min';
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     }
95 95
 }
96 96
 
97
-if (! function_exists('get_user_locale')) {
97
+if ( ! function_exists('get_user_locale')) {
98 98
     /**
99 99
      * Shim for get_user_locale that was added in WP 4.7.0
100 100
      *
Please login to merge, or discard this patch.
Indentation   +82 added lines, -82 removed lines patch added patch discarded remove patch
@@ -5,105 +5,105 @@
 block discarded – undo
5 5
  * it does not override any existing definition of the function in WP.
6 6
  */
7 7
 if (! function_exists('get_preview_post_link')) {
8
-    /**
9
-     * Function was added in WordPress 4.4.0
10
-     *
11
-     * @param null   $post
12
-     * @param array  $query_args
13
-     * @param string $preview_link
14
-     * @return mixed
15
-     */
16
-    function get_preview_post_link($post = null, $query_args = array(), $preview_link = '')
17
-    {
18
-        $post = get_post($post);
19
-        if (! $post) {
20
-            return '';
21
-        }
8
+	/**
9
+	 * Function was added in WordPress 4.4.0
10
+	 *
11
+	 * @param null   $post
12
+	 * @param array  $query_args
13
+	 * @param string $preview_link
14
+	 * @return mixed
15
+	 */
16
+	function get_preview_post_link($post = null, $query_args = array(), $preview_link = '')
17
+	{
18
+		$post = get_post($post);
19
+		if (! $post) {
20
+			return '';
21
+		}
22 22
 
23
-        $post_type_object = get_post_type_object($post->post_type);
24
-        if (is_post_type_viewable($post_type_object)) {
25
-            if (! $preview_link) {
26
-                $preview_link = set_url_scheme(get_permalink($post));
27
-            }
23
+		$post_type_object = get_post_type_object($post->post_type);
24
+		if (is_post_type_viewable($post_type_object)) {
25
+			if (! $preview_link) {
26
+				$preview_link = set_url_scheme(get_permalink($post));
27
+			}
28 28
 
29
-            $query_args['preview'] = 'true';
30
-            $preview_link = add_query_arg($query_args, $preview_link);
31
-        }
29
+			$query_args['preview'] = 'true';
30
+			$preview_link = add_query_arg($query_args, $preview_link);
31
+		}
32 32
 
33
-        /**
34
-         * Filters the URL used for a post preview.
35
-         *
36
-         * @since 2.0.5
37
-         * @since 4.0.0 Added the `$post` parameter.
38
-         * @param string  $preview_link URL used for the post preview.
39
-         * @param WP_Post $post         Post object.
40
-         */
41
-        return apply_filters('preview_post_link', $preview_link, $post);
42
-    }
33
+		/**
34
+		 * Filters the URL used for a post preview.
35
+		 *
36
+		 * @since 2.0.5
37
+		 * @since 4.0.0 Added the `$post` parameter.
38
+		 * @param string  $preview_link URL used for the post preview.
39
+		 * @param WP_Post $post         Post object.
40
+		 */
41
+		return apply_filters('preview_post_link', $preview_link, $post);
42
+	}
43 43
 }
44 44
 
45 45
 if (! function_exists('is_post_type_viewable')) {
46
-    function is_post_type_viewable($post_type)
47
-    {
48
-        if (is_scalar($post_type)) {
49
-            $post_type = get_post_type_object($post_type);
50
-            if (! $post_type) {
51
-                return false;
52
-            }
53
-        }
46
+	function is_post_type_viewable($post_type)
47
+	{
48
+		if (is_scalar($post_type)) {
49
+			$post_type = get_post_type_object($post_type);
50
+			if (! $post_type) {
51
+				return false;
52
+			}
53
+		}
54 54
 
55
-        return $post_type->publicly_queryable || ($post_type->_builtin && $post_type->public);
56
-    }
55
+		return $post_type->publicly_queryable || ($post_type->_builtin && $post_type->public);
56
+	}
57 57
 }
58 58
 
59 59
 if (! function_exists('wp_scripts_get_suffix')) {
60
-    /**
61
-     * Returns the suffix that can be used for the scripts.
62
-     *
63
-     * There are two suffix types, the normal one and the dev suffix.
64
-     *
65
-     * @since 5.0.0
66
-     *
67
-     * @param string $type The type of suffix to retrieve.
68
-     * @return string The script suffix.
69
-     */
70
-    function wp_scripts_get_suffix($type = '')
71
-    {
72
-        global $wp_version;
73
-        static $suffixes;
60
+	/**
61
+	 * Returns the suffix that can be used for the scripts.
62
+	 *
63
+	 * There are two suffix types, the normal one and the dev suffix.
64
+	 *
65
+	 * @since 5.0.0
66
+	 *
67
+	 * @param string $type The type of suffix to retrieve.
68
+	 * @return string The script suffix.
69
+	 */
70
+	function wp_scripts_get_suffix($type = '')
71
+	{
72
+		global $wp_version;
73
+		static $suffixes;
74 74
 
75
-        if ($suffixes === null) {
76
-            include(ABSPATH . WPINC . '/version.php'); // include an unmodified $wp_version
75
+		if ($suffixes === null) {
76
+			include(ABSPATH . WPINC . '/version.php'); // include an unmodified $wp_version
77 77
 
78
-            $develop_src = false !== strpos($wp_version, '-src');
78
+			$develop_src = false !== strpos($wp_version, '-src');
79 79
 
80
-            if (! defined('SCRIPT_DEBUG')) {
81
-                define('SCRIPT_DEBUG', $develop_src);
82
-            }
83
-            $suffix = SCRIPT_DEBUG ? '' : '.min';
84
-            $dev_suffix = $develop_src ? '' : '.min';
80
+			if (! defined('SCRIPT_DEBUG')) {
81
+				define('SCRIPT_DEBUG', $develop_src);
82
+			}
83
+			$suffix = SCRIPT_DEBUG ? '' : '.min';
84
+			$dev_suffix = $develop_src ? '' : '.min';
85 85
 
86
-            $suffixes = array('suffix' => $suffix, 'dev_suffix' => $dev_suffix);
87
-        }
86
+			$suffixes = array('suffix' => $suffix, 'dev_suffix' => $dev_suffix);
87
+		}
88 88
 
89
-        if ($type === 'dev') {
90
-            return $suffixes['dev_suffix'];
91
-        }
89
+		if ($type === 'dev') {
90
+			return $suffixes['dev_suffix'];
91
+		}
92 92
 
93
-        return $suffixes['suffix'];
94
-    }
93
+		return $suffixes['suffix'];
94
+	}
95 95
 }
96 96
 
97 97
 if (! function_exists('get_user_locale')) {
98
-    /**
99
-     * Shim for get_user_locale that was added in WP 4.7.0
100
-     *
101
-     * @param int $user_id
102
-     * @return string
103
-     * @since 4.9.73.p
104
-     */
105
-    function get_user_locale($user_id = 0)
106
-    {
107
-        return get_locale();
108
-    }
98
+	/**
99
+	 * Shim for get_user_locale that was added in WP 4.7.0
100
+	 *
101
+	 * @param int $user_id
102
+	 * @return string
103
+	 * @since 4.9.73.p
104
+	 */
105
+	function get_user_locale($user_id = 0)
106
+	{
107
+		return get_locale();
108
+	}
109 109
 }
110 110
\ No newline at end of file
Please login to merge, or discard this patch.