function views_object::export_options

Same name in other branches
  1. 7.x-3.x includes/base.inc \views_object::export_options()

File

includes/base.inc, line 194

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