You are here

function seo_checker_elements in SEO Compliance Checker 6.2

Same name and namespace in other branches
  1. 6 inc/seo_checker.theme.inc \seo_checker_elements()

Defines the slider form element and its default values

File

inc/seo_checker.theme.inc, line 18
Contains the functions used to theme the outputs of this module.

Code

function seo_checker_elements() {
  $type = array();
  $type['seo_slider'] = array(
    '#input' => TRUE,
    '#steps' => 100,
    '#size' => 3,
  );
  $type['seo_check_results'] = array(
    '#results' => array(),
  );
  return $type;
}