Guest User

Untitled

a guest
Apr 24th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. // $Id: page_example.module,v 1.13 2007/10/17 19:38:36 litwol Exp $
  3. function ehudkohome_perm() {
  4. return array('access foo', 'access baz');
  5. }
  6.  
  7. function ehudkohome_menu() {
  8. $items['home'] = array(
  9. 'title' => 'Home Page',
  10. 'page callback' => 'ehudkohome_index',
  11. 'access arguments' => array('access home'),
  12. 'type' => MENU_SUGGESTED_ITEM,
  13. );
  14.  
  15. return $items;
  16. }
  17.  
  18. function ehudkohome_index() {
  19. return '<p>'. t('The quick brown fox jumps over the lazy dog.') .'</p>';
  20. }
Add Comment
Please, Sign In to add comment