ApiController::actionConformance PHP Method

actionConformance() public method

WhOLE SYSTEM INTERACTIONS
public actionConformance ( )
    public function actionConformance()
    {
        $statement = new \services\FhirConformanceStatement(array('publisher' => Institution::model()->getCurrent()->name, 'date' => new \services\Date(), 'description' => 'OpenEyes at ' . Institution::model()->getCurrent()->short_name, 'url' => $this->createAbsoluteUrl('api/'), 'fhir_version' => self::FHIR_VERSION, 'accept_unknown' => true, 'profiles' => Yii::app()->service->listFhirSupportedProfiles(), 'server_resources' => Yii::app()->service->describeFhirServerResources()));
        $this->sendResource($statement);
    }