17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1057 Views |
-
Snippet module

30 May 2008 at 3:01am
hey guys,
Just a quick question, is there any snippet module in the Silverstripe CMS?. What i mean is that i need to be able to control text all over the layout, such as the copyright notice etc.
Anyone using some method it would like to share, or is this even available already?..
Thank you...
-
Re: Snippet module

30 May 2008 at 3:24am
You can easily do this without a module, just make some extra dbfields, make a cmsfield for it, and use the variable in the template. so something like
static $db = array(
"FooterText " => "Text"
);and in the getCMSFields method:
$fields->addFieldToTab("Root.Content.Footer", new TextareaField("FooterText", "Set your FooterText here", 4));
you can then use the $FooterText variable in your template.
-
Re: Snippet module

2 June 2008 at 11:17pm
Hey,
Thanks!. I appreciate your help. I was wondering if you can explain this just a little bit better?. I would really appreciate it...
Thanks again.
| 1057 Views | ||
|
Page:
1
|
Go to Top |


