Same name and namespace in other branches
  1. 6.x-3.x includes/base.inc \views_object::unpack_translatables()

Unpacks each handler to store translatable texts.

File

includes/base.inc, line 323
Definition of views_object.

Class

views_object

Code

public function unpack_translatables(&$translatable, $parents = array()) {
  foreach ($this
    ->altered_option_definition() as $option => $definition) {
    $this
      ->unpack_translatable($translatable, $this->options, $option, $definition, $parents, array());
  }
}