diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-06 09:58:34 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-06 09:58:34 +0000 |
commit | d83289f857853b2efca194cd663267c24dbfd305 (patch) | |
tree | b950cd9d0c4df0068164d6131c2f40fafad7022f /modules/upload | |
parent | baf6910cc1002c7b40b2899162a122b3ed441e6d (diff) | |
download | brdo-d83289f857853b2efca194cd663267c24dbfd305.tar.gz brdo-d83289f857853b2efca194cd663267c24dbfd305.tar.bz2 |
#196667 (GHOP 45) by fberci: add '@ingroup themeable' to all themeable functions
Diffstat (limited to 'modules/upload')
-rw-r--r-- | modules/upload/upload.module | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index fcd2f5a92..c35776426 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -340,6 +340,8 @@ function upload_nodeapi(&$node, $op, $teaser) { /** * Displays file attachments in table + * + * @ingroup themeable */ function theme_upload_attachments($files) { $header = array(t('Attachment'), t('Size')); @@ -517,6 +519,8 @@ function _upload_form($node) { /** * Theme the attachments list. + * + * @ingroup themeable */ function theme_upload_form_current(&$form) { $header = array('', t('Delete'), t('List'), t('Description'), t('Weight'), t('Size')); @@ -542,6 +546,8 @@ function theme_upload_form_current(&$form) { /** * Theme the attachment form. * Note: required to output prefix/suffix. + * + * @ingroup themeable */ function theme_upload_form_new($form) { $output = drupal_render($form); |