* @version 0.1.7 * @license All Rights Reserved */ /** * Modul zentral registrieren */ $installed_modules[] = 'basecontent'; /** * Allgemeines zum Modul */ class basecontent_modul extends fl_modul { function get_options($modules) { echo '
allgemeine Optionen

'.$this->get_dropdown('adminhelp', 'sichtbar=anzeigen,unsichtbar=verstecken').'

'."\n"; } function get_dropdown($field, $options) { $options = explode(',', $options); $aktuell = $this->_get_option('basecontent', $field); $html = ''; $html .= "\n\t\t\t".''; return $html; } function get_name() { return FALSE; } function get_starttext() { echo ''; } function prepare() { $this->factory->get_helper('minixml'); } } ?>