You are here

function simple_cookie_compliance_theme in Simple Cookie Compliance 6

Same name and namespace in other branches
  1. 8 simple_cookie_compliance.module \simple_cookie_compliance_theme()
  2. 7 simple_cookie_compliance.module \simple_cookie_compliance_theme()

Implements hook_theme().

File

./simple_cookie_compliance.module, line 49
All the necessary functions for configuring and output.

Code

function simple_cookie_compliance_theme($existing, $type, $theme, $path) {
  return array(
    'cookie_compliance' => array(
      'arguments' => array(
        'message' => NULL,
        'form' => NULL,
      ),
      'template' => 'templates/cookie-compliance',
    ),
  );
}