Subversion Repositories oidplus

Rev

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

Rev 778 Rev 988
Line 27... Line 27...
27
                return $path;
27
                return $path;
28
        }
28
        }
29
 
29
 
30
        public function getManifest() {
30
        public function getManifest() {
31
                $dir = $this->getPluginDirectory();
31
                $dir = $this->getPluginDirectory();
32
                $ini = $dir.'/manifest.xml';
32
                $ini = $dir.DIRECTORY_SEPARATOR.'manifest.xml';
33
                $manifest = new OIDplusPluginManifest();
33
                $manifest = new OIDplusPluginManifest();
34
                return $manifest->loadManifest($ini) ? $manifest : null;
34
                return $manifest->loadManifest($ini) ? $manifest : null;
35
        }
35
        }
36
 
36
 
37
        public function init($html=true) {}
37
        public function init($html=true) {}