You are here

function hosting_site_post_hosting_login_reset_task in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 site/hosting_site.drush.inc \hosting_site_post_hosting_login_reset_task()
  2. 7.3 site/hosting_site.drush.inc \hosting_site_post_hosting_login_reset_task()

implementation of the hosting_post_login_reset hook

File

site/hosting_site.drush.inc, line 244

Code

function hosting_site_post_hosting_login_reset_task($task, $data) {
  if ($task->ref->type == 'site') {
    $task->ref->no_verify = TRUE;
    node_save($task->ref);
    $context = $data['context'];
    if ($context['login_link']) {

      // we need to store the timestamp too because expire only means it can be deleted
      // after an amount of time, not will be deleted.
      $cache = array(
        'expire' => strtotime("+24 hours"),
        'link' => $context['login_link'],
      );
      cache_set('hosting:site:' . $task->ref->nid . ':login_link', $cache, 'cache', $cache['expire']);
    }
  }
}