Information collection problem

Author Message

Jens Kultima

Saturday 22 March 2008 11:32:23 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

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 22:25:49
Script start
Timing: Jan 18 2025 22:25:49
Module start 'layout'
Timing: Jan 18 2025 22:25:49
Module start 'content'
Timing: Jan 18 2025 22:25:50
Module end 'content'
Timing: Jan 18 2025 22:25:50
Script end

Main resources:

Total runtime0.8204 sec
Peak memory usage4,096.0000 KB
Database Queries46

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0080 589.0234152.6250
Module start 'layout' 0.00800.0046 741.648439.4453
Module start 'content' 0.01260.8064 781.0938426.0313
Module end 'content' 0.81900.0014 1,207.125012.1641
Script end 0.8204  1,219.2891 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00310.3762160.0002
Check MTime0.00120.1507160.0001
Mysql Total
Database connection0.00110.129410.0011
Mysqli_queries0.767293.5188460.0167
Looping result0.00070.0875440.0000
Template Total0.770393.920.3852
Template load0.00180.223320.0009
Template processing0.768593.671420.3842
Template load and register function0.00010.013210.0001
states
state_id_array0.00180.213910.0018
state_identifier_array0.00140.172620.0007
Override
Cache load0.00150.1768300.0000
Sytem overhead
Fetch class attribute can translate value0.00050.061110.0005
Fetch class attribute name0.00070.085210.0007
XML
Image XML parsing0.00010.017110.0001
class_abstraction
Instantiating content class attribute0.00000.000810.0000
General
dbfile0.00150.1809100.0001
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
1content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
9content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
6content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
2content/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: 20
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs