ezwebin toolbar on plain site installation

Author Message

Reinhard Hutter

Tuesday 15 January 2008 8:04:05 am

Hello,
I've an existing ezPublish 3.9 plain_site installation, into which I'm integrating the frontside editing toolbar only as described by Andre R. in http://ez.no/developer/forum/install_configuration/install_website_interface

Most things work as intented, except after clicking the preview button on the editing toolbar I see two frontend editing toolbars, once the expected version_view toolbar, but also the standard toolbar with the create-select box.

My pagelayout.tpl looks like this:

    ...
    <td class="bottom_center">
      {* WEBSITE TOOLBAR START *}
      {$current_node_id = $module_result.node_id}
      {include uri="design:parts/website_toolbar.tpl"}
      {* WEBSITE TOOLBAR END *}
      <div class="content">{$module_result.content}</div>
      ...

The toolbar itself obviously notices when it is in editing mode and doesn't display website_toolbar.tpl included by pagelayout.tpl, and only displays website_toolbar_edit.tpl which is included by $module_result.content. However, when previewing, both website_toolbar.tpl as included by pagelayout.tpl itself and website_toolbar_preview.tpl included by $module_result.content are displayed.

Can anyone tell me how to prevent the standard editing toolbar from showing up when previewing changes via the frontend toolbar?

Thanks in advance,
Reinhard

André R.

Tuesday 15 January 2008 12:30:54 pm

Try the code from ezwebin pagelayout.tpl:

  <!-- Toolbar area: START -->
  <div id="toolbar">
  {if and( $current_node_id,
           $current_user.is_logged_in,
           and( is_set( $content_info.viewmode ), ne( $content_info.viewmode, 'sitemap' ) ),
           and( is_set( $content_info.viewmode ), ne( $content_info.viewmode, 'tagcloud' ) ) ) }
  {include uri='design:parts/website_toolbar.tpl'}
  {/if}
  </div>
  <!-- Toolbar area: END -->

http://svn.ez.no/svn/extensions/ezwebin/trunk/packages/ezwebin_extension/ezextension/ezwebin/design/ezwebin/templates/

eZ Online Editor 5: http://projects.ez.no/ezoe || eZJSCore (Ajax): http://projects.ez.no/ezjscore || eZ Publish EE http://ez.no/eZPublish/eZ-Publish-Enterprise-Subscription
@: http://twitter.com/andrerom

Reinhard Hutter

Thursday 17 January 2008 8:22:39 am

Thanks, checking for $module_result.content_info did it for me, if anyone else has similar troubles, my pagelayout.tpl now looks like:

      ...
      {* WEBSITE TOOLBAR START *}
      {def $current_node_id = $module_result.node_id}
      {def $content_info = hash()}
      {if is_set($module_result.content_info)}
        {set $content_info = $module_result.content_info}
        {include uri="design:parts/website_toolbar.tpl"}
      {/if}
      {* WEBSITE TOOLBAR END *}
      <div class="content">{$module_result.content}</div>
      ...

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 10:27:47
Script start
Timing: Jan 18 2025 10:27:47
Module start 'layout'
Timing: Jan 18 2025 10:27:47
Module start 'content'
Timing: Jan 18 2025 10:27:47
Module end 'content'
Timing: Jan 18 2025 10:27:47
Script end

Main resources:

Total runtime0.6491 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.0063 588.1641152.6563
Module start 'layout' 0.00630.0028 740.820339.4922
Module start 'content' 0.00910.6386 780.3125544.6953
Module end 'content' 0.64770.0014 1,325.007812.4375
Script end 0.6491  1,337.4453 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00320.4983160.0002
Check MTime0.00130.2050160.0001
Mysql Total
Database connection0.00070.111710.0007
Mysqli_queries0.603692.9909570.0106
Looping result0.00050.0792550.0000
Template Total0.615494.820.3077
Template load0.00230.348320.0011
Template processing0.613194.454520.3066
Template load and register function0.00020.025010.0002
states
state_id_array0.00080.129110.0008
state_identifier_array0.00110.166520.0005
Override
Cache load0.00180.2741200.0001
Sytem overhead
Fetch class attribute can translate value0.00070.108820.0004
Fetch class attribute name0.00100.161240.0003
XML
Image XML parsing0.00070.101420.0003
class_abstraction
Instantiating content class attribute0.00000.001440.0000
General
dbfile0.00080.1174170.0000
String conversion0.00000.001540.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
2content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
6content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
3content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 17
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs