getLocaleFieldNames() public method

Get a list of fields for which localized data is supported
public getLocaleFieldNames ( ) : array
return array
コード例 #1
0
ファイル: MonographDAO.inc.php プロジェクト: pkp/omp
 /**
  * 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
ファイル: ArticleDAO.inc.php プロジェクト: utlib/ojs
 /**
  * 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');
 }