function views_object::export_options
Same name in other branches
- 6.x-3.x includes/base.inc \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;
}