Changeset 235


Ignore:
Timestamp:
Nov 8, 2003, 10:02:02 AM (20 years ago)
Author:
z0rglub
Message:

Modifyed header to be compliant with PhpDocumentor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions.inc.php

    r231 r235  
    11<?php
    2 /***************************************************************************
    3  *                             functions.inc.php                           *
    4  *                            -------------------                          *
    5  *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
    6  *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
    7  *                                                                         *
    8  *   $Id$
    9  *                                                                         *
    10  ***************************************************************************
    11 
    12  ***************************************************************************
    13  *                                                                         *
    14  *   This program is free software; you can redistribute it and/or modify  *
    15  *   it under the terms of the GNU General Public License as published by  *
    16  *   the Free Software Foundation;                                         *
    17  *                                                                         *
    18  ***************************************************************************/
     2// +-----------------------------------------------------------------------+
     3// |                           functions.inc.php                           |
     4// +-----------------------------------------------------------------------+
     5// | application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          |
     6// | author        : Pierrick LE GALL <pierrick@z0rglub.com>               |
     7// +-----------------------------------------------------------------------+
     8// | file          : $RCSfile$
     9// | tag           : $Name$
     10// | last update   : $Date$
     11// | revision      : $Revision$
     12// +-----------------------------------------------------------------------+
     13// | This program is free software; you can redistribute it and/or modify  |
     14// | it under the terms of the GNU General Public License as published by  |
     15// | the Free Software Foundation;                                         |
     16// +-----------------------------------------------------------------------+
     17
    1918include( PREFIX_INCLUDE.'./include/functions_user.inc.php' );
    2019include( PREFIX_INCLUDE.'./include/functions_session.inc.php' );
     
    2726// get_enums returns an array containing the possible values of a enum field
    2827// in a table of the database.
     28/**
     29 * possible values of an "enum" field
     30 *
     31 * get_enums returns an array containing the possible values of a enum field
     32 * in a table of the database.
     33 *
     34 * @param string table in the database
     35 * @param string field name in this table
     36 * @uses str_replace
     37 */
    2938function get_enums( $table, $field )
    3039{
Note: See TracChangeset for help on using the changeset viewer.