You are here

class AcsfSiteInfoHandler in Acquia Cloud Site Factory Connector 8

Same name and namespace in other branches
  1. 8.2 src/Event/AcsfSiteInfoHandler.php \Drupal\acsf\Event\AcsfSiteInfoHandler

This event handler populates the site information after the installation.

Hierarchy

Expanded class hierarchy of AcsfSiteInfoHandler

File

src/Event/AcsfSiteInfoHandler.php, line 10

Namespace

Drupal\acsf\Event
View source
class AcsfSiteInfoHandler extends AcsfEventHandler {

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

}

Members

Namesort descending Modifiers Type Description Overrides
AcsfEventHandler::$completed public property The time that the handler was completed.
AcsfEventHandler::$message public property Any messages triggered by the handler.
AcsfEventHandler::$started public property The time that the handler was started.
AcsfEventHandler::__construct public function Constructor. 1
AcsfSiteInfoHandler::handle public function Implements AcsfEventHandler::handle(). Overrides AcsfEventHandler::handle