You are here

public function views_plugin_localization_test::export in Views (for Drupal 7) 7.3

Store the export strings.

Overrides views_plugin_localization::export

File

tests/views_plugin_localization_test.inc, line 30
Definition of views_plugin_localization_test.

Class

views_plugin_localization_test
A stump localisation plugin which has static variables to cache the input.

Code

public function export($source) {
  if (!empty($source['value'])) {
    $this->export_strings[] = $source['value'];
  }
}