ezContentObject::version() returns nothing...

Author Message

Jim Reverend

Tuesday 03 February 2004 8:42:01 pm

I have the following code that I will use to import my existing CMS data into EZPUBLISH:
-----
$ezdir = '/path/2/ez/publish/';

$path = ini_get('include_path');
ini_set('include_path', $path . ':' . $ezdir);

$ezobjtype = 23;
$ezauth = 15;
$ezsection = 13;
$ezparent = 50;


require_once 'DB.php';
require_once 'lib/ezutils/classes/ezdebug.php';
require_once 'kernel/classes/ezcontentclass.php';
require_once 'kernel/classes/eznodeassignment.php';
include_once( 'lib/ezutils/classes/ezcli.php' );
include_once( 'kernel/classes/ezscript.php' );
include_once 'kernel/common/i18n.php';


$bbdb = DB::connect('mysql://someuser:somepass@localhost/somedb');

$stmt = "SELECT * FROM sometable LIMIT 1";

$res = $bbdb->query($stmt);

while($data = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
print "DATA:\n";
print_r($data);
$contentclass =& ezcontentclass::fetch($ezobjtype);
print "EZCONTENTCLASS:\n";
print_r($contentclass);
$contentobject =& $contentclass->instantiate($ezauth,$ezsection);
print "EZCONTENTOBJECT:\n";
print_r($contentobject);
$blah = array(
'contentobject_id' => $contentobject->attribute('id'),
'contentobject_version' => $contentobject->attribute('current_version'),
'parent_node' => $ezparent,
'is_main' => 0
);
print "BLAH:\n";
print_r($blah);
$nodeassignment =& eznodeassignment::create($blah);
print "EZNODEASSIGNMENT:\n";
print_r($nodeassignment);

// ERROR FROM STATEMENT BELOW
$version =& $contentobject->version( 1 );
print "VERSION:\n";
print_r($version);
$contentobjectattributes =& $version->contentObjectAttributes();

}

-----

When run via the command line, I get the following error:
Fatal error: Call to a member function on a non-object in /home/revjim/bin/bblogtoez.php on line 52

(Line 52 is the line that calls contentObjectAttributes())...

It is also interesting to note that $nodeassignment and $version are both empty when "print_r"ed.

I'm sure I'm missing something simple. Please help.

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 21:17:44
Script start
Timing: Jan 18 2025 21:17:44
Module start 'layout'
Timing: Jan 18 2025 21:17:44
Module start 'content'
Timing: Jan 18 2025 21:17:45
Module end 'content'
Timing: Jan 18 2025 21:17:45
Script end

Main resources:

Total runtime1.0973 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.0061 589.1641152.6406
Module start 'layout' 0.00610.0046 741.804739.4766
Module start 'content' 0.01071.0852 781.2813413.8906
Module end 'content' 1.09590.0014 1,195.17198.1250
Script end 1.0972  1,203.2969 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00330.3012160.0002
Check MTime0.00140.1256160.0001
Mysql Total
Database connection0.00110.103810.0011
Mysqli_queries1.035994.4038460.0225
Looping result0.00050.0423440.0000
Template Total1.057696.420.5288
Template load0.00220.201620.0011
Template processing1.055496.187920.5277
Template load and register function0.00020.016810.0002
states
state_id_array0.00270.247410.0027
state_identifier_array0.00130.120520.0007
Override
Cache load0.00190.1761650.0000
Sytem overhead
Fetch class attribute can translate value0.00070.066210.0007
Fetch class attribute name0.00070.065110.0007
XML
Image XML parsing0.00010.008710.0001
class_abstraction
Instantiating content class attribute0.00000.000710.0000
General
dbfile0.00060.0523100.0001
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
1content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.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/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 7
 Number of unique templates used: 5

Time used to render debug report: 0.0001 secs