summaryrefslogtreecommitdiffstats
path: root/apps/admin/templates/layout.php
diff options
context:
space:
mode:
authorGravatar mszulecki2007-06-14 17:09:01 +0000
committerGravatar mszulecki2007-06-14 17:09:01 +0000
commit9f108dd1a969473375341d92a7b1252fa2cedc9a (patch)
treed5f2e35ec0bd2d52dab0ee3282fc6751e0fa8dba /apps/admin/templates/layout.php
parente35884d11b81e4e4bbd73e1882e2b8011e85d118 (diff)
downloadmailadmin-9f108dd1a969473375341d92a7b1252fa2cedc9a.tar.gz
mailadmin-9f108dd1a969473375341d92a7b1252fa2cedc9a.tar.bz2
Initial import.
git-svn-id: http://svn.sukimashita.com/repos/mailadmin/trunk@2 4281df72-ff29-0410-8fee-2d9ac0c5f5a7
Diffstat (limited to 'apps/admin/templates/layout.php')
-rw-r--r--apps/admin/templates/layout.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/apps/admin/templates/layout.php b/apps/admin/templates/layout.php
new file mode 100644
index 0000000..d10d047
--- /dev/null
+++ b/apps/admin/templates/layout.php
@@ -0,0 +1,35 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<head>
+ <?php include_http_metas() ?>
+ <?php include_metas() ?>
+ <?php include_title() ?>
+ <link rel="icon" href="/images/favicon.ico" /><link rel="SHORTCUT ICON" href="/images/favicon.ico" />
+</head>
+<body>
+<div class="base">
+ <?php include_partial('global/branding') ?>
+ <?php echo use_helper("Asset","Date") ?>
+ <div class="session">
+ <?php if($sf_user->isAuthenticated()): ?>
+ <ul>
+ <li><?php echo image_tag("information.gif","alt=[?]")?><b>Logged in as:</b> <span class="adminname"><?php echo $sf_user->getNickname() ?></span> (<span class="adminrole"><?php echo $sf_user->getRoleName() ?></span>) | <?php echo link_to("Settings","user/settings") ?> | <?php echo link_to("Logout","user/logout") ?></li>
+ <li><b>Last Login:</b> <?php if($sf_user->getLastLogin()!=""): ?>
+ <?php echo format_date($sf_user->getLastLogin(),array('P','t')) ?>
+ <?php else: ?>
+ <?php echo "Never" ?>
+ <?php endif; ?></li>
+ <li id="indicator"><?php echo image_tag("load.gif", "alt=[...] border=0") ?> loading</li>
+ </ul>
+ <?php else: ?>
+ <ul><li><?php echo image_tag("warning.gif","alt=[!]")?><b>You are not authenticated.</b> | <?php echo link_to("Login","user/login") ?></li></ul>
+ <?php endif; ?>
+ </div>
+ <?php if($sf_user->isAuthenticated()): ?>
+ <?php include_partial("global/navigation", array("module" => $sf_context->getModuleName(), "action" => $sf_context->getActionName())) ?>
+ <?php endif; ?>
+ <?php echo $sf_data->getRaw('sf_content') ?>
+ <?php include_partial('global/notes') ?>
+</div>
+</body>
+</html>