silverstripe-subsites/code/SubsiteAdmin.php

157 lines
4.2 KiB
PHP
Raw Normal View History

2007-08-18 13:38:11 +02:00
<?php
class SubsiteAdmin extends GenericDataAdmin {
static $tree_class = "Subsite";
static $subitem_class = "Subsite";
static $data_type = 'Subsite';
function performSearch() {
}
function getSearchFields() {
return singleton('Subsite')->adminSearchFields();
}
function getLink() {
return 'admin/subsites/';
2007-08-18 13:38:11 +02:00
}
function Link() {
return $this->getLink();
}
function Results($data = null) {
if(!$data) $data = $this->requestParams;
2007-08-18 13:38:11 +02:00
$where = '';
if(isset($data['Name']) && $data['Name']) {
$SQL_name = Convert::raw2sql($data['Name']);
$where = "`Title` LIKE '%$SQL_name%'";
} else {
$where = "`Title` != ''";
2007-08-18 13:38:11 +02:00
}
$intranets = DataObject::get('Subsite', $where, "if(ClassName = 'Subsite_Template',0,1), Title");
2007-08-18 13:38:11 +02:00
if(!$intranets)
return null;
$html = "<table class=\"ResultTable\"><thead><tr><th>Name</th><th>Domain</th></tr></thead><tbody>";
$numIntranets = 0;
foreach($intranets as $intranet) {
$numIntranets++;
$evenOdd = ($numIntranets % 2) ? 'odd':'even';
$prefix = ($intranet instanceof Subsite_Template) ? " * " : "";
$html .= "<tr class=\"$evenOdd\"><td><a class=\"show\" href=\"admin/subsites/show/{$intranet->ID}\">$prefix{$intranet->Title}</a></td><td><a class=\"show\" href=\"admin/subsites/show/{$intranet->ID}\">{$intranet->Subdomain}.{$intranet->Domain}</a></td></tr>";
2007-08-18 13:38:11 +02:00
}
$html .= "</tbody></table>";
return $html;
}
2007-08-21 03:38:20 +02:00
/**
* Returns the form for adding subsites.
* @returns Form A nerw form object
*/
2007-08-18 13:38:11 +02:00
function AddSubsiteForm() {
$templates = $this->getIntranetTemplates();
if($templates) {
2007-08-21 03:38:20 +02:00
$templateArray = $templates->map('ID', 'Title');
2007-09-04 06:12:57 +02:00
} else {
$templateArray = array();
2007-08-18 13:38:11 +02:00
}
2007-08-21 03:38:20 +02:00
return new Form($this, 'AddSubsiteForm', new FieldSet(
2007-08-18 13:38:11 +02:00
new TextField('Name', 'Name:'),
new TextField('Subdomain', 'Subdomain:'),
new DropdownField('Type', 'Type', array(
'subsite' => 'New site',
'template' => 'New template',
)),
new DropdownField('TemplateID', 'Use template:', $templateArray)//,
/*new TextField('AdminName', 'Admin name:'),
new EmailField('AdminEmail', 'Admin email:')*/
2007-08-18 13:38:11 +02:00
),
new FieldSet(
new FormAction('addintranet', 'Add')
));
}
public function getIntranetTemplates() {
2007-08-21 03:38:20 +02:00
return DataObject::get('Subsite_Template', '', 'Title');
2007-08-18 13:38:11 +02:00
}
function addintranet($data, $form) {
if($data['Name'] && $data['Subdomain']) {
/*
$SQL_email = Convert::raw2sql($data['AdminEmail']);
$member = DataObject::get_one('Member', "`Email`='$SQL_email'");
2007-08-18 13:38:11 +02:00
if(!$member) {
$member = Object::create('Member');
$nameParts = explode(' ', $data['AdminName']);
$member->FirstName = array_shift($nameParts);
$member->Surname = join(' ', $nameParts);
$member->Email = $data['AdminEmail'];
$member->write();
}
*/
$template = DataObject::get_by_id('Subsite_Template', $data['TemplateID']);
2007-08-18 13:38:11 +02:00
// Create intranet from existing template
switch($data['Type']) {
case 'template':
$intranet = $template->duplicate();
$intranet->Title = $data['Name'];
$intranet->write();
break;
default:
case 'subsite':
$intranet = $template->createInstance($data['Name'], $data['Subdomain']);
break;
}
2007-08-18 13:38:11 +02:00
// NOTE: This stuff is pretty oriwave2-specific...
$groupObjects = array();
2007-08-18 13:38:11 +02:00
// create Staff, Management and Administrator groups
$groups = array(
'Administrators' => array('CL_ADMIN', 'CMS_ACCESS_CMSMain', 'CMS_ACCESS_AssetAdmin', 'CMS_ACCESS_SecurityAdmin', 'CMS_ACCESS_IntranetAdmin'),
'Management' => array('CL_MGMT'),
'Staff' => array('CL_STAFF')
);
foreach($groups as $name => $perms) {
$group = new Group();
$group->SubsiteID = $intranet->ID;
$group->Title = $name;
$group->write();
2007-08-18 13:38:11 +02:00
foreach($perms as $perm) {
Permission::grant($group->ID, $perm);
}
2007-08-18 13:38:11 +02:00
$groupObjects[$name] = $group;
}
2007-08-18 13:38:11 +02:00
/*
$member->Groups()->add($groupObjects['Administrators']);
*/
2007-08-18 13:38:11 +02:00
Director::redirect('admin/subsites/show/' . $intranet->ID);
} else {
echo "You must provide a Name and Subdomain.";
}
2007-08-18 13:38:11 +02:00
}
2007-10-11 05:05:58 +02:00
/**
* Use this as an action handler for custom CMS buttons.
*/
function callPageMethod2($data, $form) {
return $this->callPageMethod($data, $form);
}
2007-08-18 13:38:11 +02:00
}
?>