mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
44 lines
903 B
PHP
44 lines
903 B
PHP
<?php
|
|
/**
|
|
* Wraps around a TreedropdownField to add ability for temporary
|
|
* switching of subsite sessions.
|
|
*
|
|
* @package subsites
|
|
*/
|
|
class SubsitesTreeDropdownField extends TreeDropdownField {
|
|
|
|
private static $allowed_actions = array(
|
|
'tree'
|
|
);
|
|
|
|
protected $subsiteID = 0;
|
|
|
|
protected $extraClasses = array('SubsitesTreeDropdownField');
|
|
|
|
function Field($properties = array()) {
|
|
$html = parent::Field($properties);
|
|
|
|
Requirements::javascript('subsites/javascript/SubsitesTreeDropdownField.js');
|
|
|
|
return $html;
|
|
}
|
|
|
|
function setSubsiteID($id) {
|
|
$this->subsiteID = $id;
|
|
}
|
|
|
|
function getSubsiteID() {
|
|
return $this->subsiteID;
|
|
}
|
|
|
|
function tree(SS_HTTPRequest $request) {
|
|
$oldSubsiteID = Session::get('SubsiteID');
|
|
Session::set('SubsiteID', $this->subsiteID);
|
|
|
|
$results = parent::tree($request);
|
|
|
|
Session::set('SubsiteID', $oldSubsiteID);
|
|
|
|
return $results;
|
|
}
|
|
} |