We'll need this. Oops.

This commit is contained in:
Matthias Mees 2013-05-27 17:07:02 +02:00
parent e3d4841808
commit 5ce2f4aeff

View File

@ -106,3 +106,18 @@ $template_config_groups = NULL;
$template_global_config = array('navigation' => true);
$template_loaded_config = serendipity_loadThemeOptions($template_config, $serendipity['smarty_vars']['template_option'], true);
serendipity_loadGlobalThemeOptions($template_config, $template_loaded_config, $template_global_config);
function serendipity_plugin_api_pre_event_hook($event, &$bag, &$eventData, &$addData) {
global $serendipity;
// Check what Event is coming in, only react to those we want.
switch($event) {
case 'external_plugin':
switch ($eventData) {
case 'admin/serendipity_editor.js':
serendipity_smarty_show('admin/serendipity_editor.js.tpl');
break;
}
return true;
break;
}
}