本文整理汇总了PHP中DAO::getLocaleFieldNames方法的典型用法代码示例。如果您正苦于以下问题:PHP DAO::getLocaleFieldNames方法的具体用法?PHP DAO::getLocaleFieldNames怎么用?PHP DAO::getLocaleFieldNames使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DAO
的用法示例。
在下文中一共展示了DAO::getLocaleFieldNames方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getLocaleFieldNames
/**
* Get a list of fields for which localized data is supported
* @return array
*/
function getLocaleFieldNames()
{
return array_merge(parent::getLocaleFieldNames(), array('title', 'cleanTitle', 'abstract', 'prefix', 'subtitle', 'discipline', 'subjectClass', 'subject', 'coverageGeo', 'coverageChron', 'coverageSample', 'type', 'sponsor', 'source', 'rights', 'copyrightHolder'));
}
示例2: getLocaleFieldNames
/**
* Get the list of fields for which data can be localized.
* @return array
*/
function getLocaleFieldNames()
{
return array_merge(parent::getLocaleFieldNames(), array('title', 'description'));
}
示例3: getLocaleFieldNames
/**
* Get field names for which data is localized.
* @return array
*/
function getLocaleFieldNames()
{
return parent::getLocaleFieldNames() + array('biography', 'competingInterests', 'affiliation');
}
示例4: getLocaleFieldNames
function getLocaleFieldNames()
{
return parent::getLocaleFieldNames() + array('name');
}
示例5: getLocaleFieldNames
function getLocaleFieldNames()
{
return parent::getLocaleFieldNames() + array('biography', 'signature', 'gossip', 'affiliation');
}
示例6: getLocaleFieldNames
/**
* Get the list of fields for which data can be localized.
* @return array
*/
function getLocaleFieldNames()
{
return parent::getLocaleFieldNames() + array('question', 'possibleResponses');
}
示例7: getLocaleFieldNames
/**
* Get the list of fields for which data is localized.
* @return array
*/
function getLocaleFieldNames()
{
$localeFieldNames = parent::getLocaleFieldNames();
$localeFieldNames[] = 'name';
return $localeFieldNames;
}
示例8: getLocaleFieldNames
/**
* Get a list of field names for which data is localized.
* @return array
*/
function getLocaleFieldNames()
{
return array_merge(parent::getLocaleFieldNames(), array('title', 'cleanTitle', 'abstract', 'coverPageAltText', 'showCoverPage', 'hideCoverPageToc', 'hideCoverPageAbstract', 'originalFileName', 'fileName', 'width', 'height', 'discipline', 'subjectClass', 'subject', 'coverageGeo', 'coverageChron', 'coverageSample', 'type', 'sponsor', 'copyrightHolder'));
}
示例9: getLocaleFieldNames
/**
* Get field names for which data is localized.
* @return array
*/
function getLocaleFieldNames()
{
return array_merge(parent::getLocaleFieldNames(), array('name', 'abbrev'));
}
示例10: getLocaleFieldNames
/**
* Get the list of fields for which data is localized.
* @return array
*/
function getLocaleFieldNames()
{
return parent::getLocaleFieldNames();
}
示例11: getLocaleFieldNames
/**
* @see DAO::getLocaleFieldNames()
*/
function getLocaleFieldNames()
{
assert(is_array($this->localeFieldNames));
return parent::getLocaleFieldNames() + $this->localeFieldNames;
}