function translation_admin_paths
Implements hook_admin_paths().
Archivo
- drupal-7.x/
modules/ translation/ translation.module, line 96 - Manages content translations.
Código
function translation_admin_paths() {
if (variable_get('node_admin_theme')) {
$paths = array(
'node/*/translate' => TRUE,
);
return $paths;
}
}