function block_content_theme

block_content_theme($existing, $type, $theme, $path)

Implements hook_theme().

File

core/modules/block_content/block_content.module, line 45
Allows the creation of custom blocks through the user interface.

Code

function block_content_theme($existing, $type, $theme, $path) {
  return array(
    'block_content_add_list' => array(
      'variables' => array('content' => NULL),
      'file' => 'block_content.pages.inc',
    ),
  );
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!block_content!block_content.module/function/block_content_theme/8.1.x