Documentation is available at categoryclass.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: categoryclass.php,v 1.3 2004/11/22 03:39:40 jan Exp $
10 */
11
12 require_once('basicclass.php');
13
14 class category extends basic {
15
16 function category() {
17 $this->basic();
18 $this->addcolumn('name');
19 $this->addcolumn('datatype', 0, UI_CLASS);
20
21 $this->removeview('createvariant');
22 $this->removeview('createfuture');
23 $this->removeview('approvepublish');
24 $this->removeview('requestapproval');
25 $this->removeview('category');
26 }
27
28 function stdListCol() {
29 $result = array();
30 $result[] = 'name';
31 $result[] = 'datatype';
32 $result[] = 'createdbyname';
33 $result[] = 'changed';
34 $result[] = 'objectid';
35 return $result;
36 }
37
38 }
Documentation generated on Thu, 9 Jun 2005 06:51:38 +0200 by phpDocumentor 1.2.3