123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <?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',
- ),
- );
- }
|