Ignore:
Timestamp:
Jan 24, 2014, 1:50:48 PM (10 years ago)
Author:
mistic100
Message:

feature 2999; docblocks for history, install and metadata

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions_install.inc.php

    r26461 r26946  
    2323
    2424/**
    25  * loads an sql file and executes all queries
    26  *
     25 * @package functions\admin\install
     26 */
     27
     28
     29/**
     30 * Loads a SQL file and executes all queries.
    2731 * Before executing a query, $replaced is... replaced by $replacing. This is
    2832 * useful when the SQL file contains generic words. Drop table queries are
    2933 * not executed.
    3034 *
    31  * @param string filepath
    32  * @param string replaced
    33  * @param string replacing
    34  * @return void
     35 * @param string $filepath
     36 * @param string $replaced
     37 * @param string $replacing
    3538 */
    3639function execute_sqlfile($filepath, $replaced, $replacing, $dblayer)
     
    7174/**
    7275 * Automatically activate all core themes in the "themes" directory.
    73  *
    74  * @return void
    7576 */
    7677function activate_core_themes()
     
    8788}
    8889
     90/**
     91 * Connect to database during installation. Uses $_POST.
     92 *
     93 * @param array &$infos - populated with infos
     94 * @param array &$errors - populated with errors
     95 */
    8996function install_db_connect(&$infos, &$errors)
    9097{
     
    100107  }
    101108}
     109
    102110?>
Note: See TracChangeset for help on using the changeset viewer.