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.

All other Modules /

Discuss all other Modules here.

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

Simplify - new version allows customisation of the Tiny MCE HTML Editor


Go to End


30 Posts   9604 Views

Avatar
AllArt

Community Member, 1 Post

7 January 2010 at 11:14pm

Hi there Froog!

Very nice module! I have a case where I have only 2 fields in the Tab Content, Main. Besides that I've made all other tabs and fields invisible. Is it possible to make the tabs Content and Main invisible and to only show the two fields in the root? (something like you've done in a screenshot You've posted earlier: http://silverstripe.org/assets/Uploads/simplifyexample.png ).

I'd like to hear from you. Great work so far with this nice module!

Greetings, Allart

Avatar
UncleCheese

Forum Moderator, 4102 Posts

13 January 2010 at 10:00am

I have a bug report. Took me forever to get to the bottom of this.. My page type dropdown in the behavior tab was showing the class name instead of the singular name, e.g. "MyPageClass" instead of "My Page Class".. only for the selected class name at the top.. all the others were fine. Finally tracked it down to the SimplifyDataObjectDecorator class.

line 17:

change

		$classList[$this->owner->class] = $this->owner->class;

to

		$classList[$this->owner->class] = $this->owner->i18n_singular_name();

Thanks for all your hard work!

Avatar
froog

Community Member, 43 Posts

25 January 2010 at 11:05am

Hi Allart,

That screenshot was from an early version of Simplify that wasn't very customisable - for example, you could only hide certains fields and tabs - so I could easily hide tab labels using CSS.

I agree that its a useful feature - I've included it as a new feature request for the next version.

Uncle Cheese - thanks, I've fixed that bug for the next release :)

Avatar
timwjohn

Community Member, 98 Posts

21 March 2010 at 12:20pm

I installed Simplify with the hope that I could hide the Files & Images tab from a group. Can't seem to find the option. Am I missing something? Thanks!

Avatar
froog

Community Member, 43 Posts

21 March 2010 at 10:05pm

Hi timwjohn,

That option is built into Silverstripe, so Simplify doesn't have it.
To set it, just click on the Permissions tab for the Group

if you're using less than v2.4, change the "Full administrative rights" to "Access to Site Content (CMS Main)" and add any other permissions you need (except for Files & Images of course) :)

If you're using 2.4+, just uncheck "Access to Files & Images"

Avatar
timwjohn

Community Member, 98 Posts

21 March 2010 at 11:57pm

Hi,

That's what I tried initially. But it means that limited groups are unable to upload attachments to my custom DataObjects. So I do want them to be able to add and remove files on a per object basis, but not through the Files & Images tab. Cleaning-up operations can be performed by administrators... Always some special requirement, but that's clients for you!

Thanks

Go to Top