You are here

interface AcquiaLiftReportInterface in Acquia Lift Connector 7

Hierarchy

Expanded class hierarchy of AcquiaLiftReportInterface

All classes that implement AcquiaLiftReportInterface

File

plugins/agent_types/AcquiaLiftAgent.inc, line 88
Provides an agent type for Acquia Lift

View source
interface AcquiaLiftReportInterface {

  /**
   * Get the confidence measure for determining the statistical significance
   * of tests.
   */
  public function getConfidenceMeasure();

  /**
   * Set the confidence measure for determining the statistical significance
   * of tests.
   *
   * @param $value
   *   The value as a number between 0 and 100.
   */
  public function setConfidenceMeasure($value);

  /**
   * Retrieves a conversion report.
   *
   * @param $options
   *   An array of report options.
   *   - decision_name: (Optional) The decision to get conversion report for.
   *   - goal: (Optional) The goal for limiting the report, defaults to all goals.
   *   - start: (Optional) The start time for report data in Y-m-d format.
   *     Defaults to agent start.
   *   - end: (Optional) The end time for report data in Y-m-d format.  Defaults
   *     to the current date.
   * @return array
   *   A renderable array.
   */
  public function buildConversionReport($options);

}

Members

Namesort descending Modifiers Type Description Overrides
AcquiaLiftReportInterface::buildConversionReport public function Retrieves a conversion report. 1
AcquiaLiftReportInterface::getConfidenceMeasure public function Get the confidence measure for determining the statistical significance of tests. 1
AcquiaLiftReportInterface::setConfidenceMeasure public function Set the confidence measure for determining the statistical significance of tests. 1