Location of assets
Guardian PRO can be put in sleep mode with motion detection activated so that even the smallest movement will send an alarm to you. It is also possible to activate a sensitive microphone and it will record sounds around the object being located.
global $wp;
$show_form = true;
if (isset($GLOBALS['conf']['hide_form'])) {
$link = $_SERVER['REQUEST_URI'];
for ($i = 0; $i < count($GLOBALS['conf']['hide_form']); $i++) {
$check = str_replace("*", "(.*)", $GLOBALS['conf']['hide_form'][$i]['link']);
if (preg_match("%^" . $check . "$%", $link)) {
$show_form = false;
break;
}
}
}
?>