making pagelayout.tpl adjust for specific pages

Author Message

William Gourlie

Friday 07 May 2004 2:24:12 pm

For my first ez publish site, I've decided to convert my current company website into an ez publish site. Been pretty easy so far, got a front page working and a news page, but I am having a problem converting one aspect of the website. The original site had an image that would run down the side of the page displaying the page name, for example "Home", "About Us" or "Services". This portion of the html is located within the pagelayout.tpl. Now, obviously every page uses the pagelayout.tpl for the main layout, so if the pagelayout.tpl uses the "Home" image, every page will have the "Home" image. I've thought about using a template override for each section on the site, but quickly came to the conclusion that it would defeat one of the great aspects of templates, changing the one file and having it reflect on every page. ANYWAY, theres gotta be a better way to do it, but I really have no idea how. If someone could point me in the right direction it would be greatly appreciated.

Thanks,

Brian

Vivek Chopra

Friday 07 May 2004 2:43:30 pm

Brian,

Create sections for "Home", "About Us", "Services" and all other parts of the website and then use a case statement in pagelayout.tpl to check the section and display the correct image name. You can get the section in your pagelayout.tpl through $DesignKeys:used.section

I hope this helps. I am also on my first ezpublish site.

Vivek

William Gourlie

Friday 07 May 2004 3:20:05 pm

Very much appreciated. Good luck on your site!

-Brian

Conor Murray

Monday 10 May 2004 5:50:59 am

Here's an easy way to work around your problem... use pagelayout.tpl for every page EXCEPT the home page and override it for the home page. The home page is node 2 by default.

You can also embed code in your pagelayout.tpl to display different images etc. in different sections of the site, like this:

{let cursect=$module_result.section_id}
{switch name=sw1 match=$cursect}
  {case match=3}
    <img src={"pict_camp.jpg"|ezimage} alt="picture" width="160" height="147" />
  {/case}
  {case match=4}
    <img src={"pict_hre.jpg"|ezimage} alt="picture" width="160" height="147" />
  {/case}
  {case match=5}
    <img src={"pict_youth.jpg"|ezimage} alt="picture" width="160" height="147" />
  {/case}
...
  {case}
    <img src={"pict_search.jpg"|ezimage} alt="picture" width="160" height="147" />
  {/case}
{/switch}
...
{/let}

The 'case' without 'match' is the default case.

HTH,
Conor Murray

Language is a virus - William S Burroughs

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 18 2025 20:53:35
Script start
Timing: Jan 18 2025 20:53:35
Module start 'layout'
Timing: Jan 18 2025 20:53:35
Module start 'content'
Timing: Jan 18 2025 20:53:37
Module end 'content'
Timing: Jan 18 2025 20:53:37
Script end

Main resources:

Total runtime1.2724 sec
Peak memory usage4,096.0000 KB
Database Queries62

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0062 588.0469152.6406
Module start 'layout' 0.00620.0046 740.687539.4922
Module start 'content' 0.01081.2601 780.1797545.9063
Module end 'content' 1.27090.0014 1,326.085912.1250
Script end 1.2723  1,338.2109 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00410.3257160.0003
Check MTime0.00170.1355160.0001
Mysql Total
Database connection0.00120.093010.0012
Mysqli_queries1.212795.3103620.0196
Looping result0.00070.0568600.0000
Template Total1.230096.720.6150
Template load0.00200.158420.0010
Template processing1.227996.509120.6140
Template load and register function0.00020.016310.0002
states
state_id_array0.00120.090910.0012
state_identifier_array0.00290.226820.0014
Override
Cache load0.00170.1335210.0001
Sytem overhead
Fetch class attribute can translate value0.00070.057830.0002
Fetch class attribute name0.00100.081340.0003
XML
Image XML parsing0.00040.029230.0001
class_abstraction
Instantiating content class attribute0.00000.000740.0000
General
dbfile0.00410.3218100.0004
String conversion0.00000.000840.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
4content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
6content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 14
 Number of unique templates used: 6

Time used to render debug report: 0.0002 secs