function _i18nviews_display_fields in Internationalization Views 6.2
Same name and namespace in other branches
- 6.3 i18nviews.module \_i18nviews_display_fields()
Return the Views fields that should be translated.
Return value
Array of field names.
3 calls to _i18nviews_display_fields()
- i18nviews_locale_refresh in ./
i18nviews.module - Refresh views locales, 2.x version
- i18nviews_views_pre_view in ./
i18nviews.module - Implementation of hook_views_pre_view().
- i18nviews_views_ui_edit_display_submit in ./
i18nviews.module - Submit handler for views_ui_edit_display_form.
File
- ./
i18nviews.module, line 145 - Views support for Internationalization (i18n) package
Code
function _i18nviews_display_fields() {
return array(
'title',
'header',
'footer',
'empty',
);
}