egroupware_official/phpgwapi/inc/class.resultbox.inc.php

69 lines
3.1 KiB
PHP
Raw Normal View History

<?php
/**************************************************************************\
2004-05-05 14:06:13 +02:00
* eGroupWare API - Result box *
2001-01-13 11:18:50 +01:00
* This file written by Dan Kuykendall <seek3r@phpgroupware.org> *
* and Joseph Engo <jengo@phpgroupware.org> *
* Creates result boxes using templates *
* Copyright (C) 2000, 2001 Dan Kuykendall *
* -------------------------------------------------------------------------*
2004-05-05 14:06:13 +02:00
* This library is part of the eGroupWare API *
* http://www.egroupware.org/api *
* ------------------------------------------------------------------------ *
2001-01-13 11:18:50 +01:00
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 2.1 of the License, *
* or any later version. *
* This library is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU Lesser General Public License for more details. *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
\**************************************************************************/
/* $Id$ */
2001-09-23 21:05:56 +02:00
CreateObject('phpgwapi.portalbox');
2001-09-23 21:05:56 +02:00
class resultbox extends portalbox
{
/*
Set up the Object. You will notice, we have not reserved memory
space for variables. In this circumstance it is not necessary.
*/
//constructor
2001-10-02 06:17:19 +02:00
function resultbox($title='', $primary='', $secondary='', $tertiary='')
2001-09-23 21:05:56 +02:00
{
$this->portalbox($title, $primary, $secondary, $tertiary);
2001-10-02 06:17:19 +02:00
$this->setvar('outerwidth',400);
$this->setvar('innerwidth',400);
2001-09-23 21:05:56 +02:00
}
2001-09-23 21:05:56 +02:00
/*
This is the only method within the class. Quite simply, as you can see
it draws the table(s), placing the required data in the appropriate place.
*/
function draw()
{
2001-10-02 06:17:19 +02:00
echo '<table border="'.$this->getvar('outerborderwidth')
. '" cellpadding="0" cellspacing="0" width="' . $this->getvar('outerwidth')
. '" bordercolor="' . $this->getvar('outerbordercolor')
. '" bgcolor="' . $this->getvar('titlebgcolor') . '">';
echo '<tr><td align="center">'.$this->getvar("title") . '</td></tr>';
2001-09-23 21:05:56 +02:00
echo '<tr><td>';
2001-10-02 06:17:19 +02:00
echo '<table border="0" cellpadding="0" cellspacing="0" width="'.$this->getvar('innerwidth')
. '" bgcolor="' . $this->getvar('innerbgcolor') . '">';
2001-09-23 21:05:56 +02:00
for ($x = 0; $x < count($this->data); $x++)
{
echo '<tr>';
2001-10-02 06:17:19 +02:00
echo '<td width="50%">' . $this->data[$x][0] . '</td>';
echo '<td width="50%">' . $this->data[$x][1] . '</td>';
2001-09-23 21:05:56 +02:00
echo '</tr>';
}
echo '</table>';
echo '</td></tr>';
echo '</table>';
}
}