EventInfoController.php

Same filename in other branches
  1. 4.x src/Controller/EventInfoController.php

Namespace

Drupal\devel\Controller

File

src/Controller/EventInfoController.php

View source
<?php

namespace Drupal\devel\Controller;

use Drupal\Core\Controller\ControllerBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;

/**
 * Provides route responses for the event info page.
 */
class EventInfoController extends ControllerBase {
    
    /**
     * Event dispatcher service.
     */
    protected EventDispatcherInterface $eventDispatcher;
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container) : static {
        $instance = parent::create($container);
        $instance->eventDispatcher = $container->get('event_dispatcher');
        $instance->stringTranslation = $container->get('string_translation');
        return $instance;
    }
    
    /**
     * Builds the events overview page.
     *
     * @return array
     *   A render array as expected by the renderer.
     */
    public function eventList() : array {
        $headers = [
            'name' => [
                'data' => $this->t('Event Name'),
                'class' => 'visually-hidden',
            ],
            'callable' => $this->t('Callable'),
            'priority' => $this->t('Priority'),
        ];
        $event_listeners = $this->eventDispatcher
            ->getListeners();
        ksort($event_listeners);
        $rows = [];
        foreach ($event_listeners as $event_name => $listeners) {
            $rows[][] = [
                'data' => $event_name,
                'class' => [
                    'devel-event-name-header',
                ],
                'filter' => TRUE,
                'colspan' => '3',
                'header' => TRUE,
            ];
            foreach ($listeners as $listener) {
                $row['name'] = [
                    'data' => $event_name,
                    'class' => [
                        'visually-hidden',
                    ],
                    'filter' => TRUE,
                ];
                $row['class'] = [
                    'data' => $this->resolveCallableName($listener),
                ];
                $row['priority'] = [
                    'data' => $this->eventDispatcher
                        ->getListenerPriority($event_name, $listener),
                ];
                $rows[] = $row;
            }
        }
        $output['events'] = [
            '#type' => 'devel_table_filter',
            '#filter_label' => $this->t('Search'),
            '#filter_placeholder' => $this->t('Enter event name'),
            '#filter_description' => $this->t('Enter a part of the event name to filter by.'),
            '#header' => $headers,
            '#rows' => $rows,
            '#empty' => $this->t('No events found.'),
            '#attributes' => [
                'class' => [
                    'devel-event-list',
                ],
            ],
        ];
        return $output;
    }
    
    /**
     * Helper function for resolve callable name.
     *
     * @param mixed $callable
     *   The for which resolve the name. Can be either the name of a function
     *   stored in a string variable, or an object and the name of a method
     *   within the object.
     *
     * @return string
     *   The resolved callable name or an empty string.
     */
    protected function resolveCallableName(mixed $callable) {
        if (is_callable($callable, TRUE, $callable_name)) {
            return $callable_name;
        }
        return '';
    }

}

Classes

Title Deprecated Summary
EventInfoController Provides route responses for the event info page.