Thursday 24 April 2003 4:42:44 am
Try the function contentObjectAttributes. $attributes =& $object->contentObjectAttributes(); Or you can use the dataMap() function which will create an associative array with the attributes hashed by name. $dataMap =& $object->dataMap(); $title = $dataMap['title']; --bård
Documentation: http://ez.no/doc
|