You are here

AcsfSiteInfoHandler.php in Acquia Cloud Site Factory Connector 8

Same filename and directory in other branches
  1. 8.2 src/Event/AcsfSiteInfoHandler.php

Namespace

Drupal\acsf\Event

File

src/Event/AcsfSiteInfoHandler.php
View source
<?php

namespace Drupal\acsf\Event;

use Drupal\acsf\AcsfSite;

/**
 * This event handler populates the site information after the installation.
 */
class AcsfSiteInfoHandler extends AcsfEventHandler {

  /**
   * Implements AcsfEventHandler::handle().
   */
  public function handle() {
    $site = AcsfSite::load();
    $site
      ->refresh();
  }

}

Classes

Namesort descending Description
AcsfSiteInfoHandler This event handler populates the site information after the installation.