Chris@0: /** Chris@0: * Implements hook_theme(). Chris@0: */ Chris@0: function {{ machine_name }}_theme($existing, $type, $theme, $path) { Chris@0: return array( Chris@0: 'forum_display' => array( Chris@0: 'variables' => array('forums' => NULL, 'topics' => NULL, 'parents' => NULL, 'tid' => NULL, 'sortby' => NULL, 'forum_per_page' => NULL), Chris@0: ), Chris@0: 'forum_list' => array( Chris@0: 'variables' => array('forums' => NULL, 'parents' => NULL, 'tid' => NULL), Chris@0: ), Chris@0: 'forum_topic_list' => array( Chris@0: 'variables' => array('tid' => NULL, 'topics' => NULL, 'sortby' => NULL, 'forum_per_page' => NULL), Chris@0: ), Chris@0: 'forum_icon' => array( Chris@0: 'variables' => array('new_posts' => NULL, 'num_posts' => 0, 'comment_mode' => 0, 'sticky' => 0), Chris@0: ), Chris@0: 'status_report' => array( Chris@0: 'render element' => 'requirements', Chris@0: 'file' => 'system.admin.inc', Chris@0: ), Chris@0: 'system_date_time_settings' => array( Chris@0: 'render element' => 'form', Chris@0: 'file' => 'system.admin.inc', Chris@0: ), Chris@0: ); Chris@0: }