function views_object::export_options

File

includes/base.inc, line 247

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