function angularjs_examples_theme in AngularJS 7
Implements hook_theme
Return value
array
File
- modules/
angularjs_examples/ angularjs_examples.module, line 105
Code
function angularjs_examples_theme() {
$themes = array();
$themes['angularjs_examples_nodes'] = array(
'template' => 'theme/example-nodes',
'parameters' => array(),
);
$themes['angularjs_examples_nodes_list'] = array(
'template' => 'theme/example-nodes-list',
'parameters' => array(
'query' => array(),
),
);
return $themes;
}