Documentation is available at eventclass.php
1 <?php
2 /**
3 * @author Jan H. Andersen <jha@ipwsystems.dk>
4 * @author Martin R. Larsen <mrl@ipwsystems.dk>
5 * @copyright {@link http://www.ipwsystems.dk/ IPW Systems a.s}
6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
7 * @package METAjour
8 * @subpackage core
9 * $Id: eventclass.php,v 1.3 2004/10/14 16:12:44 jan Exp $
10 */
11
12 require_once('basicclass.php');
13
14 class event extends basic {
15
16 function event() {
17 $this->basic();
18 $this->addcolumn('name',0,UI_STRING);
19 $this->addcolumn('subject',0,UI_STRING);
20 $this->addcolumn('content',0,UI_TEXT);
21 $this->addcolumn('triggertype',0,UI_CLASS);
22 $this->addcolumn('triggerevent',0,UI_STRING);
23 $this->addcolumn('msgtype1',0,UI_COMBO_MULTIPLE);
24 $this->addcolumn('msgdest1',0,UI_COMBO_MULTIPLE);
25 $this->addcolumn('msgtype2',0,UI_COMBO_MULTIPLE);
26 $this->addcolumn('msgdest2',0,UI_USERSGROUPS_MULTIPLE);
27
28 $this->byside2('msgtype1','msgdest1');
29 $this->byside2('msgtype2','msgdest2');
30 }
31
32 }
Documentation generated on Thu, 9 Jun 2005 06:52:22 +0200 by phpDocumentor 1.2.3