You are here

function nodesquirrel_get_activate_help_text in Backup and Migrate 7.2

Same name and namespace in other branches
  1. 6.3 includes/destinations.nodesquirrel.inc \nodesquirrel_get_activate_help_text()
  2. 6.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()
nodesquirrel_settings in includes/destinations.nodesquirrel.inc
NodeSquirrel settings form.

File

includes/destinations.nodesquirrel.inc, line 45
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?'),
    '#markup' => t('Visit !nodesquirrel.', array(
      '!nodesquirrel' => $activate_link,
    )),
    '#description' => t('Don\'t worry if you don\'t have an account yet. You can create one when you get there.'),
  );
}