By mshala06 on
I created a module, but none of the content that should appear in the module doesn't show up when I go to the page where the module is located. Does anyone know what the problem could be?
thank you
MT
I created a module, but none of the content that should appear in the module doesn't show up when I go to the page where the module is located. Does anyone know what the problem could be?
thank you
MT
Comments
Probably not a module
Hi,
I'd like to help you, but I don't understand the problem. A module is not located on any particular page. Perhaps you mean a block?
Doug Gough
ImageX Media
Be sure to implement the
Be sure to implement the hook_menu in your .module file and assign it the appropriate page callback.
Example:
This says that when the user is at http://www.yoursite.com/videos, it will execute the display_videos_page function located in the display_videos.pages.inc file. This function then tells drupal what to display.
PS: This is the Drupal 6 way.