2007-08-16 08:38:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The subsites module modifies the behaviour of the CMS - in the SiteTree and Group databases - to store information
|
|
|
|
* about a number of sub-sites, rather than a single site.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Object::add_extension('SiteTree', 'SiteTreeSubsites');
|
|
|
|
// Hack - this ensures that the SiteTree defineMethods gets called before any of its subclasses...
|
|
|
|
new SiteTree();
|
|
|
|
|
|
|
|
Object::add_extension('LeftAndMain', 'LeftAndMainSubsites');
|
|
|
|
Object::add_extension('Group', 'GroupSubsites');
|
2008-01-22 02:27:41 +01:00
|
|
|
Object::add_extension('File', 'FileSubsites');
|
2007-08-16 08:38:29 +02:00
|
|
|
|
|
|
|
Director::addRules(100, array(
|
|
|
|
'admin/subsites/$Action/$ID/$OtherID' => 'SubsiteAdmin',
|
|
|
|
));
|
|
|
|
Object::addStaticVars( 'LeftAndMain', array( 'extra_menu_items' => array(
|
2007-08-31 02:29:25 +02:00
|
|
|
'Sub-sites' => array("intranets", "admin/subsites/", 'SubsiteAdmin')
|
2007-08-16 08:38:29 +02:00
|
|
|
)));
|
|
|
|
|
|
|
|
?>
|