PHP Class BaseAPI

Afficher le fichier Open project: openeyes/openeyes Class Usage Examples

Méthodes publiques

Méthode Description
getElementForLatestEventInEpisode ( Episode $episode, string $element ) : unknown gets the element of type $element for the given patient in the given episode.
getEventsInEpisode ( Patient $patient, Episode $episode ) : array gets all the events in the episode for the event type this API is for, for the given patient, most recent first.
getMostRecentElementInEpisode ( $episode_id, $event_type_id, $model, string $before_date = '' ) : boolean gets the most recent instance of a specific element in the current episode
getMostRecentEventInEpisode ( $episode_id, $event_type_id )

Méthodes protégées

Méthode Description
getEventType ( ) : EventType gets the event type for the api instance.
getModuleClass ( ) : mixed Returns the non-namespaced module class of the module API Instance.

Method Details

getElementForLatestEventInEpisode() public méthode

gets the element of type $element for the given patient in the given episode.
public getElementForLatestEventInEpisode ( Episode $episode, string $element ) : unknown
$episode Episode - the episode
$element string - the element class
Résultat unknown - the element type requested, or null

getEventType() protected méthode

gets the event type for the api instance.
protected getEventType ( ) : EventType
Résultat EventType $event_type

getEventsInEpisode() public méthode

gets all the events in the episode for the event type this API is for, for the given patient, most recent first.
public getEventsInEpisode ( Patient $patient, Episode $episode ) : array
$patient Patient - the patient
$episode Episode - the episode
Résultat array - list of events of the type for this API instance

getModuleClass() protected méthode

Returns the non-namespaced module class of the module API Instance.
protected getModuleClass ( ) : mixed
Résultat mixed

getMostRecentElementInEpisode() public méthode

gets the most recent instance of a specific element in the current episode
public getMostRecentElementInEpisode ( $episode_id, $event_type_id, $model, string $before_date = '' ) : boolean
$episode_id
$event_type_id
$model
$before_date string
Résultat boolean

getMostRecentEventInEpisode() public méthode

public getMostRecentEventInEpisode ( $episode_id, $event_type_id )