Forums / Setup & design / Pls help to correct the code

Pls help to correct the code

Author Message

SathishKumar Subramanian

Thursday 18 December 2003 4:10:21 am

Hi,

I am using the following code. In this code, If either the total count of resources or the articles count greater than 0 then I am trying to publish the html content in the switch condition. If the resource count is greater than 0 then I want to publish the Message 1. Similarly if the articles count greater than 0 then I want to publish the Message 2.

The {switch match=$:totRes:totalResources} condition is not checking the required validation. So I am getting the Message 1 and 2 in all conditions eventhough total resources or total articles are 0.

The code is:

{*Get total Count of Study Materials*}
{let name=totRes totalResources=fetch('content','list_count', hash('parent_node_id',$node.node_id,'class_filter_array',array(17),'class_filter_type','include'))}

{*Get total Count of Articles*}
{let name=totArt totalArticles=fetch('content','list_count', hash('parent_node_id',$node.node_id,'class_filter_array',array(2),'class_filter_type','include'))}

{section show=(or(gt($totRes:totalResources,0),gt($totRes:totArt:totalArticles,0)))}
<table><tr><td>Hello Everybody!</td></tr></table>

{switch match=$:totRes:totalResources}
{case match=gt(0)}
<table><tr><td>Message 1 </td></tr></table>
{/case}
{/switch}

{switch match=$:totRes:totArt:totalArticles}
{case match=gt(0)}
<table><tr><td>Message 2 </td></tr></table>
{/case}
{/switch}

{/section}
{/let}
{/let}

How can I make it to function right? Pls help.
Sathizh

Paal Are Solberg

Tuesday 30 December 2003 11:26:16 pm

Namespaces can be tricky! Good idea is to introduce fewer of them by 1) grouping more of the "fetch'es" together at the top in the first "let" and 2) working more on your algorithm. Try the code below (I have not tested this, but it may give you some ideas)?

{*Get total Count of Study Materials*}
{let totalResources=fetch('content','list_count', hash('parent_node_id',$node.node_id,
'class_filter_array',array(17),'class_filter_type','include'))

{*Get total Count of Articles*}
totalArticles=fetch('content','list_count', hash('parent_node_id',$node.node_id,
'class_filter_array',array(2),'class_filter_type','include'))}

{section show=$totalResources|gt(0)}
<table><tr><td>Hello Everybody!</td></tr></table>
<table><tr><td>Message 1 </td></tr></table>
{section-else}
{section show=$totalArticles|gt(0)}
<table><tr><td>Hello Everybody!</td></tr></table>
table><tr><td>Message 2 </td></tr></table>
{/section}
{/section}
{/let}

eZ debug

Timing: Jan 19 2025 03:25:51
Script start
Timing: Jan 19 2025 03:25:51
Module start 'content'
Timing: Jan 19 2025 03:25:51
Module end 'content'
Timing: Jan 19 2025 03:25:52
Script end

Main resources:

Total runtime0.1581 sec
Peak memory usage2,048.0000 KB
Database Queries141

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0067 588.9531180.8359
Module start 'content' 0.00670.0056 769.789193.7578
Module end 'content' 0.01230.1457 863.5469525.3047
Script end 0.1580  1,388.8516 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00372.3502200.0002
Check MTime0.00140.9044200.0001
Mysql Total
Database connection0.00060.354910.0006
Mysqli_queries0.114072.09781410.0008
Looping result0.00120.77561390.0000
Template Total0.145391.910.1453
Template load0.00090.560410.0009
Template processing0.144491.330510.1444
Override
Cache load0.00060.401610.0006
Sytem overhead
Fetch class attribute can translate value0.00090.568710.0009
XML
Image XML parsing0.00020.134110.0002
General
dbfile0.00573.6150200.0003
String conversion0.00000.003830.0000
Note: percentages do not add up to 100% because some accumulators overlap

CSS/JS files loaded with "ezjscPacker" during request:

CacheTypePacklevelSourceFiles
CSS0extension/community/design/community/stylesheets/ext/jquery.autocomplete.css
extension/community_design/design/suncana/stylesheets/scrollbars.css
extension/community_design/design/suncana/stylesheets/tabs.css
extension/community_design/design/suncana/stylesheets/roadmap.css
extension/community_design/design/suncana/stylesheets/content.css
extension/community_design/design/suncana/stylesheets/star-rating.css
extension/community_design/design/suncana/stylesheets/syntax_and_custom_tags.css
extension/community_design/design/suncana/stylesheets/buttons.css
extension/community_design/design/suncana/stylesheets/tweetbox.css
extension/community_design/design/suncana/stylesheets/jquery.fancybox-1.3.4.css
extension/bcsmoothgallery/design/standard/stylesheets/magnific-popup.css
extension/sevenx/design/simple/stylesheets/star_rating.css
extension/sevenx/design/simple/stylesheets/libs/fontawesome/css/all.min.css
extension/sevenx/design/simple/stylesheets/main.v02.css
extension/sevenx/design/simple/stylesheets/main.v02.res.css
JS0extension/ezjscore/design/standard/lib/yui/3.17.2/build/yui/yui-min.js
extension/ezjscore/design/standard/javascript/jquery-3.7.0.min.js
extension/community_design/design/suncana/javascript/jquery.ui.core.min.js
extension/community_design/design/suncana/javascript/jquery.ui.widget.min.js
extension/community_design/design/suncana/javascript/jquery.easing.1.3.js
extension/community_design/design/suncana/javascript/jquery.ui.tabs.js
extension/community_design/design/suncana/javascript/jquery.hoverIntent.min.js
extension/community_design/design/suncana/javascript/jquery.popmenu.js
extension/community_design/design/suncana/javascript/jScrollPane.js
extension/community_design/design/suncana/javascript/jquery.mousewheel.js
extension/community_design/design/suncana/javascript/jquery.cycle.all.js
extension/sevenx/design/simple/javascript/jquery.scrollTo.js
extension/community_design/design/suncana/javascript/jquery.cookie.js
extension/community_design/design/suncana/javascript/ezstarrating_jquery.js
extension/community_design/design/suncana/javascript/jquery.initboxes.js
extension/community_design/design/suncana/javascript/app.js
extension/community_design/design/suncana/javascript/twitterwidget.js
extension/community_design/design/suncana/javascript/community.js
extension/community_design/design/suncana/javascript/roadmap.js
extension/community_design/design/suncana/javascript/ez.js
extension/community_design/design/suncana/javascript/ezshareevents.js
extension/sevenx/design/simple/javascript/main.js

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1pagelayout.tpl<No override>extension/sevenx/design/simple/templates/pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0001 secs