mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 09:53:20 +01:00
Upps portalbox in home also used phpgw_info based themes
This commit is contained in:
parent
ddccca1c55
commit
347f0c5649
@ -72,6 +72,7 @@
|
|||||||
if ($var=='' || !isset($this->$var))
|
if ($var=='' || !isset($this->$var))
|
||||||
{
|
{
|
||||||
echo 'Programming Error: '.$this->getvar('classname').'->getvar('.$var.')!<br>'."\n";
|
echo 'Programming Error: '.$this->getvar('classname').'->getvar('.$var.')!<br>'."\n";
|
||||||
|
echo function_backtrace(1);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
||||||
}
|
}
|
||||||
//echo "Var = ".$var."<br>\n";
|
//echo "Var = ".$var."<br>\n";
|
||||||
@ -109,14 +110,9 @@
|
|||||||
$this->p->set_block('PORTAL','link_field','link_field');
|
$this->p->set_block('PORTAL','link_field','link_field');
|
||||||
|
|
||||||
$var = Array(
|
$var = Array(
|
||||||
'outer_border' => $this->getvar('outerborderwidth'),
|
|
||||||
'outer_width' => $this->getvar('width'),
|
'outer_width' => $this->getvar('width'),
|
||||||
'outer_bordercolor' => $this->getvar('outerbordercolor'),
|
|
||||||
'outer_bgcolor' => $this->getvar('titlebgcolor'),
|
|
||||||
'title' => $this->getvar('title'),
|
'title' => $this->getvar('title'),
|
||||||
'inner_width' => $this->getvar('width'),
|
'inner_width' => $this->getvar('width'),
|
||||||
'inner_bgcolor' => $this->getvar('innerbgcolor'),
|
|
||||||
'header_background_image' => $this->getvar('header_background_image'),
|
|
||||||
'control_link' => ''
|
'control_link' => ''
|
||||||
);
|
);
|
||||||
$this->p->set_var($var);
|
$this->p->set_var($var);
|
||||||
|
@ -1,21 +1,19 @@
|
|||||||
<!-- BEGIN portal_box -->
|
<!-- BEGIN portal_box -->
|
||||||
<p>
|
<p>
|
||||||
<div style="border: #9c9c9c 1px solid;">
|
<div class="portal_box">
|
||||||
<table border="0" cellpadding="0" cellspacing="0" width="{outer_width}">
|
<table border="0" cellpadding="0" cellspacing="0" width="{outer_width}">
|
||||||
<tr nowrap align="center">
|
<tr nowrap align="center">
|
||||||
<td align="left">
|
<td align="left">
|
||||||
<div class="divSideboxHeader" style="height: 15px; padding-top: 0px">
|
<table class="portal_box_header" border="0" cellpadding="1" cellspacing="0">
|
||||||
<table border="0" cellpadding="1" cellspacing="0" width="{outer_width}">
|
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"> <strong>{title}</strong></td>{portal_controls}
|
<td align="left"> <strong>{title}</strong></td>{portal_controls}
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
<table border="0" cellpadding="0" cellspacing="0" width="{inner_width}" bgcolor="#eeeeee">
|
<table border="0" cellpadding="0" cellspacing="0">
|
||||||
{row}
|
{row}
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user