I am trying to build my own module in Drupal 7.
So I have created a simple module called \'moon\'
function moon_menu() { $items = array(); $items
In drupal 7 I was getting the following error when using :
return theme('moon', $content);
Was resulting in "Fatal error: Unsupported operand types in drupal_install\includes\theme.inc on line 1071"
This was fixed using :
theme('moon', array('content' => $content));