5095 Posts in 1518 Topics by 1114 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1129 Views |
-
Titles inside CMS tabs

23 April 2009 at 10:27am
In the CMS, by default in the "metadata" tab, there is a title "Search Engine Meta-tags". How can I add titles like these into my own CMS tabs that I am creating?
-
Re: Titles inside CMS tabs

25 April 2009 at 11:09am
Hi Ben,
Could you give a brief example or reference for this?
thanks,
Artyom -
Re: Titles inside CMS tabs

25 April 2009 at 11:27am
Artyom,
Here is an example of how I used this. I wanted to create a new field for video, that allows the user to upload and play video using a custom plugin I developed. The user should provide the CMS with a file, and a name for that video, and I wanted a title to point out the below fields relate to videos.
function getCMSFields(){
$fields = parent::getCMSFields();
$fields->addFieldToTab("Root.Content.Main", new HeaderField("Video Upload","2")); //this is my header level two
$fields->addFieldToTab("Root.Content.Main", new TextField("VideoTitle", "Video Title"));
$fields->addFieldToTab("Root.Content.Main", new FileIFrameField("VideoUpload", "Upload Your Video"));
return $fields;
}Hope that helps!
-
Re: Titles inside CMS tabs

25 April 2009 at 11:32am
Interesting. I'll try that.
thx, Dan
(Moderator, is there a how-to on this? If not, there should be.)
-
Re: Titles inside CMS tabs

25 April 2009 at 11:36am
It is somewhat explained in the Wiki: http://doc.silverstripe.org/doku.php?id=headerfield
| 1129 Views | ||
|
Page:
1
|
Go to Top |


