00001 <?php 00002 // $Id: 00003 00004 /** 00005 * @file 00006 * Page multi-create 00007 * 00008 * Additional Doxygen documentation 00009 */ 00010 00011 /** 00012 * @page multi_create_help multi-create 00013 * Create a Drupal installation with the symbolic link structure as described in the \ref intro. 00014 * @section Aliases 00015 * @subsection multi_create_alias_mcr mcr 00016 * @subsection multi_create_alias_create create 00017 * @section Arguments 00018 * @subsection destination /path/to/installation 00019 * The path where the installation should be created 00020 * @section Options 00021 * @subsection multi_create_makefile --makefile 00022 * Path to drush_make makefile. 00023 * 00024 * The makefile must contain the core specification (eg. <em>core = 6.x</em> for Drupal 6) 00025 * and Drupal as project (<em>projects[] = drupal</em>). 00026 * @subsection multi_create_core --core 00027 * Drupal core version (5.x, 6.x). 00028 * 00029 * Take defaults from pm_parse_project_version(array('drupal') if not supplied. 00030 * @section Examples 00031 * @code 00032 * drush multi-create /var/www --core=6.x 00033 * @endcode 00034 * Create a Drupal 6 installation in /var/www 00035 * with creating the directories 6.x_backup, 6.x_profiles 00036 * and 6.x_sites in /var/www link them as backup, profiles and sites 00037 * into the drupal installation folder with a relative path. 00038 * @code 00039 * drush multi-create /var/www --makefile=/path/to/makefile.make 00040 * @endcode 00041 * Creates a Drupal multisite installation in /var/www by using the supplied 00042 * makefile at /path/to/makefile.make. 00043 */
1.5.8