You are here

function encrypt_theme in Encrypt 6

Same name and namespace in other branches
  1. 7.3 encrypt.module \encrypt_theme()
  2. 7 encrypt.module \encrypt_theme()
  3. 7.2 encrypt.module \encrypt_theme()

Implementation of hook_theme().

File

./encrypt.module, line 69
Main Encrypt Drupal File

Code

function encrypt_theme($existing, $type, $theme, $path) {
  return array(
    'encrypt_admin_list' => array(
      'arguments' => array(
        'methods' => array(),
      ),
      'file' => 'includes/encrypt.theme.inc',
    ),
  );
}