function simpletest_theme

Same name and namespace in other branches
  1. 7.x modules/simpletest/simpletest.module \simpletest_theme()

Implements hook_theme().

File

core/modules/simpletest/simpletest.module, line 51

Code

function simpletest_theme() {
  return [
    'simpletest_result_summary' => [
      'variables' => [
        'label' => NULL,
        'items' => [],
        'pass' => 0,
        'fail' => 0,
        'exception' => 0,
        'debug' => 0,
      ],
    ],
  ];
}

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