silverstripe-subsites/code/SubsiteAdmin.php

163 lines
4.2 KiB
PHP
Raw Normal View History

2007-08-18 13:38:11 +02:00
<?php
/**
* Admin interface to manage and create {@link Subsite} instances.
*
* @package subsites
*/
2007-08-18 13:38:11 +02:00
class SubsiteAdmin extends GenericDataAdmin {
static $tree_class = "Subsite";
static $subitem_class = "Subsite";
static $data_type = 'Subsite';
static $url_segment = 'subsites';
static $url_rule = '/$Action/$ID/$OtherID';
static $menu_title = 'Subsites';
2007-08-18 13:38:11 +02:00
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;
if(defined('DB::USE_ANSI_SQL'))
$q="\"";
else $q='`';
2007-08-18 13:38:11 +02:00
$where = '';
if(isset($data['Name']) && $data['Name']) {
$SQL_name = Convert::raw2sql($data['Name']);
$where = "{$q}Title{$q} LIKE '%$SQL_name%'";
} else {
$where = "{$q}Title{$q} != ''";
2007-08-18 13:38:11 +02:00
}
$intranets = null;
$intranets = DataObject::get('Subsite_Template', $where, "{$q}Title{$q}");
$subsites = DataObject::get('Subsite', $where, "{$q}Title{$q}");
if($intranets) {
$intranets->merge($subsites);
} else {
$intranets = $subsites;
}
if(!$intranets) return null;
$intranets->removeDuplicates();
2007-08-18 13:38:11 +02:00
$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) ? " * " : "";
2010-03-01 03:48:45 +01:00
$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->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();
$templateArray = array('' => "(No template)");
2007-08-18 13:38:11 +02:00
if($templates) {
$templateArray = $templateArray + $templates->map('ID', 'Title');
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:'),
2010-03-01 03:48:45 +01:00
new TextField('Domain', 'Domain name:'),
new DropdownField('Type', 'Type', array(
'subsite' => 'New site',
'template' => 'New template',
)),
2009-05-04 07:03:44 +02:00
new DropdownField('TemplateID', 'Copy structure from:', $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() {
if(defined('DB::USE_ANSI_SQL'))
$q="\"";
else $q='`';
return DataObject::get('Subsite_Template', '', "{$q}Title{$q}");
2007-08-18 13:38:11 +02:00
}
function addintranet($data, $form) {
2010-03-01 03:48:45 +01:00
if($data['Name'] && ($data['Domain'] || $data['Type'] == 'template')) {
if(isset($data['TemplateID']) && $data['TemplateID']) {
$template = DataObject::get_by_id('Subsite_Template', $data['TemplateID']);
} else {
$template = null;
}
2010-03-01 03:48:45 +01:00
// Create intranet from existing template
switch($data['Type']) {
case 'template':
if($template) $intranet = $template->duplicate();
else $intranet = new Subsite_Template();
$intranet->Title = $data['Name'];
$intranet->write();
break;
case 'subsite':
default:
2010-03-01 03:48:45 +01:00
if($template) $intranet = $template->createInstance($data['Name'], $data['Domain']);
else {
$intranet = new Subsite();
$intranet->Title = $data['Name'];
$intranet->write();
2010-03-01 03:48:45 +01:00
$newSubsiteDomain = new SubsiteDomain();
$newSubsiteDomain->SubsiteID = $intranet->ID;
$newSubsiteDomain->write();
$newSubsiteDomain->Domain = $data['Domain'];
$newSubsiteDomain->write();
}
break;
}
2007-08-18 13:38:11 +02:00
Director::redirect('admin/subsites/show/' . $intranet->ID);
} else {
if($data['Type'] == 'template') echo "You must provide a name for your new template.";
2010-03-01 03:48:45 +01:00
else echo "You must provide a name and domain for your new site.";
}
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
}
?>