You are here

function nodesquirrel_get_activate_help_text in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 6.2 includes/destinations.nodesquirrel.inc \nodesquirrel_get_activate_help_text()
  2. 7.2 includes/destinations.nodesquirrel.inc \nodesquirrel_get_activate_help_text()

Get a helper link to activate a site and create a tree.

1 call to nodesquirrel_get_activate_help_text()
backup_migrate_nodesquirrel_credentials_settings_form in includes/destinations.nodesquirrel.inc
NodeSquirrel settings form.

File

includes/destinations.nodesquirrel.inc, line 41
Functions to handle the NodeSquirrel backup destination.

Code

function nodesquirrel_get_activate_help_text() {
  $activate_link = nodesquirrel_get_activate_link();
  return array(
    '#type' => 'item',
    '#title' => t('Need a Secret Key?'),
    '#value' => t('Visit !nodesquirrel.', array(
      '!nodesquirrel' => $activate_link,
    )),
    '#descriptoin' => t('Don\'t worry if you don\'t have an account yet. You can create one when you get there.'),
  );
}