TestController.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. namespace Drupal\heartbeat\Controller;
  3. use Drupal\Core\Controller\ControllerBase;
  4. use Symfony\Component\DependencyInjection\ContainerInterface;
  5. use Drupal\heartbeat\HeartbeatTypeServices;
  6. use Drupal\heartbeat\HeartbeatStreamServices;
  7. /**
  8. * Class TestController.
  9. *
  10. * @package Drupal\heartbeat\Controller
  11. */
  12. class TestController extends ControllerBase {
  13. /**
  14. * Drupal\heartbeat\HeartbeatTypeServices definition.
  15. *
  16. * @var HeartbeatTypeServices
  17. */
  18. protected $heartbeat_heartbeattype;
  19. /**
  20. * Drupal\heartbeat\HeartbeatStreamServices definition.
  21. *
  22. * @var HeartbeatStreamServices
  23. */
  24. protected $heartbeatstream;
  25. /**
  26. * {@inheritdoc}
  27. */
  28. public function __construct(HeartbeatTypeServices $heartbeat_heartbeattype, HeartbeatStreamServices $heartbeatstream) {
  29. $this->heartbeat_heartbeattype = $heartbeat_heartbeattype;
  30. $this->heartbeatstream = $heartbeatstream;
  31. }
  32. /**
  33. * {@inheritdoc}
  34. */
  35. public static function create(ContainerInterface $container) {
  36. return new static(
  37. $container->get('heartbeat.heartbeattype'),
  38. $container->get('heartbeatstream')
  39. );
  40. }
  41. /**
  42. * Start.
  43. *
  44. * @return string
  45. * Return Hello string.
  46. */
  47. public function start($arg) {
  48. $node = \Drupal\node\Entity\Node::load(186);
  49. $streamEntities = $this->heartbeatstream->loadAllEntities();
  50. foreach ($streamEntities as $streamEntityId) {
  51. $streamEntity = $this->heartbeatstream->getEntityById($streamEntityId);
  52. $types = $streamEntity->get('types');
  53. $arg .= 'Stream:: ' . $streamEntity->id();
  54. $i = 1;
  55. foreach ($types->getValue() as $heartbeatType) {
  56. $arg .= ' ' . $i . '. ' . $heartbeatType['target_id'];
  57. $i++;
  58. }
  59. }
  60. $heartbeatTypeService = \Drupal::service('heartbeat.heartbeattype');
  61. $entityBundleInfo = $node->bundle();
  62. $entityType = $node->getEntityType();
  63. $availableBundles = $heartbeatTypeService->getEntityBundles($node->getEntityType());
  64. foreach ($heartbeatTypeService->getTypes() as $type) {
  65. $heartbeatTypeEntity = \Drupal::entityTypeManager()->getStorage('heartbeat_type')->load($type);
  66. }
  67. $emptyVariable = 'not empty';
  68. return [
  69. '#type' => 'markup',
  70. '#markup' => $this->t('Implement method: start with parameter(s): ' . $arg),
  71. ];
  72. }
  73. }