Costum module? How does it work?

Author Message

Jens Kultima

Saturday 22 March 2008 11:31:45 am

Hi,

I will try to explain my problem in detail:

What I want to do:
have a custom page for viewing and deleting information collections.

Background:
There is a module for doing this in the eZ Publish Admin interface. From here one can copy and paste pretty much of the template code for viewing which information which nodes have collected. So far so good.

Where the problems come in:
When I want to delete a a peice of information colected by a node.

What have I done so far:
I have a custom template for a node which will view all the collected information. I have created a 'remove this collection'-button for each piece of information. Currently this button works as a delete-button, code copied straight from the template of the admin-module code.

Main part of the code look like this:

<div class="controlbar">
<form action="{concat('/ezwebin_site_admin/infocollector/collectionlist/', $MY.contentobject_id)}" method="post" name="CollectionRemove">
<input class="button" type="submit" name="RemoveCollectionsButton" value="Radera" />
<input type="hidden" name="CollectionIDArray[]" value={$MY.id} />
<input type="hidden" name="FUFRedirect" value={$currentnode.node_id} />
</form>

The FUFRedirect is a varibale added so that I can redirect the user to a node of choice. I have also added a few lines of code in the PHP-file controlling the admin-module so that is redirection would work. HOWEVER, it does NOT.

What happens when I press the button? It redirects me to the admin-webinterface and ask if I want to delete the collection and from there I can press "ok" or "cancel".

My questions are:
1. Does the <div class="controlbar"> code do anything?
2. How do skip the confirmation step? I tried to implement the code for the "ok" button only in my template code and at the same time sending the node id as a hidden variable, but this does not work. Why?
3. In the admin interface when pressing the delete button you are redirected to the confirmation step. BUT in that template I can find NO CODE for identifying which node's information is to be delted. How does eZ know this information? It is sent as a hidden variable in the previous step, but where is it stored and how can I modify these steps so that I can work around the confirmation-step?

4. In the PHP-file controlling the admin interface module there is this piece of code:

if( $module->isCurrentAction( 'ConfirmRemoval' ) )
{
    $collectionIDArray =& $http->sessionVariable( 'CollectionIDArray' );
	
    if( is_array( $collectionIDArray ) )
    {
        foreach( $collectionIDArray as $collectionID )
        {
            eZInformationCollection::removeCollection( $collectionID );
        }
    }
	
	$FUFRedirect =& $http->sessionVariable( 'FUFRedirect' );
	if ( is_numeric( $FUFRedirect ) )
	{
		$module->redirectToView( 'view', array( 'full', $FUFRedirect ) );
	}
	
    $objectID = $http->sessionVariable( 'ObjectID' );
    $module->redirectTo( '/infocollector/collectionlist/' . $objectID );
}

<b>How do I call this module? As in which 'action' should use to call this function?</b>

5. Is it possible for me to use this piece of PHP-code and call it from a different location without viewing the template connected to it?

Many question, and I hope that someone out there could please explain it to me!

In general, I have not quite grepped how "post"-functions work and how one page can use information stored by a previous page and why this piece of information is necessary for it to work, ie. the confirmation page will only work correctly if you pressed the "delete this"-button for the correct node.

Thank you!

Regards,
Jens

Maxime Thomas

Tuesday 01 April 2008 11:17:12 pm

Hi,

To fill your needs, you may use this article :
http://ez.no/developer/articles/an_introduction_to_developing_ez_publish_extensions

Another tips :

1 - You may try to design your own module
2 - You may try some specific fetch function to fetch the information collection :
http://ez.no/doc/ez_publish/technical_manual/4_0/reference/modules/content/fetch_functions/collected_info_collection

Hope it helps !

Maxime Thomas
maxime.thomas@wascou.org | www.wascou.org | http://twitter.com/wascou

Company Blog : http://www.wascou.org/eng/Company/Blog
Technical Blog : http://share.ez.no/blogs/maxime-thomas

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 31 2025 06:11:00
Script start
Timing: Jan 31 2025 06:11:00
Module start 'layout'
Timing: Jan 31 2025 06:11:00
Module start 'content'
Timing: Jan 31 2025 06:11:00
Module end 'content'
Timing: Jan 31 2025 06:11:00
Script end

Main resources:

Total runtime0.0158 sec
Peak memory usage2,048.0000 KB
Database Queries3

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0056 588.1250151.2109
Module start 'layout' 0.00560.0032 739.335936.6484
Module start 'content' 0.00880.0055 775.984494.2500
Module end 'content' 0.01440.0014 870.234433.9922
Script end 0.0158  904.2266 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.002515.5766140.0002
Check MTime0.00116.9997140.0001
Mysql Total
Database connection0.00084.942410.0008
Mysqli_queries0.003220.150230.0011
Looping result0.00000.118910.0000
Template Total0.00116.610.0011
Template load0.00095.448010.0009
Template processing0.00021.173910.0002
Override
Cache load0.00064.039410.0006
General
dbfile0.00127.431680.0001
String conversion0.00000.057240.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_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