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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

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

Can SS fulfil my client's requirements?


Go to End


6 Posts   2278 Views

Avatar
KT

Community Member, 3 Posts

3 September 2010 at 8:19pm

Hi,

We're recommending SS to one of our clients, but they would like confirmation that it can handle a few basic requirements. I'm pretty hopeful all the answers are going to be 'yes' - especially as we have PHP developers on hand, but not having much (any!) SS experience, I wondered if anyone can help? These are the requirements I've been asked to confirm:

1. Content pages can have three column layout
2. Can have dynamically-driven on-page subnavigation with control over whether sibling pages, child pages or both are displayed
2. System supports creation of re-usable components that can be dropped into selected pages
3. Can create more than one editable region per page
4. Clients can generate their own forms (with sufficient training)

Many thanks

Avatar
Taffy

Community Member, 119 Posts

3 September 2010 at 11:12pm

Hi KT,

1. Thats up to your HTML and CSS. There are no layout layout limitations with SS.

2. Yep. Out of the box.

3. Widgets are your friend here I think. http://doc.silverstripe.org/widgets

4. Yep - http://doc.silverstripe.org/getcmsfields?s[]=content&s[]=area

5. There is a user forms module. http://silverstripe.org/user-forms-module/

Avatar
KT

Community Member, 3 Posts

3 September 2010 at 11:18pm

Exactly the answer I was hoping for! That's great, much obliged Taffy.

Avatar
bummzack

Community Member, 904 Posts

3 September 2010 at 11:48pm

Regarding the re-usable components: Usually a Widgets holds its own content. So if you have a Widget where you can enter some text, then this text will be unique for every Widget instance (i.e. not reusable).
But there's an easy workaround for this:
1) Create a custom DataObject that represents a content-component (could be composed of a Title, Text and an Image).
2) Manage your content-components at a central location (has_many content-components). The HomePage or SiteConfig is probably a good place for that. Use the DataObjectManager module for content-component CRUD. Here's a good tutorial that will help you getting started using SiteConfig: http://ssbits.com/2-4-working-with-siteconfig/
3) In the widget, simply allow the users to select the desired content-component from a dropdown (has_one content-component).

This will effectively allow your users to place the same content-component on multiple pages. Changing the component itself will change all "instances" of this component as well.

Avatar
KT

Community Member, 3 Posts

3 September 2010 at 11:56pm

thanks banal!

Avatar
Taffy

Community Member, 119 Posts

7 September 2010 at 8:12pm

Actually for more than one content field, if you are lazy, there is a page elements module @ http://www.page-elements.com/