Tuesday 19 January 2010 2:45:17 am
Hi there, I would like to know how to fetch the path_array of a node from PHP. I tried something like this :
$object = eZContentObject::fetchByNodeID($node_id);
$url = $object->attribute("path_array"); or
$path = new eZPathElement(array("id" => $node_id));
$path_array = $path->getPathArray(); But I still not able to get the path_array for a defined node_id. Could someone help me ? Thanks, Damien
|