1 view.inc | public view::process_locale_strings($op) |
Process strings for localization or deletion.
File
- core/
modules/ views/ includes/ view.inc, line 2056 - Provides the view object type and associated methods.
Class
Code
public function process_locale_strings($op) {
// Ensure this view supports translation, we have a display, and we
// have a localization plugin.
if ($this->is_translatable() && $this->init_display() && $this->init_localization()) {
$this->localization_plugin->process_locale_strings($op);
}
}