Ejemplo n.º 1
0
 /**
  * Get the collection data to display.
  *
  * @return string The name of the template file
  * @access public
  */
 public function getCollectionRecord()
 {
     global $interface;
     parent::getCollectionRecord();
     $interface->assign("collRecordRepositoryCode", $this->getRepositoryCode());
     $interface->assign("collRecordExtent", $this->getExtent());
     $interface->assign("collRecordDateDescription", $this->getDateDescription());
     $interface->assign("collRecordBiographicalHistory", $this->getBiographicalHistory());
     $interface->assign('collRecordAccess', $this->getAccessRestrictions());
     $interface->assign('collRecordRelated', $this->getRelationshipNotes());
     $interface->assign('collRecordPublicationNotes', $this->getPublicationNotes());
     $interface->assign("collRecordActionNotes", $this->getActionNotes());
     $interface->assign("collRecordCopiesNotes", $this->getExistenceOfCopies());
     $interface->assign("collRecordOriginalNotes", $this->getExistenceOfOriginals());
     // Send back the template name:
     return 'RecordDrivers/Hierarchy/collection-record.tpl';
 }