You are here

node.translation_table.inc in Translation table 7

Same filename and directory in other branches
  1. 6 modules/node.translation_table.inc

Provide translation table functionality for the node module.

File

modules/node.translation_table.inc
View source
<?php

/**
 * @file
 * Provide translation table functionality for the node module.
 */

/**
 * Implements hook_translation_table_data().
 */
function node_translation_table_data() {
  $items['nodetype'] = array(
    'title' => 'Content type',
    'description' => 'Edit content type translations',
    'form' => 'node_translation_table_nodetype_form',
    'file' => 'modules/node.translation_table.inc',
  );
  return $items;
}

/**
 * Menu callback; Admin form for node type translation.
 */
function node_translation_table_nodetype_form($form, &$form_state) {
  $languages_selected = isset($_SESSION['translation_table']['languages_selected']) ? $_SESSION['translation_table']['languages_selected'] : locale_language_list('name', FALSE);
  $nodetype = isset($_SESSION['translation_table']['nodetype']) ? $_SESSION['translation_table']['nodetype'] : 0;
  $form['filter'] = node_translation_table_nodetype_filter($languages_selected, $nodetype);
  $form['filtered_form'] = node_translation_table_nodetype_filtered_form($languages_selected, $nodetype);
  $form['#submit'][] = 'node_translation_table_nodetype_form_submit';
  $form['#submit'][] = 'translation_table_submit_translations';
  return $form;
}

/**
 * Node type filter.
 */
function node_translation_table_nodetype_filter($languages_selected, $nodetype) {
  $form['languages_selected'] = array(
    '#type' => 'select',
    '#title' => t('Languages'),
    '#description' => t('Select the languages to display.'),
    '#options' => locale_language_list('name', TRUE),
    '#default_value' => array_keys($languages_selected),
    '#multiple' => TRUE,
  );
  $form['nodetype'] = array(
    '#type' => 'select',
    '#title' => t('Content type'),
    '#description' => t('Select the content types to display.'),
    '#options' => array_merge(array(
      0 => t('- All -'),
    ), node_type_get_names()),
    '#default_value' => $nodetype,
  );
  $form['tt-filter'] = array(
    '#type' => 'submit',
    '#value' => t('Filter'),
  );
  $form['#theme'] = 'translation_table_filter';
  return $form;
}

/**
 * Form for node type translation.
 * Note: If the node type is not in the locales_source table, then it won't be
 * displayed.
 *
 * @param $languages
 *   languages to translate to
 * @param $nodetype
 *    0: show all
 *    else: filter by node type
 */
function node_translation_table_nodetype_filtered_form($languages, $nodetype) {
  $header = _translation_table_get_header($languages);
  switch ($nodetype) {
    case '0':
      $query = db_select('locales_source', 'ls');
      $query
        ->fields('ls', array(
        'lid',
        'source',
        'location',
      ))
        ->extend('PagerDefault')
        ->extend('TableSort')
        ->condition('ls.textgroup', 'node')
        ->orderByHeader($header)
        ->limit(50);
      $result = $query
        ->execute();
      break;
    default:
      $query = db_select('locales_source', 'ls');
      $query
        ->fields('ls', array(
        'lid',
        'source',
        'location',
      ))
        ->extend('PagerDefault')
        ->extend('TableSort')
        ->condition('ls.textgroup', 'taxonomy')
        ->condition('ls.location', 'node:type: ' . check_plain($nodetype) . ' %', 'LIKE')
        ->orderByHeader($header)
        ->limit(50);
      $result = $query
        ->execute();
      break;
  }
  $form['strings']['#tree'] = TRUE;
  $form['header'] = array(
    '#type' => 'value',
    '#value' => $header,
  );
  while ($source = $result
    ->fetch()) {
    if (drupal_strlen(trim($source->source)) > 0) {
      $form['strings'][$source->lid] = _translation_table_row($source, $languages);
    }
  }
  $form['languages'] = array(
    '#type' => 'value',
    '#value' => $languages,
  );
  $form['tt-submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save'),
  );
  $form['pager'] = array(
    '#markup' => theme('pager'),
  );
  $form['#theme'] = 'translation_table';
  return $form;
}

/**
 * Submit handler for the node type translation form.
 */
function node_translation_table_nodetype_form_submit($form, &$form_state) {
  switch ($form_state['clicked_button']['#id']) {
    case 'edit-tt-filter':
    case 'edit-tt-submit':
      $_SESSION['translation_table']['nodetype'] = $form_state['values']['nodetype'];
      $_SESSION['translation_table']['languages_selected'] = array_intersect_key(locale_language_list('name', TRUE), $form_state['values']['languages_selected']);
      break;
  }
}

Functions

Namesort descending Description
node_translation_table_data Implements hook_translation_table_data().
node_translation_table_nodetype_filter Node type filter.
node_translation_table_nodetype_filtered_form Form for node type translation. Note: If the node type is not in the locales_source table, then it won't be displayed.
node_translation_table_nodetype_form Menu callback; Admin form for node type translation.
node_translation_table_nodetype_form_submit Submit handler for the node type translation form.