Contributions API

i18nsync_node_fields

Definition

i18nsync_node_fields($type)
contributions/i18n/i18nsync/i18nsync.module, line 264

Description

Returns list of fields to synchronize for a given content type

Parameters

$type Node type

Code

<?php
function i18nsync_node_fields($type) {
  return variable_get('i18nsync_nodeapi_'.$type, array());
}
?>