public function i18n_string_object_wrapper::strings_remove in Internationalization 7
Remove all strings for this object.
File
- i18n_string/
i18n_string.inc, line 1325 - API for internationalization strings
Class
- i18n_string_object_wrapper
- String object wrapper
Code
public function strings_remove($options = array()) {
$result = array();
foreach ($this
->load_strings() as $key => $string) {
$result[$key] = $string
->remove($options);
}
return _i18n_string_result_count($result);
}