summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-07-13 13:14:25 +0000
committerDries Buytaert <dries@buytaert.net>2006-07-13 13:14:25 +0000
commit1c75a210bdf85afeee33952fd50c1951999fecb4 (patch)
tree340e364ba1ea0e4f41c2cd7c80e66543caff8304 /profiles
parente4e416d1f7037dbee8e06096a6c41368d011599c (diff)
downloadbrdo-1c75a210bdf85afeee33952fd50c1951999fecb4.tar.gz
brdo-1c75a210bdf85afeee33952fd50c1951999fecb4.tar.bz2
- Patch #68926 by chx, jeremy, steven, eaton, webchick, amazon, neil, nedjo et al: an initial install system for Drupal core.
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default.profile21
1 files changed, 21 insertions, 0 deletions
diff --git a/profiles/default.profile b/profiles/default.profile
new file mode 100644
index 000000000..2c9363667
--- /dev/null
+++ b/profiles/default.profile
@@ -0,0 +1,21 @@
+<?php
+
+/**
+ * Return an array of the modules to be enabled when this profile is installed.
+ *
+ * @return
+ * An array of modules to be enabled.
+ */
+function default_profile_modules() {
+ return array('block', 'comment', 'filter', 'help', 'menu', 'node', 'page', 'story', 'system', 'taxonomy', 'user', 'watchdog');
+}
+
+/**
+ * Return a description of the profile.
+ */
+function default_profile_details() {
+ return array(
+ 'name' => 'Drupal',
+ 'description' => 'Select this profile to enable some basic Drupal functionality and the default theme.'
+ );
+}