You are here

function semanticviews_plugin_style_default::options_validate in Semantic Views 7

Same name and namespace in other branches
  1. 6 semanticviews_plugin_style_default.inc \semanticviews_plugin_style_default::options_validate()

Validate the options form.

Overrides views_plugin_style::options_validate

File

./semanticviews_plugin_style_default.inc, line 227
Contains the default style plugin.

Class

semanticviews_plugin_style_default
Default style plugin to render rows one after another with no decorations.

Code

function options_validate(&$form, &$form_state) {
  parent::options_validate($form, $form_state);

  // TODO: validate that the elements and classes are valid HTML. This is not
  // a substitute for output filtering.
}