mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 18:03:39 +01:00
Fixes for the listbox portion of portals.
This commit is contained in:
parent
c7be82ea2d
commit
8a4b563143
@ -68,18 +68,21 @@
|
||||
*/
|
||||
function draw($extra_data='')
|
||||
{
|
||||
$this->p->parse('row','portal_listbox_header',True);
|
||||
|
||||
for ($x = 0; $x < count($this->data); $x++)
|
||||
if(count($this->data))
|
||||
{
|
||||
$var = Array(
|
||||
'text' => $this->data[$x]['text'],
|
||||
'link' => $this->data[$x]['link']
|
||||
);
|
||||
$this->p->set_var($var);
|
||||
$this->p->parse('row','portal_listbox_link',True);
|
||||
$this->p->parse('row','portal_listbox_header',True);
|
||||
|
||||
for ($x = 0; $x < count($this->data); $x++)
|
||||
{
|
||||
$var = Array(
|
||||
'text' => $this->data[$x]['text'],
|
||||
'link' => $this->data[$x]['link']
|
||||
);
|
||||
$this->p->set_var($var);
|
||||
$this->p->parse('row','portal_listbox_link',True);
|
||||
}
|
||||
$this->p->parse('row','portal_listbox_footer',True);
|
||||
}
|
||||
$this->p->parse('row','portal_listbox_footer',True);
|
||||
$this->set_internal($extra_data);
|
||||
return $this->draw_box();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user