diff --git a/acquia_agent/acquia_agent.module b/acquia_agent/acquia_agent.module index a81aa77..e52f735 100644 --- a/acquia_agent/acquia_agent.module +++ b/acquia_agent/acquia_agent.module @@ -111,11 +111,11 @@ function acquia_agent_init() { user_access('administer site configuration') && (!acquia_agent_has_credentials()) && arg(0) !== 'filefield' && arg(1) != 'progress') { - $text = 'Get a free 30-day trial of the Acquia Network which includes a library of expert knowledge, tools and services to make your site awesome, and Drupal support when you need it.
If you have an Acquia Network subscription, connect now. Otherwise, you can turn this message off by disabling the Acquia Network modules.'; + $text = 'Sign up for Acquia Cloud Free, a free Drupal sandbox to experiment with new features, test your code quality, and apply continuous integration best practices. Check out the epic set of dev features and tools that come with your free subscription.
If you have an Acquia Network subscription, connect now. Otherwise, you can turn this message off by disabling the Acquia Network modules.'; if (isset($_SERVER['AH_SITE_GROUP'])) { $text = 'Connect your site to the Acquia Network now. Learn more.'; } - $message = t($text, array('!more' => url('https://docs.acquia.com/network/install/connector'), '!acquia-free' => url('admin/settings/acquia-agent'), '!library' => url('http://library.acquia.com'), '!settings' => url('admin/settings/acquia-agent/setup'), '!support' => url('http://www.acquia.com/drupal-support'), '!services' => url('http://www.acquia.com/products-services/acquia-network/cloud-services'), '!admin-modules' => url('admin/build/modules', array('fragment' => 'edit-modules-acquia-network-connector')))); + $message = t($text, array('!acquia-free' => url('https://www.acquia.com/acquia-cloud-free'), '!settings' => url('admin/settings/acquia-agent/setup'))); drupal_set_message($message, 'warning', FALSE); } diff --git a/acquia_agent/acquia_agent.pages.inc b/acquia_agent/acquia_agent.pages.inc index 5bbc767..9b9e686 100644 --- a/acquia_agent/acquia_agent.pages.inc +++ b/acquia_agent/acquia_agent.pages.inc @@ -175,7 +175,7 @@ function acquia_agent_migrate_form(&$form_state) { } /** - * Main 30 day trial form function + * Main free subscription form function */ function acquia_agent_an_start_form(&$form_state, $banner) { $header = acquia_agent_an_info_header(); @@ -215,7 +215,7 @@ function acquia_agent_settings_page($arg = NULL) { drupal_add_css($path . '/css/acquia_agent.css'); if (empty($identifier) && empty($key) && $arg != 'setup') { - drupal_set_title(t('Get a free 30 day trial of the Acquia Network')); + drupal_set_title(t('Get an Acquia Cloud Free subscription')); return drupal_get_form('acquia_agent_an_start_form', $banner); } if (empty($identifier) && empty($key)) { @@ -252,7 +252,7 @@ function _acquia_agent_automatic_setup_form_start(&$form_state) { 'pass' => array( '#type' => 'password', '#title' => t('Enter your Acquia Network password'), - '#description' => t('Your password will not be stored locally and will be sent securely to Acquia.com. Forgot password?', array('!url' => url('http://acquia.com/user/password'))), + '#description' => t('Your password will not be stored locally and will be sent securely to Acquia.com. Forgot password?', array('!url' => url('https://accounts.acquia.com/user/password'))), '#size' => 32, '#required' => TRUE, ), @@ -261,7 +261,7 @@ function _acquia_agent_automatic_setup_form_start(&$form_state) { '#value' => t('Next'), ), 'signup' => array( - '#value' => t('Need a subscription? Get one.', array('!url' => url('https://www.acquia.com/trial'))), + '#value' => t('Need a subscription? Get one.', array('!url' => url('https://www.acquia.com/acquia-cloud-free'))), ), ); return $form; @@ -396,7 +396,7 @@ function acquia_agent_settings_credentials(&$form_stage) { $identifier = acquia_agent_settings('acquia_identifier'); $key = acquia_agent_settings('acquia_key'); - $form['#prefix'] = t('Enter your identifer and key from your subscriptions overview or log in to connect your site to the Acquia Network.', array('!net' => url('http://network.acquia.com/network/dashboard/subscription'), '!url' => url('admin/settings/acquia-agent/setup'))); + $form['#prefix'] = t('Enter your identifer and key from your subscriptions overview or log in to connect your site to the Acquia Network.', array('!net' => url('https://insight.acquia.com/subscriptions'), '!url' => url('admin/settings/acquia-agent/setup'))); $form['acquia_identifier'] = array( '#type' => 'textfield', '#title' => t('Identifier'), @@ -414,7 +414,7 @@ function acquia_agent_settings_credentials(&$form_stage) { '#value' => t('Connect'), ); $form['signup'] = array( - '#value' => t('Need a subscription? Get one.', array('!url' => url('https://www.acquia.com/trial'))), + '#value' => t('Need a subscription? Get one.', array('!url' => url('https://www.acquia.com/acquia-cloud-free'))), ); return $form;