Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
2639c1d4
Commit
2639c1d4
authored
Dec 27, 2003
by
Kjartan
Browse files
- Improved Doxygen documentation.
parent
41d2b2a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
includes/file.inc
View file @
2639c1d4
<?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
);
...
...
includes/menu.inc
View file @
2639c1d4
<?php
/** @file
* $Id$
*/
/* $Id$ */
/**
* @defgroup menu Menu system
* @{
...
...
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