You are here

public function views_object::unpack_translatables in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 includes/base.inc \views_object::unpack_translatables()

Unpacks each handler to store translatable texts.

File

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

Class

views_object
Provides the basic object definitions used by plugins and handlers.

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