You are here

function views_object::unpack_translatables in Views (for Drupal 7) 6.3

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

Unpacks each handler to store translatable texts.

File

includes/base.inc, line 256
Provides the basic object definitions used by plugins and handlers.

Class

views_object
Basic definition for many views objects

Code

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