Script to change an object's location after X days

Author Message

Alex Jones

Wednesday 19 May 2004 12:59:26 pm

I need to set up a script which will go through all of the items in a folder and based on the contents of a specific field determine if the item should be moved to an archive folder. This plain text field contains a string consisting of the date that the item sold, in the format year month day: 2004 05 19. Before I sit down to write the script from scratch, I thought I would ask the community if anyone else has anything I could use as a foundation for my work. Any help would be greatly appreciated!

Alex

Alex
[ bald_technologist on the IRC channel (irc.freenode.net): #eZpublish ]

<i>When in doubt, clear the cache.</i>

Dominik Pich

Friday 21 May 2004 1:25:30 am

Maybe the sheet extension?

Alex Jones

Friday 21 May 2004 6:44:56 am

Thanks for the reply Dominik. What is the sheet extension? A quick search of ez.no didn't return any info.

Alex

Alex
[ bald_technologist on the IRC channel (irc.freenode.net): #eZpublish ]

<i>When in doubt, clear the cache.</i>

Silke Fox

Wednesday 26 May 2004 1:16:53 am

Here's a code snippet to change an object's node assignment

// get max version
$maxVersion =& $object->getVersionCount();
$version =& $object->version( $maxVersion );
$nodeAssignments = $version->nodeAssignments();
// remove wrong nodeassignments
foreach ($nodeAssignments as $assignment) 
{
    $parentObject = $assignment->getParentNode();
    if ($parentObject->attribute('main_node_id') == 12) 
    {
	$version->removeAssignment(12);
    }
    else 
    {
	if ($assignment->attribute( 'is_main' ) == '1') 
        {
	    $nodeId = $assignment->getParentNode();
	    $version->removeAssignment($nodeId);
	    $version->assignToNode($nodeId, 0);
	}
    }
}
$version->removeAssignment(546);
$version->assignToNode(546, 1, 12);
$version->store();
		    
include_once( 'lib/ezutils/classes/ezoperationhandler.php' );
$operationResult = eZOperationHandler::execute( 'content', 'publish', array( 'object_id' => $objectId, 'version' => $maxVersion ) );

Where 12 and 546 are node ids. This was used to move users from one group to another or to add them to a second group.

As far as I remember you have to remove the main node before assigning another node
(which you want to be the new main node), otherwise there will be some trouble with two main nodes.

Hope this helps,
Silke

Alex Jones

Wednesday 26 May 2004 7:55:36 am

Thanks for the code Silke! I'll try it out shortly.

Alex

Alex
[ bald_technologist on the IRC channel (irc.freenode.net): #eZpublish ]

<i>When in doubt, clear the cache.</i>

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

Main resources:

Total runtime1.4652 sec
Peak memory usage4,096.0000 KB
Database Queries65

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0058 588.0469152.6406
Module start 'layout' 0.00580.0040 740.687539.4922
Module start 'content' 0.00981.4538 780.1797590.0547
Module end 'content' 1.46360.0015 1,370.234412.1250
Script end 1.4652  1,382.3594 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00340.2300160.0002
Check MTime0.00150.1012160.0001
Mysql Total
Database connection0.00080.056510.0008
Mysqli_queries1.408396.1170650.0217
Looping result0.00080.0578630.0000
Template Total1.427797.420.7138
Template load0.00240.162820.0012
Template processing1.425397.273020.7126
Template load and register function0.00010.007210.0001
states
state_id_array0.00190.130510.0019
state_identifier_array0.00110.074320.0005
Override
Cache load0.00200.1390240.0001
Sytem overhead
Fetch class attribute can translate value0.00050.036130.0002
Fetch class attribute name0.00110.075560.0002
XML
Image XML parsing0.00070.048630.0002
class_abstraction
Instantiating content class attribute0.00000.001180.0000
General
dbfile0.00060.0423160.0000
String conversion0.00000.000740.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/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
8content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
2content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 21
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs