function views_object::export_options

3.x base.inc views_object::export_options($indent, $prefix)

File

includes/base.inc, line 203
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;
}