forked from extern/egroupware
Condensing template info into less files.
This commit is contained in:
parent
dc4dbac026
commit
8ba043d9c9
@ -27,11 +27,12 @@
|
|||||||
$p = CreateObject('phpgwapi.Template',$phpgw->calendar->template_dir);
|
$p = CreateObject('phpgwapi.Template',$phpgw->calendar->template_dir);
|
||||||
|
|
||||||
$templates = Array(
|
$templates = Array(
|
||||||
'footer' => 'footer.tpl',
|
'footer' => 'footer.tpl'
|
||||||
'footer_column' => 'footer_column.tpl'
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$p->set_file($templates);
|
$p->set_file($templates);
|
||||||
|
$p->set_block('footer','footer_table','footer_table');
|
||||||
|
$p->set_block('footer','footer_row','footer_row');
|
||||||
|
|
||||||
if ($phpgw->calendar->tempyear && $phpgw->calendar->tempmonth)
|
if ($phpgw->calendar->tempyear && $phpgw->calendar->tempmonth)
|
||||||
{
|
{
|
||||||
@ -79,7 +80,7 @@
|
|||||||
|
|
||||||
$p->set_var($var);
|
$p->set_var($var);
|
||||||
|
|
||||||
$p->parse('output','footer_column',True);
|
$p->parse('table_row','footer_row',True);
|
||||||
|
|
||||||
$str = '';
|
$str = '';
|
||||||
|
|
||||||
@ -159,7 +160,7 @@
|
|||||||
|
|
||||||
$p->set_var($var);
|
$p->set_var($var);
|
||||||
|
|
||||||
$p->parse('output','footer_column',True);
|
$p->parse('table_row','footer_row',True);
|
||||||
|
|
||||||
if ($phpgw->calendar->tempyear)
|
if ($phpgw->calendar->tempyear)
|
||||||
{
|
{
|
||||||
@ -192,8 +193,8 @@
|
|||||||
|
|
||||||
$p->set_var($var);
|
$p->set_var($var);
|
||||||
|
|
||||||
$p->parse('output','footer_column',True);
|
$p->parse('table_row','footer_row',True);
|
||||||
|
|
||||||
$p->pparse('out','footer');
|
$p->pparse('out','footer_table');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -1,8 +1,26 @@
|
|||||||
|
<!-- $Id$ -->
|
||||||
|
<!-- BEGIN footer_table -->
|
||||||
<br clear="all">
|
<br clear="all">
|
||||||
<hr clear="all">
|
<hr clear="all">
|
||||||
<font size="-1">
|
<font size="-1">
|
||||||
<table border="0" width="100%" cellpadding="0" cellspacing="0">
|
<table border="0" width="100%" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
{output}
|
{table_row}
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<!-- END footer_table -->
|
||||||
|
<!-- BEGIN footer_row -->
|
||||||
|
<td valign="top" width="33%">
|
||||||
|
<font size="-1">
|
||||||
|
<form action="{action_url}" method="post" name="{form_name}">
|
||||||
|
<B>{label}:</B>
|
||||||
|
<select name="{form_label}" onchange="{form_onchange}">
|
||||||
|
{row}
|
||||||
|
</select>
|
||||||
|
<noscript><input type="submit" value="{go}"></noscript>
|
||||||
|
</form>
|
||||||
|
</font>
|
||||||
|
</td>
|
||||||
|
<!-- END footer_row -->
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user