Subversion Repositories oidplus

Rev

Rev 800 | Rev 803 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 800 Rev 801
Line 86... Line 86...
86
        public function isLeafNode() {
86
        public function isLeafNode() {
87
                return false;
87
                return false;
88
        }
88
        }
89
 
89
 
90
        public function getContentPage(&$title, &$content, &$icon) {
90
        public function getContentPage(&$title, &$content, &$icon) {
91
                $icon = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webPath(__DIR__,true).'img/main_icon.png' : '';
91
                $icon = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png' : '';
92
 
92
 
93
                if ($this->isRoot()) {
93
                if ($this->isRoot()) {
94
                        $title = OIDplusJava::objectTypeTitle();
94
                        $title = OIDplusJava::objectTypeTitle();
95
 
95
 
96
                        $res = OIDplus::db()->query("select * from ###objects where parent = ?", array(self::root()));
96
                        $res = OIDplus::db()->query("select * from ###objects where parent = ?", array(self::root()));