summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2012-03-06 10:22:08 -0800
committerJennifer Hodgdon <yahgrp@poplarware.com>2012-03-06 10:22:08 -0800
commitad2a2d5816362a666accfc1ea3829eb0eb048f78 (patch)
tree9e188dd1da069192661fa9de81d7c5b0fbaf5b11 /profiles
parent261faf0b973d12a2f175c9f5c3363a253dab3643 (diff)
downloadbrdo-ad2a2d5816362a666accfc1ea3829eb0eb048f78.tar.gz
brdo-ad2a2d5816362a666accfc1ea3829eb0eb048f78.tar.bz2
Issue #1355362 by bartlantz: Clean up API docs for the install profiles
Diffstat (limited to 'profiles')
-rw-r--r--profiles/minimal/minimal.install8
-rw-r--r--profiles/minimal/minimal.profile6
-rw-r--r--profiles/standard/standard.install6
-rw-r--r--profiles/standard/standard.profile6
-rw-r--r--profiles/testing/testing.install6
-rw-r--r--profiles/testing/testing.profile4
6 files changed, 33 insertions, 3 deletions
diff --git a/profiles/minimal/minimal.install b/profiles/minimal/minimal.install
index 059f038c2..58a0f1277 100644
--- a/profiles/minimal/minimal.install
+++ b/profiles/minimal/minimal.install
@@ -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 some standard blocks.
diff --git a/profiles/minimal/minimal.profile b/profiles/minimal/minimal.profile
index ff8f28105..fe6da8c32 100644
--- a/profiles/minimal/minimal.profile
+++ b/profiles/minimal/minimal.profile
@@ -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.
*/
diff --git a/profiles/standard/standard.install b/profiles/standard/standard.install
index ccc70443f..ab3e8a1ad 100644
--- a/profiles/standard/standard.install
+++ b/profiles/standard/standard.install
@@ -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.
diff --git a/profiles/standard/standard.profile b/profiles/standard/standard.profile
index 7671c12a2..d554c9379 100644
--- a/profiles/standard/standard.profile
+++ b/profiles/standard/standard.profile
@@ -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.
*/
diff --git a/profiles/testing/testing.install b/profiles/testing/testing.install
index 192704d75..f9d8f585c 100644
--- a/profiles/testing/testing.install
+++ b/profiles/testing/testing.install
@@ -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.
diff --git a/profiles/testing/testing.profile b/profiles/testing/testing.profile
index a4abe2daf..6a71a66f6 100644
--- a/profiles/testing/testing.profile
+++ b/profiles/testing/testing.profile
@@ -1,2 +1,6 @@
<?php
+/**
+ * @file
+ * Installation profile for tests.
+ */