Full ELMS Learning Network documentation
locale.views.inc
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).- cis7 sites/all/modules/ulmus/views/modules/locale.views.inc
- cle7 sites/all/modules/ulmus/views/modules/locale.views.inc
- ecd7 sites/all/modules/ulmus/views/modules/locale.views.inc
- elmsmedia7 sites/all/modules/ulmus/views/modules/locale.views.inc
- harmony7 sites/all/modules/ulmus/views/modules/locale.views.inc
- icor7 sites/all/modules/ulmus/views/modules/locale.views.inc
- meedjum_blog7 sites/all/modules/ulmus/views/modules/locale.views.inc
- mooc7 sites/all/modules/ulmus/views/modules/locale.views.inc
Provides views data and handlers for locale.module.
Functions
Name![]() |
Description |
---|---|
locale_views_data | Implements hook_views_data(). |
locale_views_data_alter | Implements hook_views_data_alter(). |
File
sites/all/modules/ulmus/views/modules/locale.views.incView source
- <?php
-
- /**
- * @file
- * Provides views data and handlers for locale.module.
- *
- * @ingroup views_module_handlers
- */
-
- /**
- * Implements hook_views_data().
- */
- function locale_views_data() {
- // Basic table information.
-
- // Define the base group of this table.
- $data['locales_source']['table']['group'] = t('Locale source');
-
- // Advertise this table as a possible base table.
- $data['locales_source']['table']['base'] = array(
- 'field' => 'lid',
- 'title' => t('Locale source'),
- 'help' => t('A source string for translation, in English or the default site language.'),
- );
-
- // lid
- $data['locales_source']['lid'] = array(
- 'title' => t('LID'),
- 'help' => t('The ID of the source string.'),
- 'field' => array(
- 'handler' => 'views_handler_field',
- 'click sortable' => TRUE,
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_numeric',
- 'numeric' => TRUE,
- 'validate type' => 'lid',
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_numeric',
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
-
- // location
- $data['locales_source']['location'] = array(
- 'group' => t('Locale source'),
- 'title' => t('Location'),
- 'help' => t('A description of the location or context of the string.'),
- 'field' => array(
- 'handler' => 'views_handler_field',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_string',
- ),
- );
-
- // Group field
- $data['locales_source']['textgroup'] = array(
- 'group' => t('Locale source'),
- 'title' => t('Group'),
- 'help' => t('The group the translation is in.'),
- 'field' => array(
- 'handler' => 'views_handler_field_locale_group',
- 'click sortable' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_locale_group',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_locale_group',
- ),
- );
-
- // Source field
- $data['locales_source']['source'] = array(
- 'group' => t('Locale source'),
- 'title' => t('Source'),
- 'help' => t('The full original string.'),
- 'field' => array(
- 'handler' => 'views_handler_field',
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
-
- // Version field
- $data['locales_source']['version'] = array(
- 'group' => t('Locale source'),
- 'title' => t('Version'),
- 'help' => t('The version of Drupal core that this string is for.'),
- 'field' => array(
- 'handler' => 'views_handler_field',
- 'click sortable' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_locale_version',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_string',
- ),
- );
-
- $data['locales_source']['edit_lid'] = array(
- 'group' => t('Locale source'),
- 'field' => array(
- 'title' => t('Edit link'),
- 'help' => t('Provide a simple link to edit the translations.'),
- 'handler' => 'views_handler_field_locale_link_edit',
- ),
- );
-
- // ----------------------------------------------------------------------
- // Locales target table
-
- // Define the base group of this table. Fields that don't
- // have a group defined will go into this field by default.
- $data['locales_target']['table']['group'] = t('Locale target');
-
- // Join information
- $data['locales_target']['table']['join'] = array(
- 'locales_source' => array(
- 'left_field' => 'lid',
- 'field' => 'lid',
- ),
- );
-
- // Translation field
- $data['locales_target']['translation'] = array(
- 'group' => t('Locale target'),
- 'title' => t('Translation'),
- 'help' => t('The full translation string.'),
- 'field' => array(
- 'handler' => 'views_handler_field',
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
-
- // Language field
- $data['locales_target']['language'] = array(
- 'group' => t('Locale target'),
- 'title' => t('Language'),
- 'help' => t('The language this translation is in.'),
- 'field' => array(
- 'handler' => 'views_handler_field_locale_language',
- 'click sortable' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_locale_language',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_locale_language',
- ),
- );
-
- $data['locales_target']['plid'] = array(
- 'group' => t('Locale target'),
- 'title' => t('Singular LID'),
- 'help' => t('The ID of the parent translation.'),
- 'field' => array(
- 'handler' => 'views_handler_field',
- ),
- );
-
- // Plural
- $data['locales_target']['plural'] = array(
- 'group' => t('Locale target'),
- 'title' => t('Plural'),
- 'help' => t('Whether or not the translation is plural.'),
- 'field' => array(
- 'handler' => 'views_handler_field_boolean',
- 'click sortable' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_boolean_operator',
- 'label' => t('Plural'),
- 'type' => 'yes-no',
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
-
- return $data;
- }
-
- /**
- * Implements hook_views_data_alter().
- */
- function locale_views_data_alter(&$data) {
- // Language field
- $data['node']['language'] = array(
- 'title' => t('Language'),
- 'help' => t('The language the content is in.'),
- 'field' => array(
- 'handler' => 'views_handler_field_node_language',
- 'click sortable' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_node_language',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_node_language',
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
- }
-