You are here

function clientside_validation_theme in Clientside Validation 6

Same name and namespace in other branches
  1. 7 clientside_validation.module \clientside_validation_theme()

Implements hook_theme().

File

./clientside_validation.module, line 1024
Add client side validation to a webform.

Code

function clientside_validation_theme($existing, $type, $theme, $path) {
  return array(
    'clientside_validation_checkboxes' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'clientside_error' => array(
      'arguments' => array(
        'variables' => array(),
      ),
    ),
  );
}