function i18nsync_node_fields in Internationalization 5.3
Same name and namespace in other branches
- 5 experimental/i18nsync.module \i18nsync_node_fields()
- 5.2 experimental/i18nsync.module \i18nsync_node_fields()
- 6 i18nsync/i18nsync.module \i18nsync_node_fields()
Returns list of fields to synchronize for a given content type
Parameters
$type: Node type
2 calls to i18nsync_node_fields()
- i18nsync_form_alter in experimental/
i18nsync.module - Implementation of hook_form_alter().
- i18nsync_nodeapi in experimental/
i18nsync.module - Implementation of hook_nodeapi().
File
- experimental/
i18nsync.module, line 241 - Internationalization (i18n) package. Synchronization of translations
Code
function i18nsync_node_fields($type) {
return variable_get('i18nsync_nodeapi_' . $type, array());
}