getLocaleFieldNames() 공개 메소드

Get a list of fields for which localized data is supported
public getLocaleFieldNames ( ) : array
리턴 array
예제 #1
0
 /**
  * Get a list of fields for which localized data is supported
  * @return array
  */
 function getLocaleFieldNames()
 {
     return array_merge(parent::getLocaleFieldNames(), array('copyrightNotice'));
 }
예제 #2
0
파일: ArticleDAO.inc.php 프로젝트: pkp/ojs
 /**
  * Get a list of fields for which localized data is supported
  * @return array
  */
 function getLocaleFieldNames()
 {
     return array_merge(parent::getLocaleFieldNames(), array('coverImageAltText', 'coverImage'));
 }
예제 #3
0
 /**
  * Get a list of field names for which data is localized.
  * @return array
  */
 function getLocaleFieldNames()
 {
     return parent::getLocaleFieldNames() + array('coverPageAltText', 'showCoverPage', 'hideCoverPageToc', 'hideCoverPageAbstract', 'originalFileName', 'fileName', 'width', 'height');
 }