function sbp_test_make_pub_page in Search by Page 6
Same name and namespace in other branches
- 7 tests/sbp_test.module \sbp_test_make_pub_page()
Page callback function for path 'sbp_test_pub_page'.
1 string reference to 'sbp_test_make_pub_page'
- sbp_test_menu in tests/
sbp_test.module - Implementation of hook_menu().
File
- tests/
sbp_test.module, line 244 - Module file for Search by Page testing.
Code
function sbp_test_make_pub_page() {
return '<h2>' . t('Trees') . '</h2>' . '<ul>' . '<li>' . t('Oak') . '</li>' . '<li>' . t('Maple') . '</li>' . '</ul>';
}