Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Data Model Questions /

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

SimpleTinyMCE


Go to End


2 Posts   1368 Views

Avatar
Samba Sam

Community Member, 85 Posts

24 February 2010 at 12:28pm

Edited: 24/02/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=0

I 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

Avatar
Samba Sam

Community Member, 85 Posts

24 February 2010 at 3:09pm

Hi again,
I moved this post over to the correct forum which is DataObjectManager Module.
Sam