You are here

function hosting_client_block in Hostmaster (Aegir) 6

Implementation of hook_block().

File

modules/hosting/client/hosting_client.module, line 795

Code

function hosting_client_block($op = 'list', $delta = 0, $edit = array()) {
  $blocks = array();
  switch ($op) {
    case 'list':
      $blocks['hosting_clients'] = array(
        'info' => t('Hosting clients'),
        'enabled' => 1,
        'region' => 'left',
        'weight' => 10,
      );
      break;
    case 'view':
      switch ($delta) {
        case 'hosting_clients':
          $blocks['title'] = t('Clients');
          $blocks['content'] = user_access('view client') ? hosting_client_list() : '';
          break;
      }
  }
  return $blocks;
}