summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-03-25 20:49:06 +0000
committerDries Buytaert <dries@buytaert.net>2007-03-25 20:49:06 +0000
commite187c8d957679d6a513963aaaff6399d3c02aeb2 (patch)
tree346126b38bd54965a6ee881ecfb1b10d0d4ff6e0 /profiles
parent860313e72bd0ea234e254083be0e89483a584115 (diff)
downloadbrdo-e187c8d957679d6a513963aaaff6399d3c02aeb2.tar.gz
brdo-e187c8d957679d6a513963aaaff6399d3c02aeb2.tar.bz2
- Patch #130478 by Jaza: improved code comments.
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default/default.profile6
1 files changed, 4 insertions, 2 deletions
diff --git a/profiles/default/default.profile b/profiles/default/default.profile
index be884cfd6..e8decf46a 100644
--- a/profiles/default/default.profile
+++ b/profiles/default/default.profile
@@ -32,7 +32,9 @@ function default_profile_details() {
* screen.
*/
function default_profile_final() {
- // Insert default user-defined node types into the database.
+ // Insert default user-defined node types into the database. For a complete
+ // list of available node type attributes, refer to the node type API
+ // documentation at: http://api.drupal.org/api/HEAD/function/hook_node_info.
$types = array(
array(
'type' => 'page',
@@ -67,4 +69,4 @@ function default_profile_final() {
$theme_settings = variable_get('theme_settings', array());
$theme_settings['toggle_node_info_page'] = FALSE;
variable_set('theme_settings', $theme_settings);
-} \ No newline at end of file
+}