function custom_block_theme

Implements hook_theme().

File

drupal/core/modules/block/custom_block/custom_block.module, line 116
Allows the creaation of custom blocks through the user interface.

Code

function custom_block_theme($existing, $type, $theme, $path) {
  return array(
    'custom_block_add_list' => array(
      'variables' => array(
        'content' => NULL,
      ),
      'file' => 'custom_block.pages.inc',
      'template' => 'custom-block-add-list',
    ),
  );
}