Issues (2873)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

classes/PodsView.php (22 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/**
4
 * @package Pods
5
 */
6
class PodsView {
0 ignored issues
show
Since you have declared the constructor as private, maybe you should also declare the class as final.
Loading history...
7
8
	/**
9
	 * @var array $cache_modes Array of available cache modes
10
	 */
11
	public static $cache_modes = array( 'none', 'transient', 'site-transient', 'cache', 'option-cache' );
12
13
	/**
14
	 * @return \PodsView
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
15
	 */
16
	private function __construct() {
17
18
		// !nope
19
	}
20
21
	/**
22
	 * @static
23
	 *
24
	 * @param string         $view       Path of the view file
25
	 * @param array|null     $data       (optional) Data to pass on to the template
26
	 * @param bool|int|array $expires    (optional) Time in seconds for the cache to expire, if 0 no expiration.
27
	 * @param string         $cache_mode (optional) Decides the caching method to use for the view.
28
	 *
29
	 * @return bool|mixed|null|string|void
30
	 *
31
	 * @since 2.0
32
	 */
33
	public static function view( $view, $data = null, $expires = false, $cache_mode = 'cache' ) {
34
35
		/**
36
		 * Override the value of $view. For example, using Pods AJAX View.
37
		 *
38
		 * To use, set first param to true. If that param in not null, this method returns its value.
39
		 *
40
		 * @param null|bool      If          not set to null, this filter overrides the rest of the method.
41
		 * @param string         $view       Path of the view file
42
		 * @param array|null     $data       (optional) Data to pass on to the template
43
		 * @param bool|int|array $expires    (optional) Time in seconds for the cache to expire, if 0 no expiration.
44
		 * @param string         $cache_mode (optional) Decides the caching method to use for the view.
45
		 *
46
		 * @since 2.4.1
47
		 */
48
		$filter_check = apply_filters( 'pods_view_alt_view', null, $view, $data, $expires, $cache_mode );
49
50
		if ( null !== $filter_check ) {
51
			return $filter_check;
52
		}
53
54
		// Advanced $expires handling
55
		$expires = self::expires( $expires, $cache_mode );
56
57
		if ( ! in_array( $cache_mode, self::$cache_modes ) ) {
58
			$cache_mode = 'cache';
59
		}
60
61
		// Support my-view.php?custom-key=X#hash keying for cache
62
		$view_id = '';
63
64
		if ( ! is_array( $view ) ) {
65
			$view_q = explode( '?', $view );
66
67
			if ( 1 < count( $view_q ) ) {
68
				$view_id = '?' . $view_q[1];
69
70
				$view = $view_q[0];
71
			}
72
73
			$view_h = explode( '#', $view );
74
75
			if ( 1 < count( $view_h ) ) {
76
				$view_id .= '#' . $view_h[1];
77
78
				$view = $view_h[0];
79
			}
80
81
			// Support dynamic tags!
82
			$view_id = pods_evaluate_tags( $view_id );
83
		}
84
85
		$view = apply_filters( 'pods_view_inc', $view, $data, $expires, $cache_mode );
86
87
		$view_key = $view;
88
89
		if ( is_array( $view_key ) ) {
90
			$view_key = implode( '-', $view_key ) . '.php';
91
		}
92
93
		if ( false !== realpath( $view_key ) ) {
94
			$view_key = realpath( $view_key );
95
		}
96
97
		$pods_ui_dir         = realpath( PODS_DIR . 'ui/' );
98
		$pods_components_dir = realpath( PODS_DIR . 'components/' );
99
		$abspath_dir         = realpath( ABSPATH );
100
101
		$cache_key = pods_str_replace( $abspath_dir, '/', $view_key, 1 );
102
103
		$output = false;
104
105
		$caching = false;
106
107
		if ( false !== $expires && false === strpos( $view_key, $pods_ui_dir ) && false === strpos( $view_key, $pods_components_dir ) ) {
108
			$caching = true;
109
		}
110
111
		if ( $caching ) {
112
			$output = self::get( 'pods-view-' . $cache_key . $view_id, $cache_mode, 'pods_view' );
113
		}
114
115
		if ( false === $output || null === $output ) {
116
			$output = self::get_template_part( $view, $data );
117
		}
118
119
		if ( false !== $output && $caching ) {
120
			self::set( 'pods-view-' . $cache_key . $view_id, $output, $expires, $cache_mode, 'pods_view' );
121
		}
122
123
		$output = apply_filters( 'pods_view_output_' . $cache_key, $output, $view, $data, $expires, $cache_mode );
124
		$output = apply_filters( 'pods_view_output', $output, $view, $data, $expires, $cache_mode );
125
126
		return $output;
127
	}
128
129
	/**
130
	 * Get the cache key, salted with current Pods version, peppered with md5 if too long
131
	 *
132
	 * @param string $key
133
	 * @param string $group_key
134
	 *
135
	 * @return string
136
	 *
137
	 * @since 2.6.2
138
	 */
139
	public static function get_key( $key, $group_key = '' ) {
140
141
		// Add some salt
142
		$key .= '-' . PODS_VERSION;
143
144
		// Patch for limitations in DB
145
		if ( 44 < strlen( $group_key . $key ) ) {
146
			$key = md5( $key );
147
		}
148
149
		return $key;
150
151
	}
152
153
	/**
154
	 * @static
155
	 *
156
	 * @param string $key        Key for the cache
157
	 * @param string $cache_mode (optional) Decides the caching method to use for the view.
158
	 * @param string $group      (optional) Set the group of the value.
159
	 * @param string $callback   (optional) Callback function to run to set the value if not cached.
0 ignored issues
show
Should the type for parameter $callback not be string|null?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
160
	 *
161
	 * @return bool|mixed|null|void
162
	 *
163
	 * @since 2.0
164
	 */
165
	public static function get( $key, $cache_mode = 'cache', $group = '', $callback = null ) {
166
167
		$object_cache = false;
168
169
		if ( isset( $GLOBALS['wp_object_cache'] ) && is_object( $GLOBALS['wp_object_cache'] ) ) {
170
			$object_cache = true;
171
		}
172
173
		if ( ! in_array( $cache_mode, self::$cache_modes ) ) {
174
			$cache_mode = 'cache';
175
		}
176
177
		$group_key = 'pods_';
178
179
		if ( ! empty( $group ) ) {
180
			$group_key = $group . '_';
181
		}
182
183
		$original_key = $key;
184
185
		// Get proper cache key
186
		$key = self::get_key( $key, $group_key );
187
188
		$value = null;
189
190
		$called = false;
191
192
		$pods_nocache = pods_var_raw( 'pods_nocache' );
193
		$nocache      = array();
194
195
		if ( pods_is_admin() && null !== $pods_nocache ) {
196
			if ( 1 < strlen( $pods_nocache ) ) {
197
				$nocache = explode( ',', $pods_nocache );
198
			} else {
199
				$nocache = self::$cache_modes;
200
			}
201
		}
202
203
		if ( apply_filters( 'pods_view_cache_alt_get', false, $cache_mode, $group_key . $key, $original_key, $group ) ) {
204
			$value = apply_filters( 'pods_view_cache_alt_get_value', $value, $cache_mode, $group_key . $key, $original_key, $group );
205
		} elseif ( 'transient' === $cache_mode && ! in_array( $cache_mode, $nocache ) ) {
206
			$value = get_transient( $group_key . $key );
207
		} elseif ( 'site-transient' === $cache_mode && ! in_array( $cache_mode, $nocache ) ) {
208
			$value = get_site_transient( $group_key . $key );
209
		} elseif ( 'cache' === $cache_mode && $object_cache && ! in_array( $cache_mode, $nocache ) ) {
210
			$value = wp_cache_get( $key, ( empty( $group ) ? 'pods_view' : $group ) );
211
		} elseif ( 'option-cache' === $cache_mode && ! in_array( $cache_mode, $nocache ) ) {
212
			global $_wp_using_ext_object_cache;
0 ignored issues
show
Compatibility Best Practice introduced by
Use of global functionality is not recommended; it makes your code harder to test, and less reusable.

Instead of relying on global state, we recommend one of these alternatives:

1. Pass all data via parameters

function myFunction($a, $b) {
    // Do something
}

2. Create a class that maintains your state

class MyClass {
    private $a;
    private $b;

    public function __construct($a, $b) {
        $this->a = $a;
        $this->b = $b;
    }

    public function myFunction() {
        // Do something
    }
}
Loading history...
Comprehensibility Naming introduced by
The variable name $_wp_using_ext_object_cache exceeds the maximum configured length of 20.

Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.

Loading history...
213
214
			$pre = apply_filters( 'pre_transient_' . $key, false );
215
216
			if ( false !== $pre ) {
217
				$value = $pre;
218
			} elseif ( $_wp_using_ext_object_cache ) {
219
				$value   = wp_cache_get( $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
220
				$timeout = wp_cache_get( '_timeout_' . $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
221
222
				if ( ! empty( $timeout ) && $timeout < time() ) {
223
					if ( is_callable( $callback ) ) {
224
						// Callback function should do it's own set/update for cache
225
						$callback_value = call_user_func( $callback, $original_key, $group, $cache_mode );
226
227
						if ( null !== $callback_value && false !== $callback_value ) {
228
							$value = $callback_value;
229
						}
230
231
						$called = true;
232
					} else {
233
						$value = false;
234
235
						wp_cache_delete( $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
236
						wp_cache_delete( '_timeout_' . $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
237
					}
238
				}
239
			} else {
240
				$transient_option  = '_pods_option_' . $key;
241
				$transient_timeout = '_pods_option_timeout_' . $key;
242
243
				$value   = get_option( $transient_option );
244
				$timeout = get_option( $transient_timeout );
245
246
				if ( ! empty( $timeout ) && $timeout < time() ) {
247
					if ( is_callable( $callback ) ) {
248
						// Callback function should do it's own set/update for cache
249
						$callback_value = call_user_func( $callback, $original_key, $group, $cache_mode );
250
251
						if ( null !== $callback_value && false !== $callback_value ) {
252
							$value = $callback_value;
253
						}
254
255
						$called = true;
256
					} else {
257
						$value = false;
258
259
						delete_option( $transient_option );
260
						delete_option( $transient_timeout );
261
					}
262
				}
263
			}//end if
264
265
			if ( false !== $value ) {
266
				$value = apply_filters( 'transient_' . $key, $value );
267
			}
268
		} else {
269
			$value = false;
270
		}//end if
271
272
		if ( false === $value && is_callable( $callback ) && ! $called ) {
273
			// Callback function should do it's own set/update for cache
274
			$callback_value = call_user_func( $callback, $original_key, $group, $cache_mode );
275
276
			if ( null !== $callback_value && false !== $callback_value ) {
277
				$value = $callback_value;
278
			}
279
		}
280
281
		$value = apply_filters( 'pods_view_get_' . $cache_mode, $value, $original_key, $group );
282
283
		return $value;
284
	}
285
286
	/**
287
	 * @static
288
	 *
289
	 * Set a cached value
290
	 *
291
	 * @param string $key        Key for the cache
292
	 * @param mixed  $value      Value to add to the cache
293
	 * @param int    $expires    (optional) Time in seconds for the cache to expire, if 0 no expiration.
294
	 * @param string $cache_mode (optional) Decides the caching method to use for the view.
0 ignored issues
show
Should the type for parameter $cache_mode not be string|null?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
295
	 * @param string $group      (optional) Set the group of the value.
296
	 *
297
	 * @return bool|mixed|null|string|void
298
	 *
299
	 * @since 2.0
300
	 */
301
	public static function set( $key, $value, $expires = 0, $cache_mode = null, $group = '' ) {
302
303
		$object_cache = false;
304
305
		if ( isset( $GLOBALS['wp_object_cache'] ) && is_object( $GLOBALS['wp_object_cache'] ) ) {
306
			$object_cache = true;
307
		}
308
309
		// Advanced $expires handling
310
		$expires = self::expires( $expires, $cache_mode );
311
312
		if ( ! in_array( $cache_mode, self::$cache_modes ) ) {
313
			$cache_mode = 'cache';
314
		}
315
316
		$group_key = 'pods_';
317
318
		if ( ! empty( $group ) ) {
319
			$group_key = $group . '_';
320
		}
321
322
		$original_key = $key;
323
324
		// Get proper cache key
325
		$key = self::get_key( $key, $group_key );
326
327
		if ( apply_filters( 'pods_view_cache_alt_set', false, $cache_mode, $group_key . $key, $original_key, $value, $expires, $group ) ) {
328
			return $value;
329
		} elseif ( 'transient' === $cache_mode ) {
330
			set_transient( $group_key . $key, $value, $expires );
331
		} elseif ( 'site-transient' === $cache_mode ) {
332
			set_site_transient( $group_key . $key, $value, $expires );
333
		} elseif ( 'cache' === $cache_mode && $object_cache ) {
334
			wp_cache_set( $key, $value, ( empty( $group ) ? 'pods_view' : $group ), $expires );
335
		} elseif ( 'option-cache' === $cache_mode ) {
336
			global $_wp_using_ext_object_cache;
0 ignored issues
show
Compatibility Best Practice introduced by
Use of global functionality is not recommended; it makes your code harder to test, and less reusable.

Instead of relying on global state, we recommend one of these alternatives:

1. Pass all data via parameters

function myFunction($a, $b) {
    // Do something
}

2. Create a class that maintains your state

class MyClass {
    private $a;
    private $b;

    public function __construct($a, $b) {
        $this->a = $a;
        $this->b = $b;
    }

    public function myFunction() {
        // Do something
    }
}
Loading history...
Comprehensibility Naming introduced by
The variable name $_wp_using_ext_object_cache exceeds the maximum configured length of 20.

Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.

Loading history...
337
338
			$value = apply_filters( 'pre_set_transient_' . $key, $value );
339
340
			if ( $_wp_using_ext_object_cache ) {
341
				$result = wp_cache_set( $key, $value, ( empty( $group ) ? 'pods_option_cache' : $group ) );
342
343
				if ( $expires ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $expires of type false|integer is loosely compared to true; this is ambiguous if the integer can be zero. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For integer values, zero is a special case, in particular the following results might be unexpected:

0   == false // true
0   == null  // true
123 == false // false
123 == null  // false

// It is often better to use strict comparison
0 === false // false
0 === null  // false
Loading history...
344
					$result = wp_cache_set( '_timeout_' . $key, $expires, ( empty( $group ) ? 'pods_option_cache' : $group ) );
345
				}
346
			} else {
347
				$transient_timeout = '_pods_option_timeout_' . $key;
348
				$key               = '_pods_option_' . $key;
349
350
				if ( false === get_option( $key ) ) {
351
					if ( $expires ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $expires of type false|integer is loosely compared to true; this is ambiguous if the integer can be zero. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For integer values, zero is a special case, in particular the following results might be unexpected:

0   == false // true
0   == null  // true
123 == false // false
123 == null  // false

// It is often better to use strict comparison
0 === false // false
0 === null  // false
Loading history...
352
						add_option( $transient_timeout, time() + $expires, '', 'no' );
353
					}
354
355
					$result = add_option( $key, $value, '', 'no' );
356
				} else {
357
					if ( $expires ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $expires of type false|integer is loosely compared to true; this is ambiguous if the integer can be zero. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For integer values, zero is a special case, in particular the following results might be unexpected:

0   == false // true
0   == null  // true
123 == false // false
123 == null  // false

// It is often better to use strict comparison
0 === false // false
0 === null  // false
Loading history...
358
						update_option( $transient_timeout, time() + $expires );
359
					}
360
361
					$result = update_option( $key, $value );
362
				}
363
			}//end if
364
365
			if ( $result ) {
366
				do_action( 'set_transient_' . $key );
367
				do_action( 'setted_transient', $key );
368
			}
369
		}//end if
370
371
		do_action( 'pods_view_set_' . $cache_mode, $original_key, $value, $expires, $group );
372
373
		return $value;
374
	}
375
376
	/**
377
	 * @static
378
	 *
379
	 * Clear a cached value
380
	 *
381
	 * @param string|bool $key        Key for the cache
382
	 * @param string      $cache_mode (optional) Decides the caching method to use for the view.
0 ignored issues
show
Should the type for parameter $cache_mode not be string|null?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
383
	 * @param string      $group      (optional) Set the group.
384
	 *
385
	 * @return bool
386
	 *
387
	 * @since 2.0
388
	 */
389
	public static function clear( $key = true, $cache_mode = null, $group = '' ) {
390
391
		$object_cache = false;
392
393
		if ( isset( $GLOBALS['wp_object_cache'] ) && is_object( $GLOBALS['wp_object_cache'] ) ) {
394
			$object_cache = true;
395
		}
396
397
		global $wpdb;
0 ignored issues
show
Compatibility Best Practice introduced by
Use of global functionality is not recommended; it makes your code harder to test, and less reusable.

Instead of relying on global state, we recommend one of these alternatives:

1. Pass all data via parameters

function myFunction($a, $b) {
    // Do something
}

2. Create a class that maintains your state

class MyClass {
    private $a;
    private $b;

    public function __construct($a, $b) {
        $this->a = $a;
        $this->b = $b;
    }

    public function myFunction() {
        // Do something
    }
}
Loading history...
398
399
		if ( ! in_array( $cache_mode, self::$cache_modes ) ) {
400
			$cache_mode = 'cache';
401
		}
402
403
		$group_key = 'pods_';
404
405
		if ( ! empty( $group ) ) {
406
			$group_key = $group . '_';
407
		}
408
409
		$full_key = $original_key = $key;
410
411
		if ( true !== $key ) {
412
			// Get proper cache key
413
			$key = self::get_key( $key, $group_key );
414
415
			$full_key = $group_key . $key;
416
		}
417
418
		if ( apply_filters( 'pods_view_cache_alt_set', false, $cache_mode, $full_key, $original_key, '', 0, $group ) ) {
419
			return true;
420
		} elseif ( 'transient' === $cache_mode ) {
421
			if ( true === $key ) {
422
				$group_key = pods_sanitize_like( $group_key );
423
424
				$wpdb->query( "DELETE FROM `{$wpdb->options}` WHERE option_name LIKE '_transient_{$group_key}%'" );
0 ignored issues
show
Usage of a direct database call is discouraged.
Loading history...
Usage of a direct database call without caching is prohibited. Use wp_cache_get / wp_cache_set.
Loading history...
425
426
				if ( $object_cache ) {
427
					wp_cache_flush();
428
				}
429
			} else {
430
				delete_transient( $group_key . $key );
431
			}
432
		} elseif ( 'site-transient' === $cache_mode ) {
433
			if ( true === $key ) {
434
				$group_key = pods_sanitize_like( $group_key );
435
436
				$wpdb->query( "DELETE FROM `{$wpdb->options}` WHERE option_name LIKE '_site_transient_{$group_key}%'" );
0 ignored issues
show
Usage of a direct database call is discouraged.
Loading history...
Usage of a direct database call without caching is prohibited. Use wp_cache_get / wp_cache_set.
Loading history...
437
438
				if ( $object_cache ) {
439
					wp_cache_flush();
440
				}
441
			} else {
442
				delete_site_transient( $group_key . $key );
443
			}
444
		} elseif ( 'cache' === $cache_mode && $object_cache ) {
445
			if ( true === $key ) {
446
				wp_cache_flush();
447
			} else {
448
				wp_cache_delete( ( empty( $key ) ? 'pods_view' : $key ), ( empty( $group ) ? 'pods_view' : $group ) );
449
			}
450
		} elseif ( 'option-cache' === $cache_mode ) {
451
			global $_wp_using_ext_object_cache;
0 ignored issues
show
Compatibility Best Practice introduced by
Use of global functionality is not recommended; it makes your code harder to test, and less reusable.

Instead of relying on global state, we recommend one of these alternatives:

1. Pass all data via parameters

function myFunction($a, $b) {
    // Do something
}

2. Create a class that maintains your state

class MyClass {
    private $a;
    private $b;

    public function __construct($a, $b) {
        $this->a = $a;
        $this->b = $b;
    }

    public function myFunction() {
        // Do something
    }
}
Loading history...
Comprehensibility Naming introduced by
The variable name $_wp_using_ext_object_cache exceeds the maximum configured length of 20.

Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.

Loading history...
452
453
			do_action( 'delete_transient_' . $key, $key );
454
455
			if ( $_wp_using_ext_object_cache ) {
456
				$result = wp_cache_delete( $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
457
458
				wp_cache_delete( '_timeout_' . $key, ( empty( $group ) ? 'pods_option_cache' : $group ) );
459
			} else {
460
				$option_timeout = '_pods_option_timeout_' . $key;
461
				$option         = '_pods_option_' . $key;
462
463
				$result = delete_option( $option );
464
465
				if ( $result ) {
466
					delete_option( $option_timeout );
467
				}
468
			}
469
470
			if ( $result ) {
471
				do_action( 'deleted_transient', $key );
472
			}
473
		}//end if
474
475
		do_action( 'pods_view_clear_' . $cache_mode, $original_key, $group );
476
477
		return true;
478
	}
479
480
	/**
481
	 * @static
482
	 *
483
	 * @param            $_view
484
	 * @param null|array $_data
485
	 *
486
	 * @return bool|mixed|string|void
487
	 */
488
	public static function get_template_part( $_view, $_data = null ) {
489
490
		/*
0 ignored issues
show
Unused Code Comprehensibility introduced by
38% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
491
		 to be reviewed later, should have more checks and restrictions like a whitelist etc
492
		if ( 0 === strpos( $_view, 'http://' ) || 0 === strpos( $_view, 'https://' ) ) {
493
			$_view = apply_filters( 'pods_view_url_include', $_view );
494
495
			if ( empty( $_view ) || ( defined( 'PODS_REMOTE_VIEWS' ) && PODS_REMOTE_VIEWS ) )
496
				return '';
497
498
			$response = wp_remote_get( $_view );
499
500
			return wp_remote_retrieve_body( $response );
501
		}
502
		*/
503
504
		$_view = self::locate_template( $_view );
505
506
		if ( empty( $_view ) ) {
507
			return $_view;
508
		}
509
510
		if ( ! empty( $_data ) && is_array( $_data ) ) {
511
			extract( $_data, EXTR_SKIP );
0 ignored issues
show
extract() usage is highly discouraged, due to the complexity and unintended issues it might cause.
Loading history...
512
		}
513
514
		ob_start();
515
		require $_view;
516
		$output = ob_get_clean();
517
518
		return $output;
519
	}
520
521
	/**
522
	 * @static
523
	 *
524
	 * @param $_view
525
	 *
526
	 * @return bool|mixed|string|void
527
	 */
528
	private static function locate_template( $_view ) {
529
530
		if ( is_array( $_view ) ) {
531
			$_views = array();
532
533
			if ( isset( $_view[0] ) && false === strpos( $_view[0], '.php' ) ) {
534
				$_view_count = count( $_view );
535
536
				for ( $_view_x = $_view_count; 0 < $_view_x; $_view_x -- ) {
537
					$_view_v = array_slice( $_view, 0, $_view_x );
538
539
					$_views[] = implode( '-', $_view_v ) . '.php';
540
				}
541
			} else {
542
				$_views = $_view;
543
			}
544
545
			$_view = false;
546
547
			foreach ( $_views as $_view_check ) {
548
				$_view = self::locate_template( $_view_check );
549
550
				if ( ! empty( $_view ) ) {
551
					break;
552
				}
553
			}
554
555
			return $_view;
556
		}//end if
557
558
		// Keep it safe
559
		$_view = trim( str_replace( array( '../', '\\' ), array( '', '/' ), (string) $_view ) );
560
561
		if ( empty( $_view ) ) {
562
			return false;
563
		}
564
565
		$_real_view = realpath( $_view );
566
567
		if ( empty( $_real_view ) ) {
568
			$_real_view = $_view;
569
		}
570
571
		$located = false;
572
573
		// Is the view's file somewhere within the plugin directory tree?
574
		// Note: we explicitly whitelist PODS_DIR for the case of symlinks (see issue #2945)
575
		if ( false !== strpos( $_real_view, realpath( WP_PLUGIN_DIR ) ) || false !== strpos( $_real_view, realpath( WPMU_PLUGIN_DIR ) ) || false !== strpos( $_real_view, PODS_DIR ) ) {
576
			if ( file_exists( $_view ) ) {
577
				$located = $_view;
578
			} else {
579
				$located = apply_filters( 'pods_view_locate_template', $located, $_view );
580
			}
581
		} else {
582
			// The view's file is outside the plugin directory
583
			$_real_view = trim( $_real_view, '/' );
584
585
			if ( empty( $_real_view ) ) {
586
				return false;
587
			}
588
589
			// Allow views in the theme or child theme
590
			if ( file_exists( realpath( get_stylesheet_directory() . '/' . $_real_view ) ) ) {
591
				$located = realpath( get_stylesheet_directory() . '/' . $_real_view );
592
			} elseif ( file_exists( realpath( get_template_directory() . '/' . $_real_view ) ) ) {
593
				$located = realpath( get_template_directory() . '/' . $_real_view );
594
			}
595
		}//end if
596
597
		return $located;
598
599
	}
600
601
	/**
602
	 * Advanced $expires handling
603
	 *
604
	 * @param array|bool|int $expires
605
	 * @param string         $cache_mode
606
	 *
607
	 * @return bool|int
0 ignored issues
show
Consider making the return type a bit more specific; maybe use false|integer.

This check looks for the generic type array as a return type and suggests a more specific type. This type is inferred from the actual code.

Loading history...
608
	 *
609
	 * @since 2.7
610
	 * @static
611
	 */
612
	public static function expires( $expires, $cache_mode = 'cache' ) {
613
614
		// Different $expires if user is anonymous or logged in or specific capability
615
		if ( is_array( $expires ) ) {
616
			if ( ( isset( $expires['anonymous'] ) || isset( $expires['user_with_access'] ) ) && isset( $expires['user'] ) ) {
617
				if ( isset( $expires['user_with_access'] ) ) {
618
					$expires = array(
619
						pods_var_raw( 'anonymous', $expires, false ),
620
						pods_var_raw( 'user', $expires, false ),
621
						pods_var_raw( 'user_with_access', $expires, false ),
622
						pods_var_raw( 'capability', $expires, null, null, true ),
623
					);
624
				} elseif ( isset( $expires['anonymous'] ) ) {
625
					$expires = array(
626
						pods_var_raw( 'anonymous', $expires, false ),
627
						pods_var_raw( 'user', $expires, false ),
628
						pods_var_raw( 'capability', $expires, null, null, true ),
629
					);
630
				}
631
			} else {
632
				$expires = array_values( $expires );
633
			}
634
635
			if ( 4 == count( $expires ) ) {
636
				if ( ! is_user_logged_in() ) {
637
					$expires = pods_var_raw( 0, $expires, false );
638
				} else {
639
					$user_no_access   = pods_var_raw( 1, $expires, false );
640
					$user_with_access = pods_var_raw( 2, $expires, false );
641
					$capability       = pods_var_raw( 3, $expires, null, null, true );
642
643
					$expires = pods_var_user( $user_no_access, $user_with_access, $capability );
644
				}
645
			} else {
646
				$anon       = pods_var_raw( 0, $expires, false );
647
				$user       = pods_var_raw( 1, $expires, false );
648
				$capability = pods_var_raw( 2, $expires, null, null, true );
649
650
				$expires = pods_var_user( $anon, $user, $capability );
651
			}
652
		}//end if
653
654
		if ( 'none' === $cache_mode ) {
655
			$expires = false;
656
		} elseif ( false !== $expires ) {
657
			$expires = (int) $expires;
658
659
			if ( $expires < 1 ) {
660
				$expires = 0;
661
			}
662
		}
663
664
		return $expires;
665
666
	}
667
668
}
669