00001 <?php
00002
00016
00017
00018 import('paper.PaperTypeEntry');
00019 import('controlledVocab.ControlledVocabEntryDAO');
00020
00021 class PaperTypeEntryDAO extends ControlledVocabEntryDAO {
00026 function newDataObject() {
00027 return new PaperTypeEntry();
00028 }
00029
00034 function getLocaleFieldNames() {
00035 $fieldNames = parent::getLocaleFieldNames();
00036 $fieldNames[] = 'description';
00037 return $fieldNames;
00038 }
00039
00044 function getAdditionalFieldNames() {
00045 return array('length', 'abstractLength');
00046 }
00047 }
00048
00049 ?>