You are here

function context_ui_block_info in Context 7.3

Implementation of hook_block_info().

File

context_ui/context_ui.module, line 41

Code

function context_ui_block_info() {
  $blocks = array();
  $blocks['editor'] = array(
    'info' => t('Context editor'),
    'admin' => TRUE,
  );
  if (module_exists('devel')) {
    $blocks['devel'] = array(
      'info' => t('Context inspector'),
      'admin' => TRUE,
    );
  }
  return $blocks;
}