dbFields = array( 'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code', 'toolbar'=>'bold italic underline strikethrough | alignleft aligncenter alignright | bullist numlist | styleselect | link forecolor backcolor removeformat | pagebreak code fullscreen' ); } public function form() { global $Language; $html = '
'; $html .= ''; $html .= ''; $html .= '
'; $html .= '
'; $html .= ''; $html .= ''; $html .= '
'; return $html; } public function onAdminHead() { global $Language; global $Site; global $layout; $html = ''; // Load CSS and JS only on Controllers in array. if(in_array($layout['controller'], $this->loadWhenController)) { $language = $Site->shortLanguage(); $pluginPath = $this->htmlPath(); $html = ''; $html .= ''; } return $html; } public function onAdminBodyEnd() { global $Language; global $Site; global $layout; $html = ''; // Load CSS and JS only on Controllers in array. if(in_array($layout['controller'], $this->loadWhenController)) { $language = $Site->shortLanguage(); $pluginPath = $this->htmlPath(); $html = ''; } return $html; } }