summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/file.inc26
-rw-r--r--includes/menu.inc5
2 files changed, 8 insertions, 23 deletions
diff --git a/includes/file.inc b/includes/file.inc
index f98b18f46..6f44b1422 100644
--- a/includes/file.inc
+++ b/includes/file.inc
@@ -1,24 +1,10 @@
<?php
-/** @file
- * $Id$
- *
- * Common file handling functions
- *
- * @par Example:
- * @code
- * function module_validate($node) {
- * if (!$node->file = file_save_upload('file')) {
- * $error['file'] = t('File required.');
- * }
- * }
- *
- * function module_insert($node) {
- * if ($node->file) {
- * $file = file_save_upload($node->file);
- * }
- * }
- * @endcode
- *
+/* $Id$ */
+
+/**
+ * @defgroup file File API
+ * Common file handling functions.
+ * @{
*/
define('FILE_DOWNLOADS_PUBLIC', 1);
diff --git a/includes/menu.inc b/includes/menu.inc
index 9ce6cde32..7001e1d9b 100644
--- a/includes/menu.inc
+++ b/includes/menu.inc
@@ -1,7 +1,6 @@
<?php
-/** @file
- * $Id$
- */
+/* $Id$ */
+
/**
* @defgroup menu Menu system
* @{