You are here

function ctools_ajax_sample_theme in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 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 66
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,
      ),
    ),
  );
}