This commit is contained in:
tomas 2004-07-23 00:22:13 +00:00
parent 2949dbe982
commit 13ecac28d0
29 changed files with 5181 additions and 0 deletions

View file

@ -0,0 +1,32 @@
<?php
// $Id: conf.php,v 1.1 2004/07/23 00:22:13 tomas Exp $
$config = array(
'dsn' => array( // data source definition
'username' => 'tomash',
'password' => '',
'hostspec' => 'localhost',
'phptype' => 'pgsql',
'database' => 'mdlf'
),
'tblNamePrefix' => 'al_',
# 'tblNamePrefix' => 'gb_',
'RootNode' =>'RootNode',
'objtypes' => array(
'RootNode' => array('Publication'),
'Publication' => array('Issue'),
'Issue' => array('Title', 'Section'),
'Section' => array('Title', 'Image', 'Par')
),
'allowedActions'=> array(
'RootNode' => array('addChilds', 'editPerms', 'read', 'edit', 'delete', 'classes', 'subjects'),
'Publication' => array('addChilds', 'editPerms', 'read', 'edit', 'delete'),
'Issue' => array('addChilds', 'editPerms', 'read', 'edit', 'delete'),
'Section' => array('addChilds', 'editPerms', 'read', 'edit', 'delete'),
'Title' => array('editPerms', 'read', 'edit', 'delete'),
'Image' => array('editPerms', 'read', 'edit', 'delete'),
'Par' => array('editPerms', 'read', 'edit', 'delete'),
'_class' => array('addChilds', 'editPerms', 'read', 'edit', 'delete')
),
'allActions'=> array('editPerms', 'addChilds', 'read', 'edit', 'delete', 'classes', 'subjects')
);
?>