[svn r21932] FS#2867 - The FCKEditor, introduction section, course home page: Elimination of the parameter 'ToolbarSet' through using a default value.

skala
Ivan Tcholakov 16 years ago
parent 27807e9717
commit 3ad5d561b1
  1. 3
      main/course_home/course_home.php
  2. 13
      main/inc/introductionSection.inc.php

@ -1,4 +1,4 @@
<?php // $Id: course_home.php 21931 2009-07-09 04:38:48Z ivantcholakov $
<?php // $Id: course_home.php 21932 2009-07-09 05:07:14Z ivantcholakov $
/*
==============================================================================
@ -180,7 +180,6 @@ $reqdate="&reqdate=$temps";
-----------------------------------------------------------
*/
Display::display_introduction_section(TOOL_COURSE_HOMEPAGE, array(
'ToolbarSet' => 'Introduction',
'CreateDocumentWebDir' => api_get_path('WEB_COURSE_PATH').api_get_course_path().'/document/',
'CreateDocumentDir' => 'document/',
'BaseHref' => api_get_path('WEB_COURSE_PATH').api_get_course_path().'/'

@ -48,6 +48,19 @@ if (!empty ($GLOBALS["_cid"])) {
$renderer =& $form->defaultRenderer();
$renderer->setElementTemplate('<div style="width: 80%; margin: 0px auto; padding-bottom: 10px; ">{element}</div>');
$toolbar_set = 'Introduction';
global $fck_attribute;
if (is_array($fck_attribute) && isset($fck_attribute['Config']['ToolbarSet'])) {
$toolbar_set = $fck_attribute['Config']['ToolbarSet'];
}
if (is_array($editor_config)) {
if (!isset($editor_config['ToolbarSet'])) {
$editor_config['ToolbarSet'] = $toolbar_set;
}
} else {
$editor_config = array('ToolbarSet' => 'Introduction');
}
$form->add_html_editor('intro_content', null, null, false, $editor_config);
$form->addElement('style_submit_button', 'intro_cmdUpdate', get_lang('SaveIntroText'), 'class="save"');

Loading…
Cancel
Save