function theming_example_basic_content in Examples for Developers 6
Initial landing page explaining the use of the module.
1 string reference to 'theming_example_basic_content'
- theming_example_menu in theming_example/
theming_example.module - Implements hook_menu().
File
- theming_example/
theming_example.module, line 65 - Explains how a module declares theme functions, preprocess functions, and templates.
Code
function theming_example_basic_content() {
$content = t('Basic examples of pages that are run through theme functions.');
$content = theme('theming_example_basic_content', $content);
return $content;
}