21288 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1255 Views |
-
1 page with 2+ page types

24 June 2009 at 2:02am
Hello,
how can i make more then one page type on one page?
For example we have a normal Page page type.
I would love to put a custom Form page type under the above mentioned Page page type.
What's the easiest way to do this?
-
Re: 1 page with 2+ page types

24 June 2009 at 1:11pm
Page types are intimately linked to the template. You can only have 1 template/page type per page. That said, you can do all kinds of tweaks to get to a solution.
You could extend your page type to another page type such as CustomFormPage extends Page and put the code in there that creates the custom form. Then just copy and paste the page template to create the new associated template and then rebuild. That should do it.
Was that too complex?
-
Re: 1 page with 2+ page types

24 June 2009 at 5:09pm
Yes, page types are designed to inherit from each other.
If you have CustomFormPage extends Page, it will first look for CustomFormPage.ss and then use Page.ss if that's not found.
Combined with the Layout subfolder functionality, this can be quite powerful. If you have these 3 templates:
templates/Page.ss - contains the template variable '$Layout' in it somewhere
templates/Layout/Page.ss
templates/Layout/CustomFormPage.ssThen the logic is this:
* On a Page page, the page will be rendered using templates/Layout/Page.ss, and then that will be placed inside templates/Page.ss where the $Layout code is.
* On a CustomFormPage page, the page will be rendered using templates/Layout/CustomFormPage.ss, and then that will be placed inside templates/Page.ss where the $Layout code is.In other words, you can have your "common skin" stuff in templates/Page.ss, and then have a region inside that that is customised on a per-pagetype basis.
I hope that makes sense; it's a little tricky to describe!
-
Re: 1 page with 2+ page types

24 June 2009 at 8:56pm
Thnx Sam.
If i make CustomFormpage page it will use the Page.ss aswell or only when CustomFormpage isn't found?
Is there a way to include exsisting Page templates?
For example
I make a formpage page and on top i include:page.ss -
Re: 1 page with 2+ page types

26 June 2009 at 2:36am
No it's only like this:
Page extends SiteTree
CustomFormPage extends PageFor the templates:
If CustomFormPage.ss then use it
elseif Page.ss then use itThats all
-
Re: 1 page with 2+ page types

3 July 2009 at 11:40am
Great, someone has asked this question already
I'm trying to do this for UserDefinedForm, so ... Should I see templates/layout/UserDefinedForm.ss displayed from $Layout in templates/Page.ss ?
The reason is: I'm not seeing this happen right now, UserDefinedForm extends Page so it should work right? Or would it be better to have CustomForm extends UserDefinedForm and expect templates/Pages.ss + templates/layout/CustomForm.ss to work?
This is all because CalendarDateField.php adds Requirements::css which is overriding my theme's form.css GRRR and was hoping that <% require themedCSS(form) %> will work in there, but probably not.
Cheers,
Rich
| 1255 Views | ||
|
Page:
1
|
Go to Top |



