silverstripe-framework/forms/gridfield/GridFieldAddNewButton.php
martimiz deb3780a45 BUG #7768 - add-button and breadcrumb translation in Security, ModelAdmin
The classnames on the add-new button and breadcrumbs were not
translated due to the use of singular_name() instead of
i18n-singular_name() in GridFieldAddNewButton and GridFieldDetailForm.
2012-08-09 23:46:40 +02:00

40 lines
1.0 KiB
PHP

<?php
/**
* This component provides a button for opening the add new form provided by {@link GridFieldDetailForm}.
*
* @package framework
* @subpackage gridfield
*/
class GridFieldAddNewButton implements GridField_HTMLProvider {
protected $targetFragment;
protected $buttonName;
public function setButtonName($name) {
$this->buttonName = $name;
return $this;
}
public function __construct($targetFragment = 'before') {
$this->targetFragment = $targetFragment;
}
public function getHTMLFragments($gridField) {
if(!$this->buttonName) {
// provide a default button name, can be changed by calling {@link setButtonName()} on this component
$this->buttonName = _t('GridField.Add', 'Add {name}', array('name' => singleton($gridField->getModelClass())->i18n_singular_name()));
}
$data = new ArrayData(array(
'NewLink' => Controller::join_links($gridField->Link('item'), 'new'),
'ButtonName' => $this->buttonName,
));
return array(
$this->targetFragment => $data->renderWith('GridFieldAddNewbutton'),
);
}
}