function CommonTestHooks::theme

Implements hook_theme().

File

core/modules/system/tests/modules/common_test/src/Hook/CommonTestHooks.php, line 64

Class

CommonTestHooks
Hook implementations for common_test.

Namespace

Drupal\common_test\Hook

Code

public function theme() : array {
    return [
        'common_test_foo' => [
            'variables' => [
                'foo' => 'foo',
                'bar' => 'bar',
            ],
        ],
        'common_test_render_element' => [
            'render element' => 'foo',
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.