Issue #1355362 by bartlantz: Clean up API docs for profiles directory

8.0.x
Jennifer Hodgdon 2012-02-29 13:19:26 -08:00
parent 456a06e4a9
commit 4695d1e8ca
6 changed files with 33 additions and 4 deletions

View File

@ -1,9 +1,15 @@
<?php
/**
* @file
* Install, update and uninstall functions for the the minimal install profile.
*/
/**
* Implements hook_install().
*
* Perform actions to set up the site for this profile.
* Performs actions to set up the site for this profile.
*
* @see system_install()
*/
function minimal_install() {
// Enable Bartik theme and set it as default theme instead of Stark.

View File

@ -1,7 +1,11 @@
<?php
/**
* @file
* Enables modules and site configuration for a minimal site installation.
*/
/**
* Implements hook_form_FORM_ID_alter().
* Implements hook_form_FORM_ID_alter() for install_configure_form().
*
* Allows the profile to alter the site configuration form.
*/

View File

@ -1,9 +1,15 @@
<?php
/**
* @file
* Install, update and uninstall functions for the standard install profile.
*/
/**
* Implements hook_install().
*
* Perform actions to set up the site for this profile.
*
* @see system_install()
*/
function standard_install() {
// Add text formats.

View File

@ -1,7 +1,11 @@
<?php
/**
* @file
* Enables modules and site configuration for a standard site installation.
*/
/**
* Implements hook_form_FORM_ID_alter().
* Implements hook_form_FORM_ID_alter() for install_configure_form().
*
* Allows the profile to alter the site configuration form.
*/

View File

@ -1,9 +1,15 @@
<?php
/**
* @file
* Install, update and uninstall functions for the testing profile.
*/
/**
* Implements hook_install().
*
* Perform actions to set up the site for this profile.
*
* @see system_install()
*/
function testing_install() {
// Allow visitor account creation, but with administrative approval.

View File

@ -1,2 +1,5 @@
<?php
/**
* @file
* Installation profile for tests.
*/