123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Drupal\heartbeat8;
- use Drupal\Core\Entity\Query\QueryFactory;
- class HeartbeatTypeServices {
-
- protected $entityQuery;
-
- public function __construct(QueryFactory $entity_query) {
- $this->entityQuery = $entity_query;
- }
- public function getTypes() {
- return $this->entityQuery->get('heartbeat_type')->execute();
- }
- }
|