mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
153 lines
5.1 KiB
PHP
153 lines
5.1 KiB
PHP
<?php
|
|
class DMSSiteTreeExtension extends DataExtension {
|
|
|
|
static $belongs_many_many = array(
|
|
'Documents' => 'DMSDocument'
|
|
);
|
|
|
|
static $noDocumentsList = array();
|
|
static $showDocumentsList = array();
|
|
|
|
/**
|
|
* Do not show the documents tab on the array of pages set here
|
|
* @static
|
|
* @param $mixed Array of page types to not show the Documents tab on
|
|
*/
|
|
static function no_documents_tab($array = array()) {
|
|
if (empty($array)) return;
|
|
if (is_array($array)) {
|
|
self::$noDocumentsList = $array;
|
|
} else {
|
|
self::$noDocumentsList = array($array);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Only show the documents tab on the list of pages set here. Any pages set in the no_documents_tab array will
|
|
* still not be shown. If this isn't called, or if it is called with an empty array, all pages will get Document tabs.
|
|
* @static
|
|
* @param $array Array of page types to show the Documents tab on
|
|
*/
|
|
static function show_documents_tab($array = array()) {
|
|
if (empty($array)) return;
|
|
if (is_array($array)) {
|
|
self::$showDocumentsList = $array;
|
|
} else {
|
|
self::$showDocumentsList = array($array);
|
|
}
|
|
}
|
|
|
|
function updateCMSFields(FieldList $fields){
|
|
//prevent certain pages from having a Document tab in the CMS
|
|
if (in_array($this->owner->ClassName,self::$noDocumentsList)) return;
|
|
if (count(self::$showDocumentsList) > 0 && !in_array($this->owner->ClassName,self::$showDocumentsList)) return;
|
|
|
|
//javascript to customize the grid field for the DMS document (overriding entwine in FRAMEWORK_DIR.'/javascript/GridField.js'
|
|
Requirements::javascript(DMS_DIR.'/javascript/DMSGridField.js');
|
|
Requirements::css(DMS_DIR.'/css/DMSMainCMS.css');
|
|
|
|
//javascript for the link editor pop-up in TinyMCE
|
|
Requirements::javascript(DMS_DIR."/javascript/DocumentHtmlEditorFieldToolbar.js");
|
|
|
|
// Document listing
|
|
$gridFieldConfig = GridFieldConfig::create()->addComponents(
|
|
new GridFieldToolbarHeader(),
|
|
new GridFieldFilterHeader(),
|
|
new GridFieldSortableHeader(),
|
|
new GridFieldDataColumns(),
|
|
new GridFieldEditButton(),
|
|
new DMSGridFieldDeleteAction(), //special delete dialog to handle custom behaviour of unlinking and deleting
|
|
new GridFieldDetailForm()
|
|
//GridFieldLevelup::create($folder->ID)->setLinkSpec('admin/assets/show/%d')
|
|
);
|
|
|
|
if(class_exists('GridFieldPaginatorWithShowAll')){
|
|
$paginatorComponent = new GridFieldPaginatorWithShowAll(15);
|
|
}else{
|
|
$paginatorComponent = new GridFieldPaginator(15);
|
|
}
|
|
$gridFieldConfig->addComponent($paginatorComponent);
|
|
|
|
if(class_exists('GridFieldSortableRows')) {
|
|
$sortableComponent = new GridFieldSortableRows('DocumentSort');
|
|
$sortableComponent->setUsePagination(false)->setForceRedraw(true);
|
|
$gridFieldConfig->addComponent($sortableComponent);
|
|
}
|
|
|
|
// HACK: Create a singleton of DMSDocument to ensure extensions are applied before we try to get display fields.
|
|
singleton('DMSDocument');
|
|
$gridFieldConfig->getComponentByType('GridFieldDataColumns')->setDisplayFields(Config::inst()->get('DMSDocument', 'display_fields'))
|
|
->setFieldCasting(array('LastChanged'=>"Datetime->Ago"))
|
|
->setFieldFormatting(array('FilenameWithoutID'=>'<a target=\'_blank\' class=\'file-url\' href=\'$Link\'>$FilenameWithoutID</a>'));
|
|
|
|
//override delete functionality with this class
|
|
$gridFieldConfig->getComponentByType('GridFieldDetailForm')->setItemRequestClass('DMSGridFieldDetailForm_ItemRequest');
|
|
|
|
$gridField = GridField::create(
|
|
'Documents',
|
|
false,
|
|
$this->owner->Documents()->Sort('DocumentSort'),
|
|
$gridFieldConfig
|
|
);
|
|
$gridField->addExtraClass('documents');
|
|
|
|
$uploadBtn = new LiteralField(
|
|
'UploadButton',
|
|
sprintf(
|
|
'<a class="ss-ui-button ss-ui-action-constructive cms-panel-link" data-pjax-target="Content" data-icon="add" href="%s">%s</a>',
|
|
Controller::join_links(singleton('DMSDocumentAddController')->Link(), '?ID=' . $this->owner->ID),
|
|
"Add Documents"
|
|
)
|
|
);
|
|
|
|
$fields->addFieldsToTab(
|
|
'Root.Documents (' . $this->owner->Documents()->Count() . ')',
|
|
array(
|
|
$uploadBtn,
|
|
$gridField
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Overloaded to enforce sorting
|
|
*/
|
|
function Documents() {
|
|
return $this->owner->getManyManyComponents('Documents')->sort('DocumentSort');
|
|
}
|
|
|
|
function onBeforeDelete() {
|
|
if(Versioned::current_stage() == 'Live') {
|
|
$existsOnOtherStage = !$this->owner->getIsDeletedFromStage();
|
|
} else {
|
|
$existsOnOtherStage = $this->owner->getExistsOnLive();
|
|
}
|
|
|
|
// Only remove if record doesn't still exist on live stage.
|
|
if(!$existsOnOtherStage) {
|
|
$dmsDocuments = $this->owner->Documents();
|
|
foreach($dmsDocuments as $document) {
|
|
//if the document is only associated with one page, i.e. only associated with this page
|
|
if ($document->Pages()->Count() <= 1) {
|
|
//delete the document before deleting this page
|
|
$document->delete();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function onBeforePublish() {
|
|
$embargoedDocuments = $this->owner->Documents()->filter('EmbargoedUntilPublished',true);
|
|
if ($embargoedDocuments->Count() > 0) {
|
|
foreach($embargoedDocuments as $doc) {
|
|
$doc->EmbargoedUntilPublished = false;
|
|
$doc->write();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
function getTitleWithNumberOfDocuments() {
|
|
return $this->owner->Title . ' (' . $this->owner->Documents()->Count() . ')';
|
|
}
|
|
} |