Move flash, image and link forms to right

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@44365 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2007-11-06 05:39:14 +00:00
parent bf90bd15b0
commit 1af11b07d2

View File

@ -312,6 +312,7 @@ class HtmlEditorField_Toolbar extends ViewableData {
$this->controller, $this->controller,
"{$this->name}.LinkForm", "{$this->name}.LinkForm",
new FieldSet( new FieldSet(
new HeaderField('Link'),
new OptionsetField("LinkType", _t('HtmlEditorField.LINKTO', "Link to"), new OptionsetField("LinkType", _t('HtmlEditorField.LINKTO', "Link to"),
array( array(
"internal" => _t('HtmlEditorField.LINKINTERNAL',"Page on the site"), "internal" => _t('HtmlEditorField.LINKINTERNAL',"Page on the site"),
@ -340,13 +341,14 @@ class HtmlEditorField_Toolbar extends ViewableData {
function ImageForm() { function ImageForm() {
$form = new Form($this->controller, "{$this->name}.ImageForm", $form = new Form($this->controller, "{$this->name}.ImageForm",
new FieldSet( new FieldSet(
new HeaderField('Image'),
new TreeDropdownField("FolderID", _t('HtmlEditorField.FOLDER', "Folder"), "Folder"), new TreeDropdownField("FolderID", _t('HtmlEditorField.FOLDER', "Folder"), "Folder"),
new ThumbnailStripField("Image", "FolderID", "getimages"), new ThumbnailStripField("Image", "FolderID", "getimages"),
new TextField("AltText", _t('HtmlEditorField.ALTTEXT', "Description"), "", 80), new TextField("AltText", _t('HtmlEditorField.ALTTEXT', "Description"), "", 80),
new DropdownField("CSSClass", _t('HtmlEditorField.CSSCLASS', "Alignment / style"), array( new DropdownField("CSSClass", _t('HtmlEditorField.CSSCLASS', "Alignment / style"), array(
"left" => _t('HtmlEditorField.CSSCLASSLEFT', "On the left, with text wrapping around."), "left" => _t('HtmlEditorField.CSSCLASSLEFT', "On the left, with text wrapping around."),
"right" => _t('HtmlEditorField.CSSCLASSRIGHT', "On the right, with text wrapping around."), "right" => _t('HtmlEditorField.CSSCLASSRIGHT', "On the right, with text wrapping around."),
"center" => _t('HtmlEditorField.CSSCLASSCENTER', "Centred, on its own."), "center" => _t('HtmlEditorField.CSSCLASSCENTER', "Centered, on its own."),
)), )),
new FieldGroup(_t('HtmlEditorField.IMAGEDIMENSIONS', "Dimensions"), new FieldGroup(_t('HtmlEditorField.IMAGEDIMENSIONS', "Dimensions"),
new TextField("Width", "", "", 5), new TextField("Width", "", "", 5),
@ -367,6 +369,7 @@ class HtmlEditorField_Toolbar extends ViewableData {
function FlashForm() { function FlashForm() {
$form = new Form($this->controller, "{$this->name}.FlashForm", $form = new Form($this->controller, "{$this->name}.FlashForm",
new FieldSet( new FieldSet(
new HeaderField('Flash'),
new TreeDropdownField("FolderID", _t('HtmlEditorField.FOLDER'), "Folder"), new TreeDropdownField("FolderID", _t('HtmlEditorField.FOLDER'), "Folder"),
new ThumbnailStripField("Flash", "FolderID", "getflash"), new ThumbnailStripField("Flash", "FolderID", "getflash"),
new TextField('Width', _t('HtmlEditorField.IMAGEWIDTHPX', "Width (px)")), new TextField('Width', _t('HtmlEditorField.IMAGEWIDTHPX', "Width (px)")),
@ -447,4 +450,4 @@ class HtmlEditorField_dropdown extends HtmlEditorField_control {
class HtmlEditorField_break extends HtmlEditorField_control { class HtmlEditorField_break extends HtmlEditorField_control {
} }
?> ?>