2007-07-19 12:40:05 +02:00
|
|
|
<?php
|
2008-11-18 02:48:50 +01:00
|
|
|
|
2007-09-14 03:01:48 +02:00
|
|
|
/**
|
2008-11-02 22:27:55 +01:00
|
|
|
* Extended URL rules for the CMS module
|
2008-04-05 05:43:58 +02:00
|
|
|
*
|
2008-02-25 03:10:37 +01:00
|
|
|
* @package cms
|
2007-09-14 03:01:48 +02:00
|
|
|
*/
|
2007-10-05 02:51:45 +02:00
|
|
|
Director::addRules(50, array(
|
2008-08-09 05:54:55 +02:00
|
|
|
'processes//$Action/$ID/$Batch' => 'BatchProcess_Controller',
|
|
|
|
'admin/help//$Action/$ID' => 'CMSHelp',
|
|
|
|
'admin/bulkload//$Action/$ID/$OtherID' => 'BulkLoaderAdmin',
|
|
|
|
'admin//ImageEditor/$Action' => 'ImageEditor',
|
2008-11-02 22:27:55 +01:00
|
|
|
'admin/cms//$Action/$ID/$OtherID' => 'CMSMain',
|
2008-08-09 07:07:31 +02:00
|
|
|
'PageComment//$Action/$ID' => 'PageComment_Controller',
|
2008-12-15 02:31:01 +01:00
|
|
|
'dev/buildcache/$Action' => 'RebuildStaticCacheTask',
|
2007-07-19 12:40:05 +02:00
|
|
|
));
|
|
|
|
|
2009-08-17 07:27:46 +02:00
|
|
|
CMSMenu::add_director_rules();
|
2009-05-14 08:11:18 +02:00
|
|
|
|
2009-08-10 06:34:17 +02:00
|
|
|
// Default CMS HTMLEditorConfig
|
|
|
|
HtmlEditorConfig::get('cms')->setOptions(array(
|
|
|
|
'friendly_name' => 'Default CMS',
|
|
|
|
'priority' => '50',
|
|
|
|
'mode' => 'none',
|
|
|
|
'language' => i18n::get_tinymce_lang(),
|
|
|
|
'content_css' => 'cms/css/editor.css, '.(SSViewer::current_theme() ? THEMES_DIR . "/" . SSViewer::current_theme() : project()) . "/css/editor.css",
|
|
|
|
|
|
|
|
'body_class' => 'typography',
|
|
|
|
'document_base_url' => Director::absoluteBaseURL(),
|
|
|
|
|
|
|
|
'urlconverter_callback' => "nullConverter",
|
|
|
|
'setupcontent_callback' => "sapphiremce_setupcontent",
|
|
|
|
'cleanup_callback' => "sapphiremce_cleanup",
|
|
|
|
|
|
|
|
'template_templates' => array(
|
|
|
|
array( 'title' => "Three column", 'src' => "assets/snippet.html", 'description' => "A simple 3 column layout" )
|
|
|
|
),
|
|
|
|
|
|
|
|
'use_native_selects' => true, // fancy selects are bug as of SS 2.3.0
|
2009-09-18 04:26:09 +02:00
|
|
|
'valid_elements' => "@[id|class|style|title],+a[id|rel|rev|dir|tabindex|accesskey|type|name|href|target|title|class],-strong/-b[class],-em/-i[class],-strike[class],-u[class],#p[id|dir|class|align|style],-ol[class],-ul[class],-li[class],br,img[id|dir|longdesc|usemap|class|src|border|alt=|title|width|height|align],-sub[class],-sup[class],-blockquote[dir|class],-table[border=0|cellspacing|cellpadding|width|height|class|align|summary|dir|id|style],-tr[id|dir|class|rowspan|width|height|align|valign|bgcolor|background|bordercolor|style],tbody[id|class|style],thead[id|class|style],tfoot[id|class|style],#td[id|dir|class|colspan|rowspan|width|height|align|valign|scope|style],-th[id|dir|class|colspan|rowspan|width|height|align|valign|scope|style],caption[id|dir|class],-div[id|dir|class|align|style],-span[class|align|style],-pre[class|align],address[class|align],-h1[id|dir|class|align|style],-h2[id|dir|class|align|style],-h3[id|dir|class|align|style],-h4[id|dir|class|align|style],-h5[id|dir|class|align|style],-h6[id|dir|class|align|style],hr[class],dd[id|class|title|dir],dl[id|class|title|dir],dt[id|class|title|dir],@[id,style,class]",
|
2009-08-10 06:34:17 +02:00
|
|
|
'extended_valid_elements' => "img[class|src|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name|usemap],iframe[src|name|width|height|align|frameborder|marginwidth|marginheight|scrolling],object[width|height|data|type],param[name|value],map[class|name|id],area[shape|coords|href|target|alt]"
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
|
|
HtmlEditorConfig::get('cms')->enablePlugins('media', '../../tinymce_ssbuttons', 'fullscreen');
|
|
|
|
|
|
|
|
HtmlEditorConfig::get('cms')->insertButtonsBefore('formatselect', 'styleselect');
|
|
|
|
HtmlEditorConfig::get('cms')->insertButtonsBefore('advcode', 'ssimage', 'ssflash', 'sslink', 'unlink', 'anchor', 'separator' );
|
|
|
|
HtmlEditorConfig::get('cms')->insertButtonsAfter ('advcode', 'fullscreen', 'separator');
|
|
|
|
|
|
|
|
HtmlEditorConfig::get('cms')->removeButtons('tablecontrols');
|
|
|
|
HtmlEditorConfig::get('cms')->addButtonsToLine(3, 'tablecontrols');
|
|
|
|
|
|
|
|
|
2008-08-12 04:59:27 +02:00
|
|
|
?>
|