FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 36fccd9a authored by thewilkybarkid's avatar thewilkybarkid
Browse files

Start full profile

parent 30e8c689
No related branches found
No related tags found
No related merge requests found
University of Cambridge Drupal install profile
==============================================
University of Cambridge Drupal install profiles
===============================================
To build the profile execute:
There are two different install profiles provided:
- University of Cambridge
- University of Cambridge (lite)
Lite profile
------------
In the lite profile the University of Cambridge theme is enabled and a few standard pieces are set up (eg images styles, front-page carousel).
This profile is useful if you would like full control over how your Drupal site is put together.
To build the lite profile execute:
drush make --no-core --contrib-destination=. cambridge_lite.make .
And remove the `cambridge.info`, `cambridge.install`, `cambridge.make` and `cambridge.profile` files.
Full profile
------------
The full profile contains all the features of the lite profile, plus additions that helps you to quickly get going (eg extra modules are enabled and configured).
This profile is useful if you don't mind following established patterns when putting your Drupal site together.
To build the full profile execute:
drush make --no-core --contrib-destination=. cambridge.make .
And remove the `cambridge_lite.info` and `cambridge_lite.profile` files.
name = University of Cambridge
description = Install the standard University of Cambridge features.
version = 7.x-1.0-dev
core = 7.x
; core
dependencies[] = block
dependencies[] = contextual
dependencies[] = dashboard
dependencies[] = dblog
dependencies[] = field_ui
dependencies[] = file
dependencies[] = help
dependencies[] = image
dependencies[] = list
dependencies[] = menu
dependencies[] = number
dependencies[] = options
dependencies[] = overlay
dependencies[] = path
dependencies[] = rdf
dependencies[] = search
dependencies[] = shortcut
dependencies[] = taxonomy
dependencies[] = toolbar
; theme
dependencies[] = menu_block
; contrib
dependencies[] = link
dependencies[] = php
dependencies[] = raven
dependencies[] = views
dependencies[] = views_ui
<?php
/**
* @file
* Install, update and uninstall functions for the University of Cambridge installation profile.
*/
/**
* Implements hook_install().
*
* Perform actions to set up the site for this profile.
*
* @see system_install()
*/
function cambridge_install() {
require_once 'cambridge_lite.install';
cambridge_lite_install();
}
api = 2
core = 7.x
includes[cambridge_lite] = "cambridge_lite.make"
<?php
/**
* @file
* Installation profile.
*/
/**
* Implements hook_form_FORM_ID_alter() for install_configure_form().
*
* Allows the profile to alter the site configuration form.
*/
function cambridge_form_install_configure_form_alter(&$form, $form_state) {
// Pre-populate the default country with United Kingdom.
$form['server_settings']['site_default_country']['#default_value'] = 'GB';
}
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