function i18n_object_wrapper::get_field in Internationalization 7
Get field value from object/array
4 calls to i18n_object_wrapper::get_field()
- i18n_object_wrapper::get_key in ./
i18n_object.inc - Get key value from object/array
- i18n_object_wrapper::get_placeholders in ./
i18n_object.inc - Get menu placehoders for object
- i18n_object_wrapper::get_tsid in ./
i18n_object.inc - Get translation set id if any
- i18n_string_object_wrapper::build_properties in i18n_string/
i18n_string.inc - Build properties from object.
File
- ./
i18n_object.inc, line 36 - i18n Object Class
Class
- i18n_object_wrapper
- Object wrapper
Code
function get_field($field, $default = NULL) {
return i18n_object_field($this->object, $field, $default);
}