reinsert
This commit is contained in:
parent
2949dbe982
commit
13ecac28d0
29 changed files with 5181 additions and 0 deletions
32
livesupport/modules/alib/var/example/conf.php
Normal file
32
livesupport/modules/alib/var/example/conf.php
Normal 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')
|
||||
);
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue