. */ ?> label * $object->id * to get the contents of a datastream * $object['dsid']->content * * $dublin_core is a Dublin_Core object * which is an array of elements, such as dc.title * and each element has an array of values. dc.title can have none, one or many titles * this is the case for all dc elements. * * we can get a list of datastreams by doing * foreach ($object as $ds){ * do something here * } * */ //dsm($object); drupal_set_title($islandora_object->label); print($islandora_object->label . ' ' . $islandora_object->id); print('this is the edit template'); print ('

datastreams

'); foreach ($islandora_object as $ds) { print $ds->label . '
'; //do something } ?>