eZ API: removing an object (and all of its nodes)

Author Message

Piotrek Karaś

Monday 05 May 2008 11:49:54 am

Hi there,

Could anyone provide me with a recipe for completely removing an object (all of its versions, nodes, references/relations, etc...) via eZ API, leaving the installation in a consistent state? I've spent some time reading the kernel, some things worked better, some worse, but nothing worked 100%, and I'm running out of time ;) Basically, I'm looking for an operation list to remove object (all of its stuff) by its object ID.

I'd be grateful for any help on this.
Piotrek

--
Company: mediaSELF Sp. z o.o., http://www.mediaself.pl
eZ references: http://ez.no/partners/worldwide_partners/mediaself
eZ certified developer: http://ez.no/certification/verify/272585
eZ blog: http://ez.ryba.eu

Łukasz Serwatka

Tuesday 06 May 2008 12:04:25 am

Hi,

Take a look on eZContentObjectTreeNode::removeSubtrees( ) method. It takes array of nodeIDs by that you can easily find if you know objectID.

You can also use: bin\php\ezsubtreeremove.php from CLI.

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Pascal von Büren

Tuesday 06 May 2008 1:54:48 am

Hi Piotrek,

this seems to do the job fairly well:

	function deleteObject($objectId)
	{

    $moveToTrash = false;
		$object = eZContentObject::fetch((int) $objectId);
		if (!is_object($object))
		{
			return false;
		}
		$nodes = $object->attribute('assigned_nodes');
		//remove all nodes that are not main and their subtree
		foreach ($nodes as $node)
		{
			if (!$node->attribute('is_main'))
			{
        eZContentObjectTreeNode::removeSubtrees( array($node->attribute('node_id')), $moveToTrash );
			}
		}
		//loop again for the mainnode
		$nodes = $object->attribute('assigned_nodes');
		foreach ($nodes as $node)
		{
      eZContentObjectTreeNode::removeSubtrees( array($node->attribute('node_id')), $moveToTrash );
		}

		return true;
	}

Piotrek Karaś

Tuesday 06 May 2008 2:55:09 am

Thanks guys. Seems like I've been barking up <b>the right</b> tree ;) It just went wrong somehow... well, at least I know that I have to dig deeper ;)

Cheers,
Piotrek

--
Company: mediaSELF Sp. z o.o., http://www.mediaself.pl
eZ references: http://ez.no/partners/worldwide_partners/mediaself
eZ certified developer: http://ez.no/certification/verify/272585
eZ blog: http://ez.ryba.eu

André R.

Tuesday 06 May 2008 5:06:12 am

Slightly slimmer:

function deleteObject( $objectId )
{
	$moveToTrash = false;
	$object = eZContentObject::fetch( (int) $objectId );

	if (!is_object($object))
	{
		return false;
	}

	$nodes = $object->attribute('assigned_nodes');
	$mainNodeId = $object->attribute('main_node_id');
	//remove all nodes that are not main and their subtree
	foreach ($nodes as $node)
	{
		if ( $node->attribute('node_id') != mainNodeId )
		{
			eZContentObjectTreeNode::removeSubtrees( array($node->attribute('node_id')), $moveToTrash );
		}
	}
        // remove main node an it's subtree
	eZContentObjectTreeNode::removeSubtrees( array( $mainNodeId ), $moveToTrash );
	return true;
}

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

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 16:01:33
Script start
Timing: Jan 18 2025 16:01:33
Module start 'layout'
Timing: Jan 18 2025 16:01:33
Module start 'content'
Timing: Jan 18 2025 16:01:34
Module end 'content'
Timing: Jan 18 2025 16:01:34
Script end

Main resources:

Total runtime1.2245 sec
Peak memory usage4,096.0000 KB
Database Queries67

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0048 588.0469152.6406
Module start 'layout' 0.00480.0022 740.687539.4766
Module start 'content' 0.00701.2157 780.1641663.1094
Module end 'content' 1.22270.0018 1,443.273416.1250
Script end 1.2245  1,459.3984 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00330.2708160.0002
Check MTime0.00120.0996160.0001
Mysql Total
Database connection0.00080.065610.0008
Mysqli_queries1.163795.0338670.0174
Looping result0.00080.0649650.0000
Template Total1.192697.420.5963
Template load0.00240.194520.0012
Template processing1.190297.195120.5951
Template load and register function0.00010.007710.0001
states
state_id_array0.00110.087410.0011
state_identifier_array0.00200.161320.0010
Override
Cache load0.00200.1669270.0001
Sytem overhead
Fetch class attribute can translate value0.00110.091640.0003
Fetch class attribute name0.00200.167190.0002
XML
Image XML parsing0.00380.312240.0010
class_abstraction
Instantiating content class attribute0.00000.0014100.0000
General
dbfile0.00310.2522370.0001
String conversion0.00000.000540.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
5content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
5content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
7content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/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: 23
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs