function ctools_ajax_sample_theme in Chaos Tool Suite (ctools) 7
Same name and namespace in other branches
- 6 ctools_ajax_sample/ctools_ajax_sample.module \ctools_ajax_sample_theme()
Implementation of hook_theme()
Render some basic output for this module.
File
- ctools_ajax_sample/
ctools_ajax_sample.module, line 97 - Sample AJAX functionality so people can see some of the CTools AJAX features in use.
Code
function ctools_ajax_sample_theme() {
return array(
// Sample theme functions.
'ctools_ajax_sample_container' => array(
'arguments' => array(
'content' => NULL,
),
),
);
}