dhis2-8.x-1.x-dev/src/Services/DataElementServiceInterface.php
src/Services/DataElementServiceInterface.php
<?php
namespace Drupal\dhis\Services;
interface DataElementServiceInterface
{
public function getDataElementByCode($code, $format);
public function getDataElements($isPaginated = TRUE, $format = "JSON");
public function getDatasetDataElements($datasetCode, $isPaginated, $format);
public function getDataElementValues($dataElementCodes = array(), $periods = array(), $orgUnits = array());
}