diff options
| -rw-r--r-- | jquery_drawer.module | 17 | 
1 files changed, 9 insertions, 8 deletions
diff --git a/jquery_drawer.module b/jquery_drawer.module index eb166be..5d2aa54 100644 --- a/jquery_drawer.module +++ b/jquery_drawer.module @@ -5,12 +5,12 @@   * @file   * Implementation of a jQuery Drawer.   * - * This module implements the jQuery.drawer navigation menu - * from http://lib.metatype.jp/jquery_drawer/sample.html + * This module implements the jQuery.drawer navigation menu from + * http://lib.metatype.jp/jquery_drawer/sample.html   */  /** - * Implementation of hook_uninstall(); + * Implementation of hook_uninstall().   */  function jquery_drawer_uninstall() {    variable_del('jquery_drawer'); @@ -18,7 +18,7 @@ function jquery_drawer_uninstall() {  }  /** - * Implementation of hook_init(); + * Implementation of hook_init().   */  function jquery_drawer_init() {    theme('jquery_drawer_css'); @@ -26,7 +26,7 @@ function jquery_drawer_init() {  }  /** - * Implementation of hook_block(); + * Implementation of hook_block().   */  function jquery_drawer_block($op = 'list', $delta = 0, $edit = array()) {    switch ($op) { @@ -70,7 +70,7 @@ function jquery_drawer_block($op = 'list', $delta = 0, $edit = array()) {  }  /** - * Implementation of hook_menu(); + * Implementation of hook_menu().   */  function jquery_drawer_menu() {    $items['jquery_drawer'] = array( @@ -84,7 +84,7 @@ function jquery_drawer_menu() {  }  /** - * Implementation of hook_theme(); + * Implementation of hook_theme().   */  function jquery_drawer_theme() {    return array( @@ -107,6 +107,7 @@ function jquery_drawer_theme() {  /**   * Drawer logic. + *   * @ingroup themeable   */  function theme_jquery_drawer($menu) { @@ -133,7 +134,7 @@ function theme_jquery_drawer($menu) {  /**   * Menu callback.   * - * @TODO: split themeable output from logic. + * @todo: split themeable output from logic.   */  function jquery_drawer_page($tid = NULL) {    $output  = '';  | 
