6428384210d63cd6acfa2dfc589771c539e30297
[Pman.Core] / RooConfig.php
1 <?php
2
3
4 class Pman_Core_RooConfig extends Pman {
5     
6     function getAuth()
7     {
8         return true; // everyone allowed
9     }
10     
11     function post() {
12         $this->jerr("access denied");
13     }
14     
15     function get()
16     {
17         $c = DB_DataObject::factory('core_enum')->fetchAllByType('comptype'); // array of object.s
18         
19         
20         
21     }
22 }