Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
294
Merge Requests
294
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
279d2d4c
Commit
279d2d4c
authored
Jan 28, 2008
by
Gábor Hojtsy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#213517
by ax: inline documentation cleanup, fixing four unclosed @defgroups
parent
23607968
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
25 deletions
+12
-25
includes/common.inc
includes/common.inc
+4
-0
includes/file.inc
includes/file.inc
+4
-0
includes/image.inc
includes/image.inc
+0
-25
includes/menu.inc
includes/menu.inc
+4
-0
No files found.
includes/common.inc
View file @
279d2d4c
...
...
@@ -845,6 +845,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.
*
...
...
includes/file.inc
View file @
279d2d4c
...
...
@@ -978,3 +978,7 @@ function file_upload_max_size() {
}
return
$max_size
;
}
/**
* @} End of "defgroup file".
*/
includes/image.inc
View file @
279d2d4c
<?php
// $Id$
/**
* @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.$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.
...
...
includes/menu.inc
View file @
279d2d4c
...
...
@@ -2337,3 +2337,7 @@ function menu_valid_path($form_item) {
$menu_admin
=
FALSE
;
return
$item
&&
$item
[
'access'
];
}
/**
* @} End of "defgroup menu".
*/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment