/**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
 }
 /**
  * Constructor
  */
 function SubmissionAgencyEntryDAO()
 {
     parent::ControlledVocabEntryDAO();
 }
예제 #3
0
 /**
  * Constructor
  */
 function InterestEntryDAO()
 {
     parent::ControlledVocabEntryDAO();
 }
 /**
  * Constructor
  */
 function SubmissionLanguageEntryDAO()
 {
     parent::ControlledVocabEntryDAO();
 }
예제 #5
0
 /**
  * Get the list of fields for which data can be localized.
  * @return array
  */
 function getLocaleFieldNames()
 {
     $fieldNames = parent::getLocaleFieldNames();
     $fieldNames[] = 'description';
     return $fieldNames;
 }
 /**
  * Constructor
  */
 function SubmissionKeywordEntryDAO()
 {
     parent::ControlledVocabEntryDAO();
 }
예제 #7
0
 /**
  * Get the list of non-localized additional fields to store.
  * @return array
  */
 function getAdditionalFieldNames()
 {
     return parent::getAdditionalFieldNames() + array('interest');
 }
 /**
  * Constructor
  */
 function SubmissionDisciplineEntryDAO()
 {
     parent::ControlledVocabEntryDAO();
 }
 /**
  * Constructor
  */
 function SubmissionSubjectEntryDAO()
 {
     parent::ControlledVocabEntryDAO();
 }
예제 #10
0
 /**
  * Get the list of non-localized additional fields to store.
  * @return array
  */
 function getAdditionalFieldNames()
 {
     return array_merge(parent::getAdditionalFieldNames(), array('interest'));
 }