1 common_test.module common_test_theme()

Implements hook_theme().

File

core/modules/simpletest/tests/common_test.module, line 261
Helper module for the Common tests.

Code

function common_test_theme() {
  return array(
    'common_test_foo' => array(
      'variables' => array('foo' => 'foo', 'bar' => 'bar'),
      'file' => 'common_test.theme.inc',
      'attached' => array(
        'js' => array(
          backdrop_get_path('theme', 'seven') . '/js/script.js',
        ),
        'css' => array(
          backdrop_get_path('theme', 'basis') . '/css/component/maintenance.css',
        ),
        'icons' => array(
          'globe-stand-fill' => array(),
        ),
        'library' => array(
          array('system', 'backdrop.ajax'),
        ),
      ),
    ),
  );
}