Ejemplo n.º 1
0
 /**
  * Get the collection data to display.
  *
  * @return string The name of the template file
  * @access public
  */
 public function getCollectionMetadata()
 {
     global $interface;
     parent::getCollectionMetadata();
     $interface->assign("collRepositoryCode", $this->getRepositoryCode());
     $interface->assign("collExtent", $this->getExtent());
     $interface->assign("collDateDescription", $this->getDateDescription());
     $interface->assign("collBiographicalHistory", $this->getBiographicalHistory());
     $interface->assign('collAccess', $this->getAccessRestrictions());
     $interface->assign('collRelated', $this->getRelationshipNotes());
     $interface->assign('collPublicationNotes', $this->getPublicationNotes());
     $interface->assign("collActionNotes", $this->getActionNotes());
     $interface->assign("collCopiesNotes", $this->getExistenceOfCopies());
     $interface->assign("collOriginalNotes", $this->getExistenceOfOriginals());
     // Send back the template name:
     return 'RecordDrivers/Hierarchy/collection-info.tpl';
 }