beginDate = $filter['Value']; break; case 'End_Date': $this->endDate = $filter['Value']; break; } } // The filters predefined for this report $predefinedFilters = [ [ 'Name' => 'Metric_Type', 'Value' => 'Total_Item_Investigations|Unique_Item_Investigations|Total_Item_Requests|Unique_Item_Requests' ], [ 'Name' => 'Access_Method', 'Value' => self::ACCESS_METHOD ], [ 'Name' => 'Data_Type', 'Value' => self::DATA_TYPE ], ]; $this->filters = array_merge($filters, $predefinedFilters); } /** * Set attributes based on the requested parameters. * No attributes are supported by this report. */ public function setAttributes(array $attributes): void { $this->attributes = []; } /** Get report specific form fields */ public static function getReportSettingsFormFields(): array { return parent::getCommonReportSettingsFormFields(); } }