FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
cambridge_lite.install 517 B
Newer Older
thewilkybarkid's avatar
thewilkybarkid committed
<?php

/**
 * @file
thewilkybarkid's avatar
thewilkybarkid committed
 * Install, update and uninstall functions for the University of Cambridge lite installation profile.
thewilkybarkid's avatar
thewilkybarkid committed
 */

/**
 * Implements hook_install().
 *
 * Perform actions to set up the site for this profile.
 *
 * @see system_install()
 */
function cambridge_lite_install() {
  require_once 'cambridge_base.inc';
thewilkybarkid's avatar
thewilkybarkid committed

  cambridge_base_install();
thewilkybarkid's avatar
thewilkybarkid committed
}
thewilkybarkid's avatar
thewilkybarkid committed

/**
 * Set up Focus On teasers.
 */
function cambridge_lite_update_7100() {
  require_once 'cambridge_base.inc';

  cambridge_base_set_up_focus_on_teasers();
}