"You may be an ambassador to England or France
You may like to gamble, you might like to dance
You may be the heavyweight champion of the world
You may be a socialite with a long string of pearls
But you’re gonna have to serve somebody, yes indeed
You’re gonna have to serve somebody."
projects[views][subdir] = "contrib" projects[views][version] = "2.11" ; http://drupal.org/node/862072 projects[views][patch][] = "http://drupal.org/files/issues/views.862072.patch"
.htaccess README.txt vertical_tabs.626126.patch views.862072-7.patch
if ($task == 'profile') { // 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', 'name' => st('Page'), 'module' => 'node', 'description' => st("A page is a simple method for creating and displaying information that rarely changes, such as an \"Abo ut us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial hom e page."), 'custom' => TRUE, 'modified' => TRUE, 'locked' => FALSE, 'help' => '', 'min_word_count' => '', ), ); foreach ($types as $type) { $type = (object) _node_type_set_defaults($type); node_type_save($type); } // Default page to not be promoted, and have comments disabled, and create new revisions. variable_set('node_options_page', array('status', 'revision')); variable_set('comment_page', COMMENT_NODE_DISABLED); // Don't display date and author information for page nodes by default. $theme_settings = variable_get('theme_settings', array()); $theme_settings['toggle_node_info_page'] = FALSE; variable_set('theme_settings', $theme_settings); // Admin theme. variable_set('admin_theme', 'rubik');
if ($task == 'profile') { // 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', 'name' => st('Page'), 'module' => 'node', 'description' => st("A page is a simple method for creating and displaying information that rarely changes, such as an \"Abo ut us\" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site's initial hom e page."), 'custom' => TRUE, 'modified' => TRUE, 'locked' => FALSE, 'help' => '', 'min_word_count' => '', ), ); foreach ($types as $type) { $type = (object) _node_type_set_defaults($type); node_type_save($type); } // Default page to not be promoted, and have comments disabled, and create new revisions. variable_set('node_options_page', array('status', 'revision')); variable_set('comment_page', COMMENT_NODE_DISABLED); // Don't display date and author information for page nodes by default. $theme_settings = variable_get('theme_settings', array()); $theme_settings['toggle_node_info_page'] = FALSE; variable_set('theme_settings', $theme_settings); // Admin theme. variable_set('admin_theme', 'rubik');
dependencies[] = foobar dependencies[] = custom_feature
variables[site_name] = My Awesome Site variables[site_frontpage] = welcome
base = my_base_profile
; Create an administrative user users[admin][uid] = 1 users[admin][name] = Administrator users[admin][mail] = webmaster@example.com users[admin][roles] = administrator users[admin][status] = 1 ; About page. nodes[about][type] = page nodes[about][title] = About My Site nodes[about][body] = Placeholder content for the about page. nodes[about][uid] = 1 nodes[about][menu][link_title] = About nodes[about][menu][menu_name] = primary-links nodes[about][path] = about