Projet

Général

Profil

Paste
Télécharger (292 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / i18n / i18n_translation / i18n_translation.pages.inc @ 76df55b7

1
<?php
2
/**
3
 * @file
4
 * Generic translation page for objects
5
 */
6

    
7
/**
8
 * Translate object, create translation set
9
 */
10
function i18n_translation_object_translate_page($type, $object) {
11
  $page = i18n_translation_set_info($type, 'page callback');
12
  return call_user_func($page, $type, $object);
13
}