You are here

Insights.php in Site Audit 7

Contains \SiteAudit\Report\Insights.

File

Report/Insights.php
View source
<?php

/**
 * @file
 * Contains \SiteAudit\Report\Insights.
 */

/**
 * Class SiteAuditReportInsights.
 */
class SiteAuditReportInsights extends SiteAuditReportAbstract {

  /**
   * Override parent constructor to provide argument support.
   *
   * @param string $url
   *   URL of site to test.
   * @param string $key
   *   Google API key.
   */
  public function __construct($url, $key) {
    $this->registry['url'] = $url;
    $this->registry['key'] = $key;
    parent::__construct();
  }

  /**
   * Implements \SiteAudit\Report\Abstract\getLabel().
   */
  public function getLabel() {
    return dt('Google PageSpeed Insights');
  }

}

Classes

Namesort descending Description
SiteAuditReportInsights Class SiteAuditReportInsights.