Skip to content
Snippets Groups Projects
Commit 4695d1e8 authored by Jennifer Hodgdon's avatar Jennifer Hodgdon
Browse files

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

parent 456a06e4
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
* 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.
......
<?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.
*/
......
<?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.
......
<?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.
*/
......
<?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.
......
<?php
/**
* @file
* Installation profile for tests.
*/
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