You are here

function cmis_block_view in CMIS API 7.2

Same name and namespace in other branches
  1. 7 cmis.module \cmis_block_view()

Implements hook_block_info

File

./cmis.module, line 247

Code

function cmis_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'cmis_switcher':
      $block['subject'] = t('CMIS repositories');
      $block['content'] = drupal_get_form('cmis_repository_switcher_form');
      break;
  }
  return $block;
}