You are here

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

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

File

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

Class

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

Code

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