simpleads_filter_dashboard.tpl.php in SimpleAds 7
SimpleAds filter dashboard template, controls the output in the popup
1 theme call to simpleads_filter_dashboard.tpl.php
- _simpleads_filter_dashboard_page in includes/
simpleads.filter.inc - WYSIWYG Popup page.
File
templates/simpleads_filter_dashboard.tpl.phpView source
<?php
/**
* @file
* SimpleAds filter dashboard template, controls the output in the popup
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php
print $language->language;
?>" lang="<?php
print $language->language;
?>" dir="<?php
print $language->dir;
?>">
<head>
<title><?php
print $head_title;
?></title>
<?php
print $head;
?>
<?php
print $styles;
?>
<?php
print $scripts;
?>
</head>
<body id="simpleads_filter" style="margin: 10px;">
<?php
if (!empty($messages)) {
print $messages;
}
?>
<?php
if (!empty($help)) {
print $help;
}
?>
<div class="clearfix">
<?php
print $form;
?>
</div>
</body>
</html>