mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00:00
MINOR Removed old references to "rightbottom", which is now obsolete and caused a big box to appear in the CMS sometimes
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.3@66385 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
5444d65fb2
commit
4a60bb53d9
@ -347,15 +347,10 @@ class LeftAndMain extends Controller {
|
|||||||
public function Left() {
|
public function Left() {
|
||||||
return $this->renderWith($this->getTemplatesWithSuffix('_left'));
|
return $this->renderWith($this->getTemplatesWithSuffix('_left'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function Right() {
|
public function Right() {
|
||||||
return $this->renderWith($this->getTemplatesWithSuffix('_right'));
|
return $this->renderWith($this->getTemplatesWithSuffix('_right'));
|
||||||
}
|
}
|
||||||
public function RightBottom() {
|
|
||||||
if(SSViewer::hasTemplate($this->getTemplatesWithSuffix('_rightbottom'))) {
|
|
||||||
return $this->renderWith($this->getTemplatesWithSuffix('_rightbottom'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function getRecord($id, $className = null) {
|
public function getRecord($id, $className = null) {
|
||||||
if(!$className) $className = $this->stat('tree_class');
|
if(!$className) $className = $this->stat('tree_class');
|
||||||
|
@ -20,8 +20,6 @@ class SecurityAdmin extends LeftAndMain implements PermissionProvider {
|
|||||||
'addgroup',
|
'addgroup',
|
||||||
'addmember',
|
'addmember',
|
||||||
'autocomplete',
|
'autocomplete',
|
||||||
'getmember',
|
|
||||||
'newmember',
|
|
||||||
'removememberfromgroup',
|
'removememberfromgroup',
|
||||||
'savemember',
|
'savemember',
|
||||||
'AddRecordForm',
|
'AddRecordForm',
|
||||||
@ -101,15 +99,6 @@ class SecurityAdmin extends LeftAndMain implements PermissionProvider {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getmember() {
|
|
||||||
Session::set('currentMember', $_REQUEST['ID']);
|
|
||||||
SSViewer::setOption('rewriteHashlinks', false);
|
|
||||||
$result = $this->renderWith("LeftAndMain_rightbottom");
|
|
||||||
$parts = split('</?form[^>]*>', $result);
|
|
||||||
echo $parts[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function MemberForm() {
|
public function MemberForm() {
|
||||||
$id = $_REQUEST['ID'] ? $_REQUEST['ID'] : Session::get('currentMember');
|
$id = $_REQUEST['ID'] ? $_REQUEST['ID'] : Session::get('currentMember');
|
||||||
if($id)
|
if($id)
|
||||||
@ -235,24 +224,6 @@ class SecurityAdmin extends LeftAndMain implements PermissionProvider {
|
|||||||
return $this->returnItemToUser($newGroup);
|
return $this->returnItemToUser($newGroup);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function newmember() {
|
|
||||||
Session::clear('currentMember');
|
|
||||||
$newMemberForm = array(
|
|
||||||
"MemberForm" => $this->getMemberForm('new'),
|
|
||||||
);
|
|
||||||
// This should be using FormResponse ;-)
|
|
||||||
if(Director::is_ajax()) {
|
|
||||||
SSViewer::setOption('rewriteHashlinks', false);
|
|
||||||
$customised = $this->customise($newMemberForm);
|
|
||||||
$result = $customised->renderWith($this->class . "_rightbottom");
|
|
||||||
$parts = split('</?form[^>]*>', $result);
|
|
||||||
return $parts[1];
|
|
||||||
|
|
||||||
} else {
|
|
||||||
return $newMemberForm;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function EditedMember() {
|
public function EditedMember() {
|
||||||
if(Session::get('currentMember'))
|
if(Session::get('currentMember'))
|
||||||
return DataObject::get_by_id("Member", Session::get('currentMember'));
|
return DataObject::get_by_id("Member", Session::get('currentMember'));
|
||||||
|
@ -193,62 +193,6 @@
|
|||||||
clear: left;
|
clear: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Bottom-right
|
|
||||||
*/
|
|
||||||
#rightbottom {
|
|
||||||
border: none;
|
|
||||||
margin-top: 4px;
|
|
||||||
margin-left: 1px;
|
|
||||||
border: 1px solid #808080;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form {
|
|
||||||
margin: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form div {
|
|
||||||
margin-top: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form div.field {
|
|
||||||
clear: both;
|
|
||||||
margin-left: 10em;
|
|
||||||
font-size: 12px;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form label.left {
|
|
||||||
float: left;
|
|
||||||
width: 10em;
|
|
||||||
margin-left: -10em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form input,
|
|
||||||
#rightbottom form select,
|
|
||||||
#rightbottom form textarea {
|
|
||||||
width: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form input.checkbox,
|
|
||||||
#rightbottom form .optionset input,
|
|
||||||
#rightbottom form .htmleditor select,
|
|
||||||
#rightbottom form input.action {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
#rightbottom form .optionset li {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form h2 {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbottom form .fieldgroup input,
|
|
||||||
#rightbottom form .fieldgroup select {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* RHS Action Parameters boxes
|
* RHS Action Parameters boxes
|
||||||
*/
|
*/
|
||||||
|
@ -119,7 +119,7 @@ body.stillLoading select {
|
|||||||
border: 1px solid #acbbcc;
|
border: 1px solid #acbbcc;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
#right, #rightbottom {
|
#right {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 208px;
|
left: 208px;
|
||||||
top: 45px;
|
top: 45px;
|
||||||
@ -132,10 +132,6 @@ body.stillLoading select {
|
|||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#rightbottom {
|
|
||||||
height: 30%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#separator {
|
#separator {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 51px;
|
top: 51px;
|
||||||
@ -161,17 +157,13 @@ body.stillLoading select {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#left div.title, #right div.title, #rightbottom div.title {
|
#left div.title, #right div.title {
|
||||||
border-top: 1px solid #77BBEE;
|
border-top: 1px solid #77BBEE;
|
||||||
height: 22px !important;
|
height: 22px !important;
|
||||||
background: #0075C9 url(../images/texture/obar.gif) repeat-x 0 0;
|
background: #0075C9 url(../images/texture/obar.gif) repeat-x 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#rightbottom div.light {
|
#left div.title div, #right div.title div {
|
||||||
background-image: url(../images/textures/obar-light.png) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#left div.title div, #right div.title div, #rightbottom div.title div {
|
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -33,8 +33,7 @@ DraggableSeparator.prototype = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function fixRightWidth() {
|
function fixRightWidth() {
|
||||||
if( !$('right') )
|
if(!$('right')) return;
|
||||||
return;
|
|
||||||
|
|
||||||
// Absolutely position all the elements
|
// Absolutely position all the elements
|
||||||
var sep = getDimension($('left'),'width') + getDimension($('left'),'left');
|
var sep = getDimension($('left'),'width') + getDimension($('left'),'left');
|
||||||
@ -53,14 +52,7 @@ function fixRightWidth() {
|
|||||||
$('contentPanel').style.left = leftWidth + sepWidth + rightWidth + sepWidth + 23 + 'px';
|
$('contentPanel').style.left = leftWidth + sepWidth + rightWidth + sepWidth + 23 + 'px';
|
||||||
}
|
}
|
||||||
|
|
||||||
if( rightWidth >= 0 )
|
if(rightWidth >= 0) $('right').style.width = rightWidth + 'px';
|
||||||
$('right').style.width = rightWidth + 'px';
|
|
||||||
|
|
||||||
var rb;
|
|
||||||
if(rb = $('rightbottom')) {
|
|
||||||
rb.style.left = $('right').style.left;
|
|
||||||
rb.style.width = $('right').style.width;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Behaviour.register({
|
Behaviour.register({
|
||||||
@ -150,8 +142,6 @@ window.ontabschanged = function() {
|
|||||||
|
|
||||||
window.onresize = function(init) {
|
window.onresize = function(init) {
|
||||||
var right = $('right');
|
var right = $('right');
|
||||||
var rightbottom = $('rightbottom');
|
|
||||||
if(rightbottom) rightbottom.style.display = 'none';
|
|
||||||
|
|
||||||
if(typeof fitToParent == 'function') {
|
if(typeof fitToParent == 'function') {
|
||||||
fitToParent('right', 12);
|
fitToParent('right', 12);
|
||||||
@ -171,14 +161,6 @@ window.onresize = function(init) {
|
|||||||
$('left').style.height = $('separator').style.height = rightH + 'px';
|
$('left').style.height = $('separator').style.height = rightH + 'px';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rightbottom) {
|
|
||||||
var newHeight = rightH / 3;
|
|
||||||
right.style.height = (newHeight*2) + 'px';
|
|
||||||
rightbottom.style.height = newHeight + 'px';
|
|
||||||
rightbottom.style.display = '';
|
|
||||||
rightbottom.style.top = getDimension(right,'top') + (newHeight*2) + 'px';
|
|
||||||
}
|
|
||||||
|
|
||||||
if(typeof fitToParent == 'function') {
|
if(typeof fitToParent == 'function') {
|
||||||
fitToParent('Form_EditForm');
|
fitToParent('Form_EditForm');
|
||||||
if($('Form_EditorToolbarImageForm') && $('Form_EditorToolbarImageForm').style.display == "block") {
|
if($('Form_EditorToolbarImageForm') && $('Form_EditorToolbarImageForm').style.display == "block") {
|
||||||
|
@ -317,7 +317,7 @@ CMSRightForm.prototype = {
|
|||||||
}*/
|
}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
CMSForm.applyTo('#Form_SubForm', 'rightbottom');
|
CMSForm.applyTo('#Form_SubForm');
|
||||||
CMSRightForm.applyTo('#Form_EditForm', 'right');
|
CMSRightForm.applyTo('#Form_EditForm', 'right');
|
||||||
|
|
||||||
function action_save_right() {
|
function action_save_right() {
|
||||||
|
@ -27,13 +27,6 @@
|
|||||||
$Right
|
$Right
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<% if RightBottom %>
|
|
||||||
<div class="right" id="rightbottom">
|
|
||||||
$RightBottom
|
|
||||||
<div id="statusMessage" style="display:none;"></div>
|
|
||||||
</div>
|
|
||||||
<% end_if %>
|
|
||||||
|
|
||||||
<div id="contentPanel" style="display:none;">
|
<div id="contentPanel" style="display:none;">
|
||||||
<% control EditorToolbar %>
|
<% control EditorToolbar %>
|
||||||
$ImageForm
|
$ImageForm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user