Skip to content
Snippets Groups Projects
Commit 2639c1d4 authored by Kjartan Mannes's avatar Kjartan Mannes
Browse files

- Improved Doxygen documentation.

parent 41d2b2a3
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 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);
......
<?php
/** @file
* $Id$
*/
/* $Id$ */
/**
* @defgroup menu Menu system
* @{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment