1.20.x view.inc public view::process_locale_strings($op)

Process strings for localization or deletion.

File

modules/views/includes/view.inc, line 2055
Provides the view object type and associated methods.

Class

view
An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.

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);
  }
}