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->getPageId()) { $link = Controller::join_links($link, '?ID=' . $this->getPageId()); } $data = new ArrayData(array( 'NewLink' => $link, 'ButtonName' => $this->buttonName, )); return array( $this->targetFragment => $data->renderWith('DMSGridFieldAddNewButton'), ); } /** * Set the page ID that this document should be attached to * * @param int $id * @return $this */ public function setPageId($id) { $this->pageId = $id; return $this; } /** * Get the page ID that this document should be attached to * * @return int */ public function getPageId() { return $this->pageId; } }