You are here

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

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

File

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

Class

views_object
Basic definition for many views objects

Code

function export_options($indent, $prefix) {
  $output = '';
  foreach ($this
    ->option_definition() as $option => $definition) {
    $output .= $this
      ->export_option($indent, $prefix, $this->options, $option, $definition, array());
  }
  return $output;
}