Tribe__Support__Obfuscator::should_obfuscate( string $key )
Whether a value should be obfuscated or not.
Contents
Parameters
- $key
-
(string) (Required)
Return
(bool)
Source
File: src/Tribe/Support/Obfuscator.php
public function should_obfuscate( $key ) {
foreach ( $this->prefixes as $prefix ) {
if ( strpos( $key, $prefix ) === 0 ) {
return true;
}
}
return false;
}