Blame Extras/phpBB/3.0.4/adm/style/simple_header.html

4c79b5
4c79b5
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
4c79b5
<head>
4c79b5
4c79b5
<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
4c79b5
<meta http-equiv="Content-Style-Type" content="text/css" />
4c79b5
<meta http-equiv="Content-Language" content="{S_USER_LANG}" />
4c79b5
<meta http-equiv="imagetoolbar" content="no" />
4c79b5
{META}
4c79b5
<title>{PAGE_TITLE}</title>
4c79b5
4c79b5
<link href="style/admin.css" rel="stylesheet" type="text/css" media="screen" />
4c79b5
4c79b5
<script type="text/javascript">
4c79b5
// 
4c79b5
var jump_page = '{LA_JUMP_PAGE}:';
4c79b5
var on_page = '{ON_PAGE}';
4c79b5
var per_page = '{PER_PAGE}';
4c79b5
var base_url = '{A_BASE_URL}';
4c79b5
4c79b5
/**
4c79b5
* Window popup
4c79b5
*/
4c79b5
function popup(url, width, height, name)
4c79b5
{
4c79b5
	if (!name)
4c79b5
	{
4c79b5
		name = '_popup';
4c79b5
	}
4c79b5
4c79b5
	window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes, width=' + width);
4c79b5
	return false;
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* Jump to page
4c79b5
*/
4c79b5
function jumpto()
4c79b5
{
4c79b5
	var page = prompt(jump_page, on_page);
4c79b5
4c79b5
	if (page !== null && !isNaN(page) && page > 0)	
4c79b5
	{
4c79b5
		document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* Set display of page element
4c79b5
* s[-1,0,1] = hide,toggle display,show
4c79b5
*/
4c79b5
function dE(n, s, type)
4c79b5
{
4c79b5
	if (!type)
4c79b5
	{
4c79b5
		type = 'block';
4c79b5
	}
4c79b5
4c79b5
	var e = document.getElementById(n);
4c79b5
	if (!s)
4c79b5
	{
4c79b5
		s = (e.style.display == '') ? -1 : 1;
4c79b5
	}
4c79b5
	e.style.display = (s == 1) ? type : 'none';
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* Mark/unmark checkboxes
4c79b5
* id = ID of parent container, name = name prefix, state = state [true/false]
4c79b5
*/
4c79b5
function marklist(id, name, state)
4c79b5
{
4c79b5
	var parent = document.getElementById(id);
4c79b5
	if (!parent)
4c79b5
	{
4c79b5
		return;
4c79b5
	}
4c79b5
4c79b5
	var rb = parent.getElementsByTagName('input');
4c79b5
	
4c79b5
	for (var r = 0; r < rb.length; r++)
4c79b5
	{
4c79b5
		if (rb[r].name.substr(0, name.length) == name)
4c79b5
		{
4c79b5
			rb[r].checked = state;
4c79b5
		}
4c79b5
	}
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* Find a member
4c79b5
*/
4c79b5
function find_username(url)
4c79b5
{
4c79b5
	popup(url, 760, 570, '_usersearch');
4c79b5
	return false;
4c79b5
}
4c79b5
4c79b5
// ]]>
4c79b5
</script>
4c79b5
</head>
4c79b5
4c79b5
<body class="{S_CONTENT_DIRECTION}">
4c79b5
4c79b5