AcsfSiteInfoHandler.php in Acquia Cloud Site Factory Connector 8
Same filename and directory in other branches
Namespace
Drupal\acsf\EventFile
src/Event/AcsfSiteInfoHandler.phpView 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
Name | Description |
---|---|
AcsfSiteInfoHandler | This event handler populates the site information after the installation. |