Checkbox test condition in template?

Author Message

Olaf Fichtner

Wednesday 23 February 2011 9:52:44 pm

I'm going slightly mad... I attempted to insert a checkbox data type into a document class and then to display something if the box is checked during document creation. The problem is, I can not find a test condition to use in the template.

"has_content" or "is_empty" do not work, because all checkboxes have content. Then I stumbled on "attribute(show)" and could at least see where a checked and a not checked box differ, but going through all kinds of operators I could still not get to different (checked/not checked) results. What I try looks very simple:

{if $node.data.map.check|eq('1')}

<div>display something</div>

{/if}

But it does not work. (The checkbox is named "check".) Also changing it to $node.data.map.check.value|eq('1')} (because the value for a checked box is 1) makes no difference. Unfortunately, most people only want to fetch such information for queries, so a forum search did not really bring me forward.

I am pretty sure this is something mindboggingly simple, but since I just can not find the answer I would be grateful for a helping hand...

Marko Žmak

Thursday 24 February 2011 5:57:05 am

The solution is like this:

{if $node.data_map.check.content}
    <div>display something</div>
{/if}

Note that it's "data_map" and not "data.map".

--
Nothing is impossible. Not if you can imagine it!

Hubert Farnsworth

Olaf Fichtner

Thursday 24 February 2011 6:05:16 pm

Aaarrrggghhhh, I knew it was something for which I would bang my head against the wall...

Thank you!

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 04:12:56
Script start
Timing: Jan 18 2025 04:12:56
Module start 'layout'
Timing: Jan 18 2025 04:12:56
Module start 'content'
Timing: Jan 18 2025 04:12:57
Module end 'content'
Timing: Jan 18 2025 04:12:57
Script end

Main resources:

Total runtime1.2482 sec
Peak memory usage4,096.0000 KB
Database Queries57

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0058 588.0313152.6406
Module start 'layout' 0.00580.0027 740.671939.4688
Module start 'content' 0.00851.2381 780.1406536.2031
Module end 'content' 1.24660.0015 1,316.343812.1563
Script end 1.2481  1,328.5000 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00330.2649160.0002
Check MTime0.00130.1059160.0001
Mysql Total
Database connection0.00060.045410.0006
Mysqli_queries1.198796.0411570.0210
Looping result0.00050.0432550.0000
Template Total1.216597.520.6083
Template load0.00210.166820.0010
Template processing1.214497.296620.6072
Template load and register function0.00020.017810.0002
states
state_id_array0.00080.061710.0008
state_identifier_array0.00170.132920.0008
Override
Cache load0.00170.1335180.0001
Sytem overhead
Fetch class attribute can translate value0.00070.055620.0003
Fetch class attribute name0.00160.126840.0004
XML
Image XML parsing0.00110.087520.0005
class_abstraction
Instantiating content class attribute0.00000.000740.0000
General
dbfile0.00080.0648180.0000
String conversion0.00000.000640.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
3content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
4content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 11
 Number of unique templates used: 6

Time used to render debug report: 0.0002 secs