mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge branch 'master' of git://github.com/silverstripe/silverstripe-cms
This commit is contained in:
commit
12f72f9536
@ -38,14 +38,14 @@ class AssetAdmin extends LeftAndMain implements PermissionProvider{
|
||||
* Return fake-ID "root" if no ID is found (needed to upload files into the root-folder)
|
||||
*/
|
||||
public function currentPageID() {
|
||||
if($this->request->requestVar('ID')) {
|
||||
if(is_numeric($this->request->requestVar('ID'))) {
|
||||
return $this->request->requestVar('ID');
|
||||
} elseif (is_numeric($this->urlParams['ID'])) {
|
||||
return $this->urlParams['ID'];
|
||||
} elseif(Session::get("{$this->class}.currentPage")) {
|
||||
return Session::get("{$this->class}.currentPage");
|
||||
} else {
|
||||
return "root";
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@ -318,7 +318,7 @@ JS
|
||||
|
||||
$form = new Form($this, 'filter', $fields, $actions);
|
||||
$form->setFormMethod('GET');
|
||||
$form->setFormAction(Controller::join_links($this->Link('show'), $folder->ID ? $folder->ID : 'root'));
|
||||
$form->setFormAction(Controller::join_links($this->Link('show'), $folder->ID));
|
||||
$form->addExtraClass('cms-search-form');
|
||||
$form->loadDataFrom($this->request->getVars());
|
||||
$form->disableSecurityToken();
|
||||
@ -405,8 +405,7 @@ JS
|
||||
mkdir($record->FullPath);
|
||||
chmod($record->FullPath, Filesystem::$file_create_mask);
|
||||
|
||||
$parentID = $parentRecord ? $parentRecord->ID : 'root';
|
||||
$link = Controller::join_links($this->Link('show'), $parentID);
|
||||
$link = Controller::join_links($this->Link('show'), $parentRecord->ID);
|
||||
$this->getResponse()->addHeader('X-ControllerURL', $link);
|
||||
return $this->redirect($link);
|
||||
}
|
||||
@ -416,10 +415,9 @@ JS
|
||||
*/
|
||||
public function currentPage() {
|
||||
$id = $this->currentPageID();
|
||||
if($id && is_numeric($id)) {
|
||||
if($id && is_numeric($id) && $id > 0) {
|
||||
return DataObject::get_by_id('Folder', $id);
|
||||
} else {
|
||||
// ID is either '0' or 'root'
|
||||
return singleton('Folder');
|
||||
}
|
||||
}
|
||||
@ -549,6 +547,10 @@ JS
|
||||
public function Breadcrumbs($unlinked = false) {
|
||||
$items = parent::Breadcrumbs($unlinked);
|
||||
|
||||
// The root element should explicitly point to the root node.
|
||||
// Uses session state for current record otherwise.
|
||||
$items[0]->Link = Controller::join_links(singleton('AssetAdmin')->Link('show'), 0);
|
||||
|
||||
// If a search is in progress, don't show the path
|
||||
if($this->request->requestVar('q')) {
|
||||
$items = $items->getRange(0, 1);
|
||||
|
@ -23,7 +23,8 @@ class CMSFileAddController extends LeftAndMain {
|
||||
*/
|
||||
public function currentPage() {
|
||||
$id = $this->currentPageID();
|
||||
if($id && is_numeric($id)) {
|
||||
|
||||
if($id && is_numeric($id) && $id > 0) {
|
||||
return DataObject::get_by_id('Folder', $id);
|
||||
} else {
|
||||
// ID is either '0' or 'root'
|
||||
@ -35,14 +36,14 @@ class CMSFileAddController extends LeftAndMain {
|
||||
* Return fake-ID "root" if no ID is found (needed to upload files into the root-folder)
|
||||
*/
|
||||
public function currentPageID() {
|
||||
if($this->request->requestVar('ID')) {
|
||||
if(is_numeric($this->request->requestVar('ID'))) {
|
||||
return $this->request->requestVar('ID');
|
||||
} elseif (is_numeric($this->urlParams['ID'])) {
|
||||
return $this->urlParams['ID'];
|
||||
} elseif(Session::get("{$this->class}.currentPage")) {
|
||||
return Session::get("{$this->class}.currentPage");
|
||||
} else {
|
||||
return "root";
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@ -62,10 +63,13 @@ class CMSFileAddController extends LeftAndMain {
|
||||
$uploadField->addExtraClass('ss-assetuploadfield');
|
||||
$uploadField->removeExtraClass('ss-uploadfield');
|
||||
$uploadField->setTemplate('AssetUploadField');
|
||||
|
||||
if ($folder->exists() && $folder->getFilename()) {
|
||||
// The Upload class expects a folder relative *within* assets/
|
||||
$path = preg_replace('/^' . ASSETS_DIR . '\//', '', $folder->getFilename());
|
||||
$uploadField->setFolderName($path);
|
||||
} else {
|
||||
$uploadField->setFolderName(ASSETS_DIR);
|
||||
}
|
||||
|
||||
$form = new Form(
|
||||
@ -99,8 +103,15 @@ class CMSFileAddController extends LeftAndMain {
|
||||
$items = parent::Breadcrumbs($unlinked);
|
||||
|
||||
// The root element should explicitly point to the root node.
|
||||
// Used in CMSFileAddController subclass as well, so specifically link to AssetAdmin
|
||||
$items[0]->Link = Controller::join_links(singleton('AssetAdmin')->Link('show'), 'root');
|
||||
$items[0]->Link = Controller::join_links(singleton('AssetAdmin')->Link('show'), 0);
|
||||
|
||||
// Enforce linkage of hierarchy to AssetAdmin
|
||||
foreach($items as $item) {
|
||||
$baselink = $this->Link('show');
|
||||
if(strpos($item->Link, $baselink) !== false) {
|
||||
$item->Link = str_replace($baselink, singleton('AssetAdmin')->Link('show'), $item->Link);
|
||||
}
|
||||
}
|
||||
|
||||
$items->push(new ArrayData(array(
|
||||
'Title' => _t('AssetAdmin.Upload', 'Upload'),
|
||||
|
Loading…
Reference in New Issue
Block a user