HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: /home/httpd/html/freecams1.com/public_html/core/js/ageWarningJs.php
<?
/*
This file controls the 18+ age verification message for your website. You can edit the text in here. Please make sure to escape quotes with \ (so they become \") as in the default html used below.
*/
include('../../admin/config.php');
?>
function mb_age_warning_confirm() {
	localStorage.mb_age_warning_verified = "1";
	document.getElementById("mb_age_warning").remove();
}

/* edit below if you want to change the 18+ text */	
function mb_age_warning() {
		$("body").append("<div id=\"mb_age_warning\" style=\"position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: #000000;z-index: 9999;\"><div style=\"position: absolute;top: 20%;left: 50%;margin-left: -25%;width: 50%;text-align: center;line-height: 44px;font-weight: 400;color: #FFF;\"><center><img src=\"<? echo $template_url; ?>/images/logo.png\"></center><br>You must be 18 years of age or older to continue.<br /><a href=\"#\" style=\"display: inline-block;\" class=\"btn -primary fr__btn -login \" onClick=\"mb_age_warning_confirm(); return false;\">I am 18 or older, continue</a><br /><a href=\"https://google.com\">Leave</a></div></div>")
}
	
$( document ).ready(function() {
	if(localStorage.mb_age_warning_verified === undefined) {
		mb_age_warning();
	}
});