Forums / Developer / Showing template in event type

Showing template in event type

Author Message

Eirik Alfstad Johansen

Saturday 04 September 2004 4:21:28 am

Hi,

I've written an event type that runs on the content | publish | after trigger and is supposed to display a template. The code I'm using is as follows:

$requestUri = eZSys::requestUri();

$process->Template = array( 'templateName' => 'design:storeprofile/profilestored.tpl',
                          'templateVars' => array( 'viewmode' => 'full',
                                                   'request_uri' => $requestUri )
                          );
return EZ_WORKFLOW_TYPE_STATUS_FETCH_TEMPLATE_REPEAT;

However, instead of displaying the template, I'm forwarded to the full view of the parent node under which I've just created a node (the default behaviour of content/edit). I know that the code block gets executed, so what could I be doing wrong?

BTW, I'm running 3.4.0.

Thanks in advance !

Sincerely,

Eirik Alfstad Johansen
http://www.netmaking.no/

Paul Forsyth

Saturday 04 September 2004 5:03:27 am

Eirik,

This occurs because content/edit doesnt respect the workflow result. I filed this bug a while back:

http://ez.no/community/bug_reports/workflow_results_are_ignored_in_content_edit_php

Here is a patch i used to get redirects to work. Im not sure if it will work for 'results'. In my workflow i have a line like:

$process->RedirectUrl="/mymodule/myview";

whoich works with this code. Please play with it!

--- old/kernel/content/edit.php	2004-07-27 13:09:30.000000000 +0100
+++ new/kernel/content/edit.php	2004-07-30 15:03:35.408200218 +0100
@@ -30,8 +30,9 @@
 // http://www.gnu.org/copyleft/gpl.html.
 //
 // Contact licence@ez.no if any conditions of this licencing isn't clear to
 // you.
+
 //
 
 include_once( 'kernel/classes/eztrigger.php' );
 include_once( "lib/ezutils/classes/ezini.php" );
@@ -333,8 +334,38 @@
             eZDebug::accumulatorStart( 'publish', '', 'publish' );
             $oldObjectName = $object->name();
             $operationResult = eZOperationHandler::execute( 'content', 'publish', array( 'object_id' => $object->attribute( 'id' ),
                                                                                          'version' => $version->attribute( 'version' ) ) );
+            $hasRedirected = false;
+switch( $operationResult['status'] )
+{
+    case EZ_MODULE_OPERATION_HALTED:
+    {
+        if (  isset( $operationResult['redirect_url'] ) )
+        {
+
+	  eZDebug::writeNotice("redirect_url".$operationResult['redirect_url']);
+            $module->redirectTo( $operationResult['redirect_url'] );
+	    $hasRedirected = true;
+        }
+        else if ( isset( $operationResult['result'] ) )
+        {
+            $result =& $operationResult['result'];
+            $resultContent = false;
+            if ( is_array( $result ) )
+            {
+                if ( isset( $result['content'] ) )
+                    $resultContent = $result['content'];
+                if ( isset( $result['path'] ) )
+                    $Result['path'] = $result['path'];
+            }
+            else
+                $resultContent =& $result;
+            $Result['content'] =& $resultContent;
+        }
+    }break;
+}
+
             eZDebug::accumulatorStop( 'publish' );
 
             $object = eZContentObject::fetch( $object->attribute( 'id' ) );
 
@@ -342,9 +373,8 @@
 
             $http =& eZHttpTool::instance();
 
             $node = $object->mainNode();
-            $hasRedirected = false;
             if ( $http->hasSessionVariable( 'ParentObject' ) && $http->sessionVariable( 'NewObjectID' ) == $object->attribute( 'id' ) )
             {
                 $parentArray = $http->sessionVariable( 'ParentObject' );
                 $parentURL = $module->redirectionURI( 'content', 'edit', $parentArray );


paul

Xavier Dutoit

Friday 26 November 2004 7:54:11 am

One of my colleague was banging his head on the wall for the past few days trying to solve this problem...

Any reason to use a switch ? are we supposed to deal with other values EZ_MODULES ?

X+

http://www.sydesy.com

eZ debug

Timing: Jan 19 2025 15:13:48
Script start
Timing: Jan 19 2025 15:13:48
Module start 'content'
Timing: Jan 19 2025 15:13:48
Module end 'content'
Timing: Jan 19 2025 15:13:48
Script end

Main resources:

Total runtime0.1921 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.0080 588.9531180.8359
Module start 'content' 0.00800.0063 769.789197.8984
Module end 'content' 0.01440.1777 867.6875526.7734
Script end 0.1921  1,394.4609 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00381.9877200.0002
Check MTime0.00130.6970200.0001
Mysql Total
Database connection0.00070.360810.0007
Mysqli_queries0.139672.68221410.0010
Looping result0.00150.78841390.0000
Template Total0.177292.210.1772
Template load0.00090.473710.0009
Template processing0.176391.757010.1763
Override
Cache load0.00060.319110.0006
Sytem overhead
Fetch class attribute can translate value0.00130.681310.0013
XML
Image XML parsing0.00020.111310.0002
General
dbfile0.00733.7871200.0004
String conversion0.00000.003030.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