3070 Posts in 869 Topics by 651 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 696 Views |
-
SimpleTinyMCE

24 February 2010 at 12:28pm Last edited: 24 February 2010 12:29pm
Hi,
I'm trying to customize the SimpleTinyMce in my DOM pop_up using the code supplied in Uncle Cheese's thread: http://www.silverstripe.org/dataobjectmanager-module-forum/show/262243?start=0I am getting an error with the following code regarding SimpleTinyMce:
<?php
class Link extends DataObject
{
static $db = array (
'AltText' => 'Varchar(50)',
'TitleText' => 'Varchar(50)',
'Description' => 'Text',
'LinkUrl' => 'Varchar(50)'
);static $has_one = array (
'LinksPage' => 'LinksPage',
'LinkImage' => 'Image'
);public function getDOMThumbnail()
{return $this->LinkImage()->CroppedImage(50,50);}function getCMSFields_forPopup()
{
return new FieldSet(
new ImageField('LinkImage'),
new TextField('AltText'),
new TextField('TitleText'),
new TextField('LinkUrl'),
$myfield = new SimpleTinyMCEField('Description');
$myfield->setButtons(array(
'cut,paste,|,undo,code','bold,italic,underline,|,justifyleft,justifyright'));
}
}
?>Any help would be appreciated,
Sam -
Re: SimpleTinyMCE

24 February 2010 at 3:09pm
Hi again,
I moved this post over to the correct forum which is DataObjectManager Module.
Sam
| 696 Views | ||
|
Page:
1
|
Go to Top |

