You are here

function apps_block_info in Apps 7

Implements hook_block_info().

File

./apps.module, line 576
Module file for Apps

Code

function apps_block_info() {
  apps_include('manifest');
  $blocks = array();
  foreach (apps_servers() as $id => $server) {
    $blocks["manage_apps__{$id}"] = array(
      'info' => t('Manage Apps for %server', array(
        '%server' => $server['title'],
      )),
    );
  }
  return $blocks;
}