You are here

function AcquiaLiftReportBase::__construct in Acquia Lift Connector 7

Constructs an AcquiaLiftReport object

Parameters

PersonalizeAgentInterface $agent: The agent the report is for.

AcquiaLiftReportDataSourceInterface $report_data_src: The source for the report data.

File

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

Class

AcquiaLiftReportBase
Base class providing report data loading functionality common to all Acquia Lift Reports.

Code

function __construct(PersonalizeAgentInterface $agent, AcquiaLiftReportDataSourceInterface $report_data_src) {
  $this->agent = $agent;
  $this->reportDataSrc = $report_data_src;
}