diff options
author | Silvio <silvio@socioambiental.org> | 2009-12-14 14:38:41 -0200 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-10-14 18:23:24 -0300 |
commit | 14aca13197f80c6231337f7f52709604d7ae0aad (patch) | |
tree | 876f672d6cba2389632a23f5b37558bdf2b52976 | |
parent | 1704941f50a3d85255114e5a54331059850f6a86 (diff) | |
download | jquery_drawer-14aca13197f80c6231337f7f52709604d7ae0aad.tar.gz jquery_drawer-14aca13197f80c6231337f7f52709604d7ae0aad.tar.bz2 |
Coding style
-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 = ''; |