21487 Posts in 5783 Topics by 2621 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 659 Views |
-
Edit an include in the CMS?

17 April 2009 at 9:04pm
I have areas of a template which are the same for all page types (i.e. quicklinks) so I have used includes. Is there a way I can make these includes editeble in the CMS or is there another way to do this?
-
Re: Edit an include in the CMS?

18 April 2009 at 6:25pm Last edited: 19 April 2009 5:37pm
Well lots of ways people talk about editing global fields / settings, the way I prefer to do it is to make a HTMLText field on your HomePage page type (most of the time you will have a custom homepagetype, if not then just put it on page)
mysite/code/HomePage.php
static $db = array('QuickLinks' => 'HTMLText');
function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab('Root.Content.Main', new HTMLEditorField('QuickLinks'));
return $fields;
}After running dev/build/ and reloading the CMS you should have a HTML Editor in the CMS under the homepage for quicklinks. Then you just need to update your template so that it does
<% control Page(home) %>
$QuickLinks
<% end_control %>That will give you the QuickLinks field on the Home Page and away you go. Other way people do it is create custom page types for the 'Site Settings' and store the field on there.
-
Re: Edit an include in the CMS?

20 April 2009 at 8:20pm
I already know how to do it this way, but it could be confusing for the client editing the homepage which will also effect the other pages.
Doing it the "site settings" way, would it matter what is in that template, as long as I have the includes ($QuickLinks)? i.e. no divs etc.
-
Re: Edit an include in the CMS?

20 April 2009 at 9:18pm
I have made a tutorial on doing this using the PageType method (i.e. creating a pagetype called 'Quicklinks' etc.), see:
http://www.ssbits.com/create-a-static-sidebar/
Hope that helps
| 659 Views | ||
|
Page:
1
|
Go to Top |



