mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Adding in the new template set
This commit is contained in:
parent
87e9a958a5
commit
fb33bbda0d
11
phpgwapi/templates/verdilak/footer.tpl
Normal file
11
phpgwapi/templates/verdilak/footer.tpl
Normal file
@ -0,0 +1,11 @@
|
||||
<!-- BEGIN footer -->
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table border="0" cellspacing="0" cellpading="0" width="100%" bgcolor="{table_bg_color}">
|
||||
<tr>
|
||||
<td background="{img_root}/bg_filler.gif"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- END footer -->
|
84
phpgwapi/templates/verdilak/navbar.inc.php
Normal file
84
phpgwapi/templates/verdilak/navbar.inc.php
Normal file
@ -0,0 +1,84 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare *
|
||||
* http://www.phpgroupware.org *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
function parse_navbar($force = False)
|
||||
{
|
||||
global $phpgw_info, $phpgw;
|
||||
|
||||
$tpl = new Template($phpgw_info["server"]["template_dir"]);
|
||||
$tpl->set_unknowns("remove");
|
||||
|
||||
$tpl->set_file(array("navbar" => "navbar.tpl"));
|
||||
|
||||
$tpl->set_var("img_root",$phpgw_info["server"]["webserver_url"] . "/phpgwapi/templates/verdilak/images");
|
||||
//$tpl->set_var("table_bg_color",$phpgw_info["theme"]["navbar_bg"]);
|
||||
$tpl->set_var("table_bg_color","990000");
|
||||
|
||||
if ($phpgw_info["flags"]["navbar_target"]) {
|
||||
$target = ' target="' . $phpgw_info["flags"]["navbar_target"] . '"';
|
||||
}
|
||||
|
||||
while ($app = each($phpgw_info["navbar"])) {
|
||||
if ($app[1]["title"] != "Home" && $app[1]["title"] != "Preferences" && ! ereg("About",$app[1]["title"]) && $app[1]["title"] != "Logout") {
|
||||
$title = '<img src="' . $app[1]["icon"] . '" alt="' . $app[1]["title"] . '" title="'
|
||||
. $app[1]["title"] . '" border="0">';
|
||||
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "icons_and_text") {
|
||||
$title .= "<br>" . $app[1]["title"];
|
||||
}
|
||||
$applications .= '<br><a href="' . $app[1]["url"] . '"' . $target . '>' . $title . '</a>';
|
||||
}
|
||||
}
|
||||
$tpl->set_var("applications",$applications);
|
||||
|
||||
$tpl->set_var("home_link",$phpgw_info["navbar"]["home"]["url"]);
|
||||
$tpl->set_var("preferences_link",$phpgw_info["navbar"]["preferences"]["url"]);
|
||||
$tpl->set_var("logout_link",$phpgw_info["navbar"]["logout"]["url"]);
|
||||
$tpl->set_var("help_link",$phpgw_info["navbar"]["about"]["url"]);
|
||||
|
||||
/* if ($phpgw_info["server"]["showpoweredbyon"] == "top") {
|
||||
$tpl->set_var("powered_by",lang("Powered by phpGroupWare version x",$phpgw_info["server"]["versions"]["phpgwapi"]));
|
||||
}
|
||||
if (isset($phpgw_info["navbar"]["admin"]) && isset($phpgw_info["user"]["preferences"]["common"]["show_currentusers"])) {
|
||||
$db = $phpgw->db;
|
||||
$db->query("select count(*) from phpgw_sessions");
|
||||
$db->next_record();
|
||||
$tpl->set_var("current_users",'<a href="' . $phpgw->link("/admin/currentusers.php") . '"> '
|
||||
. lang("Current users") . ': ' . $db->f(0) . '</a>');
|
||||
} */
|
||||
$tpl->set_var("user_info",$phpgw->common->display_fullname() . " - "
|
||||
. lang($phpgw->common->show_date(time(),"l")) . " "
|
||||
. lang($phpgw->common->show_date(time(),"F")) . " "
|
||||
. $phpgw->common->show_date(time(),"d, Y"));
|
||||
|
||||
// Maybe we should create a common function in the phpgw_accounts_shared.inc.php file
|
||||
// to get rid of duplicate code.
|
||||
/* if ($phpgw_info["user"]["lastpasswd_change"] == 0) {
|
||||
$api_messages = lang("You are required to change your password during your first login")
|
||||
. '<br> Click this image on the navbar: <img src="'
|
||||
. $phpgw_info["server"]["webserver_url"] . '/preferences/templates/'
|
||||
. $phpgw_info["server"]["template_set"] . '/images/navbar.gif">';
|
||||
} else if ($phpgw_info["user"]["lastpasswd_change"] < time() - (86400*30)) {
|
||||
$api_messages = lang("it has been more then x days since you changed your password",30);
|
||||
}
|
||||
|
||||
// This is gonna change
|
||||
if (isset($cd)) {
|
||||
$tpl->set_var("messages",$api_messages . "<br>" . checkcode($cd));
|
||||
} */
|
||||
|
||||
// If the application has a header include, we now include it
|
||||
if ($phpgw_info["flags"]["noheader"] && ! $phpgw_info["flags"]["noappheader"]) {
|
||||
|
||||
}
|
||||
return $tpl->finish($tpl->parse("out","navbar"));
|
||||
}
|
24
phpgwapi/templates/verdilak/navbar.tpl
Executable file
24
phpgwapi/templates/verdilak/navbar.tpl
Executable file
@ -0,0 +1,24 @@
|
||||
|
||||
<!-- BEGIN navbar -->
|
||||
|
||||
<table border="0" cellspacing="0" cellpadding="0" width="100%" bgcolor="{table_bg_color}">
|
||||
|
||||
<tr background="{img_root}/bg_filler.gif">
|
||||
<td align="left" valign="bottom"><img src="{img_root}/logo.gif" height="32" width="123"></td>
|
||||
<td align="center" valign="bottom" width="100%"><font color="FFFFFF" size="-1">{user_info}</font></td>
|
||||
<td align="right" valign="bottom" rowspan="2"><a href="{home_link}"><img src="{img_root}/home.gif" border="0"></a><a href="{preferences_link}"><img src="{img_root}/preferences.gif" border="0"></a><a href="{logout_link}"><img src="{img_root}/logout.gif" border="0"></a><a href="{help_link}"><img src="{img_root}/about.gif" border="0"></a></td>
|
||||
</tr>
|
||||
|
||||
<tr background="{img_root}/bg_filler.gif">
|
||||
<td align="center" width="100%" valign="bottom" colspan="2"><img src="{img_root}/greybar.jpg" height="4" width="100%"></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<table border="0" cellspacing="0" cellpadding="0" width="100%">
|
||||
<tr valign="top">
|
||||
<td background="{img_root}/navbar_filler.jpg" align="left">
|
||||
{applications}
|
||||
</td>
|
||||
<td width="100%">
|
||||
<!-- END navbar -->
|
1
phpgwapi/templates/verdilak/navbar_app.tpl
Normal file
1
phpgwapi/templates/verdilak/navbar_app.tpl
Normal file
@ -0,0 +1 @@
|
||||
<td align="center" width="{width}">{value}</td>
|
Loading…
Reference in New Issue
Block a user