summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-01-28 16:05:17 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-01-28 16:05:17 +0000
commit279d2d4c44475544b55b4190e2468e055bca936e (patch)
tree44ef81deea16993979d3a7fb84cf63da0b3180b8 /includes
parent23607968dfc1429f509d3ee3b5b7f9f0f2ed720b (diff)
downloadbrdo-279d2d4c44475544b55b4190e2468e055bca936e.tar.gz
brdo-279d2d4c44475544b55b4190e2468e055bca936e.tar.bz2
#213517 by ax: inline documentation cleanup, fixing four unclosed @defgroups
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc4
-rw-r--r--includes/file.inc4
-rw-r--r--includes/image.inc25
-rw-r--r--includes/menu.inc4
4 files changed, 12 insertions, 25 deletions
diff --git a/includes/common.inc b/includes/common.inc
index b8900736e..789a01673 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -846,6 +846,10 @@ function valid_url($url, $absolute = FALSE) {
}
/**
+ * @} End of "defgroup validation".
+ */
+
+/**
* Register an event for the current visitor (hostname/IP) to the flood control mechanism.
*
* @param $name
diff --git a/includes/file.inc b/includes/file.inc
index ae235e619..791c33fdd 100644
--- a/includes/file.inc
+++ b/includes/file.inc
@@ -978,3 +978,7 @@ function file_upload_max_size() {
}
return $max_size;
}
+
+/**
+ * @} End of "defgroup file".
+ */
diff --git a/includes/image.inc b/includes/image.inc
index e6709047b..03f527887 100644
--- a/includes/image.inc
+++ b/includes/image.inc
@@ -21,31 +21,6 @@
* from this problem, but it requires the ISP to have installed additional
* software.
*
- * Image toolkits are installed by copying the image.$name.inc file into
- * Drupal's includes directory. The toolkit must then be enabled using the
- * form at ?q=admin/settings/image-toolkit.
- */
-
-/**
- * @file
- * API for manipulating images.
- */
-
-/**
- * @defgroup image Image toolkits
- * @{
- * Drupal's image toolkits provide an abstraction layer for common image file
- * manipulations like scaling, cropping, and rotating. The abstraction frees
- * module authors from the need to support multiple image libraries, and it
- * allows site administrators to choose the library that's best for them.
- *
- * PHP includes the GD library by default so a GD toolkit is installed with
- * Drupal. Other toolkits like ImageMagic are available from contrib modules.
- * GD works well for small images, but using it with larger files may cause PHP
- * to run out of memory. In contrast the ImageMagick library does not suffer
- * from this problem, but it requires the ISP to have installed additional
- * software.
- *
* Image toolkits are installed by copying the image.ToolkitName.inc file into
* Drupal's includes directory. The toolkit must then be enabled using the
* admin/settings/image-toolkit form.
diff --git a/includes/menu.inc b/includes/menu.inc
index e9e738f44..618255b82 100644
--- a/includes/menu.inc
+++ b/includes/menu.inc
@@ -2337,3 +2337,7 @@ function menu_valid_path($form_item) {
$menu_admin = FALSE;
return $item && $item['access'];
}
+
+/**
+ * @} End of "defgroup menu".
+ */