mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
d0c2558a1f
This helps the module to determine where to return a user to after they've uploaded a file, e.g. either back to a document set in a page context, back to a document set in the ModelAdmin context or back to the ModelAdmin for documents with no context.
77 lines
2.2 KiB
PHP
77 lines
2.2 KiB
PHP
<?php
|
|
|
|
class DMSGridFieldAddNewButton extends GridFieldAddNewButton implements GridField_HTMLProvider
|
|
{
|
|
/**
|
|
* The document set ID that the document should be attached to
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $documentSetId;
|
|
|
|
/**
|
|
* Overriding the parent method to change the template that the DMS add button will be rendered with
|
|
*
|
|
* @param GridField $gridField
|
|
* @return array
|
|
*/
|
|
public function getHTMLFragments($gridField)
|
|
{
|
|
$singleton = singleton($gridField->getModelClass());
|
|
|
|
if (!$singleton->canCreate()) {
|
|
return array();
|
|
}
|
|
|
|
if (!$this->buttonName) {
|
|
// provide a default button name, can be changed by calling {@link setButtonName()} on this component
|
|
$objectName = $singleton->i18n_singular_name();
|
|
$this->buttonName = _t('GridField.Add', 'Add {name}', array('name' => $objectName));
|
|
}
|
|
|
|
$link = singleton('DMSDocumentAddController')->Link();
|
|
if ($this->getDocumentSetId()) {
|
|
$link = Controller::join_links($link, '?dsid=' . $this->getDocumentSetId());
|
|
|
|
// Look for an associated page, but only share it if we're editing in a page context
|
|
$set = DMSDocumentSet::get()->byId($this->getDocumentSetId());
|
|
if ($set && $set->exists() && $set->Page()->exists()
|
|
&& Controller::curr() instanceof CMSPageEditController
|
|
) {
|
|
$link = Controller::join_links($link, '?page_id=' . $set->Page()->ID);
|
|
}
|
|
}
|
|
|
|
$data = new ArrayData(array(
|
|
'NewLink' => $link,
|
|
'ButtonName' => $this->buttonName,
|
|
));
|
|
|
|
return array(
|
|
$this->targetFragment => $data->renderWith('DMSGridFieldAddNewButton'),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Set the document set ID that this document should be attached to
|
|
*
|
|
* @param int $id
|
|
* @return $this
|
|
*/
|
|
public function setDocumentSetId($id)
|
|
{
|
|
$this->documentSetId = $id;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the document set ID that this document should be attached to
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getDocumentSetId()
|
|
{
|
|
return $this->documentSetId;
|
|
}
|
|
}
|