Source for file filterclass.php

Documentation is available at filterclass.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: filterclass.php,v 1.3 2004/11/22 03:40:00 jan Exp $
10 */
11
12 require_once('basicclass.php');
13
14 class filter extends basic {
15
16 function filter() {
17 $this->basic();
18 $this->addcolumn('name',0,UI_STRING);
19 $this->addcolumn('datatype', 0, UI_CLASS);
20 $this->addcolumn('content',0,UI_TEXT);
21 $this->addcolumn('mimetype',0,UI_STRING);
22 $this->addcolumn('classtype',0,UI_STRING);
23 $this->addcolumn('filtertype',0,UI_COMBO);
24 $this->addcolumn('filterfiletype',0,UI_STRING);
25 $this->addcolumn('binfileid',0,UI_STRING);
26
27 $this->removeview('createvariant');
28 $this->removeview('createfuture');
29 $this->removeview('approvepublish');
30 $this->removeview('requestapproval');
31 $this->removeview('category');
32 }
33
34 }

Documentation generated on Thu, 9 Jun 2005 06:52:24 +0200 by phpDocumentor 1.2.3