Enhanced Object Relation attribute via Php

Author Message

kuz cous

Friday 17 August 2007 1:50:03 am

Hello,

I have a little problem.
I need to import many objects from a csv file. My object class look like this :

- First Name : text line
- Last Name : text line
- User Account : User Account
- Some other attributes : Enhanced Object Relation

I got no problem to add the first three attributes but I have no idea how to implement the Enhanced Object Relation attribute via Php.
Here is the code I use to add my objects from a csv file.

#!/usr/bin/env php
<?php

/* Include required files */
include_once( "lib/ezutils/classes/ezextension.php" );
include_once( "lib/ezutils/classes/ezmodule.php" );
include_once( 'lib/ezutils/classes/ezcli.php' );
include_once( 'kernel/classes/ezscript.php' );
include_once( 'lib/ezutils/classes/ezexecution.php' );
include_once( 'kernel/classes/ezcontentobjecttreenode.php' );
include_once( 'kernel/classes/eznodeassignment.php' );
include_once( "lib/ezutils/classes/ezoperationhandler.php");
include_once( "kernel/classes/datatypes/ezuser/ezuser.php" );
include_once( 'kernel/classes/datatypes/ezuser/ezusersetting.php' );


/* Start up the eZ CLI enviorment that make the script work correct */
$cli =& eZCLI::instance();
$script =& eZScript::instance( array( 'debug-message' => '',
                                     'use-session' => false,
                                     'use-modules' => true,
                                     'use-extensions' => true ) );
$script->startup();
$endl = $cli->endlineString();

$script->initialize();

$fp = fopen('c:\\Downloads\\test.csv', 'r');
while ($row = fgetcsv($fp, 1000, ';'))
{
    $Users[] = array(   'nom' => trim( array_shift( $row ) ),
                        'prenom' =>  trim( array_shift( $row ) ),
                        'entite' =>  trim( array_shift( $row ) ),
                        'crd' =>  trim( array_shift( $row ) ),
                        'labo' =>  trim( array_shift( $row ) ),
                        'location' =>  trim( array_shift( $row ) ),
                        'profession' =>  trim( array_shift( $row ) ),
                        'diplome' =>  trim( array_shift( $row ) ),
                        'domaines' =>  trim( array_shift( $row ) ),
                        'ref_exp' =>  trim( array_shift( $row ) ),
                        'email' =>  trim( array_shift( $row ) ),
                        'tel' =>  trim( array_shift( $row ) ) 
                    );   

}

fclose( $fp );

foreach ( $Users as $i => $User )
{
    $class =& eZContentClass::fetch( 65 );
    $contentObject =& $class->instantiate( 14, 1);
    $contentObjectID = $contentObject->attribute( 'id' );
    
    $nodeAssignment =& eZNodeAssignment::create( array(
                                                      'contentobject_id' => $contentObject->attribute( 'id' ),
                                                      'contentobject_version' => 1,
                                                      'parent_node' => 72,
                                                      'is_main' => 1
                                                      )
                                                ); 

    $nodeAssignment->store();
    
    /* Add data to the eZ object */
    $ContentObjectAttributes =& $contentObject->attribute('data_map');

    //Nom (Last Name)
        $nom = $ContentObjectAttributes['nom'];
        $nom->setAttribute("data_text", utf8_encode($Users[$i]['nom'])); 
        $nom->store();
    
    //Prenom (First Name)
        $prenom = $ContentObjectAttributes['prenom'];
        $prenom->setAttribute("data_text", utf8_encode($Users[$i]['prenom'])); 
        $prenom->store();
    
    //Login
        $userID = $contentObjectID;
        $user =& new eZUser( $userID );
        $login_gen = create_login($Users[$i]['nom'],$Users[$i]['prenom']);
        
        $password = "user";
        $user->setInformation( $userID, $login_gen, $Users[$i]['email'],$password, $password );
        $isEnabled = 1;
        $userSetting =& eZUserSetting::create( $userID, $isEnabled );
        $userSetting->store();
        $user->store();
    
    //telephone (phone)
        $tel=$ContentObjectAttributes['telephone'];
        $tel->setAttribute("data_text", $Users[$i]['tel']); 
        $tel->store();
        
    //entite - enhanced object relation
        /* Part to add an enhanced object relation attribute*/
        
        
    /* Publish the new eZ object */    
    $operationResult = eZOperationHandler::execute( 'content', 'publish',&
    array(
            'object_id' => $contentObject->attribute( 'id' ), 
            'version' => $contentObject->attribute('current_version' ) ) );
    
    /* End the eZ CLI enviorment*/ 
    $cli->output( "User added : ".$Users[$i]['nom']." ".$Users[$i]['prenom'] );
}

$script->shutdown();

function create_login($nom, $prenom)
{
    $login = strtolower($prenom{0}).strtolower(str_replace(' ','',$nom));
    return $login;
    
}
?>

All is working fine with that code but now I want to add the other attributes and I have no idea on how to do that.
I found this thread : http://ez.no/community/forum/developer/fantastic_csv_import_extension_who_owns_it/re_fantastic_csv_import_extension_who_owns_it__18
where Felipe Jaramillo talks about the importing of ezenhancedobjectrelation data types.
Few post later, he provides a small code to implement this data type but I think it's missing something.
I want to know if someone has already succeed to add an ezenhancedobjectrelation data type in php? If not, how could I do that ?
I need to add a ezenhancedobjectrelation class like for the User Account attribute, and use the ezenhancedobjectrelation functions to create the attribute ?

And sorry for my english.

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

Main resources:

Total runtime0.7208 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.0072 588.0469152.6406
Module start 'layout' 0.00720.0042 740.687539.4766
Module start 'content' 0.01140.7035 780.1641426.2500
Module end 'content' 0.71490.0059 1,206.414112.1250
Script end 0.7208  1,218.5391 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00350.4902160.0002
Check MTime0.00140.1963160.0001
Mysql Total
Database connection0.00190.258510.0019
Mysqli_queries0.663592.0438460.0144
Looping result0.00050.0754440.0000
Template Total0.676193.820.3380
Template load0.00300.411120.0015
Template processing0.673193.375320.3365
Template load and register function0.00020.034610.0002
states
state_id_array0.00130.184810.0013
state_identifier_array0.00080.116520.0004
Override
Cache load0.00230.3186200.0001
Sytem overhead
Fetch class attribute can translate value0.00080.113310.0008
Fetch class attribute name0.00060.085710.0006
XML
Image XML parsing0.00010.015510.0001
class_abstraction
Instantiating content class attribute0.00000.001010.0000
General
dbfile0.00180.2459100.0002
String conversion0.00000.001740.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
5content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
4content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1content/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: 13
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs