PluginProbe
GDPR / trunk
GDPR vtrunk
trunk 1.4.7 2.0.0 2.0.1 2.0.10 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2
gdpr / includes / compatibility-functions.php

compatibility-functions.php in GDPR trunk, at includes/compatibility-functions.php

13 lines 171 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The plugin compatibility functions
4 *
5 * @package GDPR
6 */
7
8 if ( ! function_exists( 'boolval' ) ) {
9 function boolval( $var ) {
10 return (bool) $var;
11 }
12 }
13