You are here

function devel_block_info in Devel 7

Implements hook_block_info().

File

./devel.module, line 809
This module holds functions useful for Drupal development.

Code

function devel_block_info() {
  $blocks['execute_php'] = array(
    'info' => t('Execute PHP'),
    'cache' => DRUPAL_NO_CACHE,
  );
  $blocks['switch_user'] = array(
    'info' => t('Switch user'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}