function i18n_string_object_update in Internationalization 7
Update object properties.
Parameters
$type: Object type
$object: Object or array
8 calls to i18n_string_object_update()
- i18n_contact_form_contact_category_edit_form_submit in i18n_contact/
i18n_contact.module - Remove strings for edited/added categories.
- i18n_field_field_update_strings in i18n_field/
i18n_field.module - Update field strings
- i18n_field_instance_update_strings in i18n_field/
i18n_field.module - Update field instance strings
- i18n_menu_menu_link_update in i18n_menu/
i18n_menu.module - Implements hook_menu_link_update().
- i18n_menu_menu_update in i18n_menu/
i18n_menu.module - Implements hook_menu_update()
File
- i18n_string/
i18n_string.module, line 917 - Internationalization (i18n) package - translatable strings.
Code
function i18n_string_object_update($type, $object, $options = array()) {
return i18n_object($type, $object)
->strings_update($options);
}