Created
April 5, 2012 10:57
-
-
Save wilr/2309951 to your computer and use it in GitHub Desktop.
Cancel form action for SilverStripe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Action that takes the user back to a given link rather than submitting | |
* the form. | |
* | |
* @package cancelformaction | |
*/ | |
class CancelFormAction extends FormAction { | |
/** | |
* @var string | |
*/ | |
private $link; | |
function __construct($link = "", $title = "", $form = null, $extraData = null, $extraClass = '') { | |
if(!$title) $title = _t('CancelFormAction.CANCEL', 'Cancel'); | |
$this->setLink($link); | |
parent::__construct('CancelFormAction', $title, $form, $extraData, $extraClass); | |
} | |
function setLink($link) { | |
$this->link = $link; | |
} | |
function getLink() { | |
return $this->link; | |
} | |
function Field() { | |
$attributes = array( | |
'class' => 'action cancel ' . ($this->extraClass() ? $this->extraClass() : ''), | |
'id' => $this->id(), | |
'name' => $this->action, | |
'tabindex' => $this->getTabIndex(), | |
'href' => $this->getLink() | |
); | |
if($this->isReadonly()) { | |
$attributes['disabled'] = 'disabled'; | |
$attributes['class'] = $attributes['class'] . ' disabled'; | |
} | |
return $this->createTag( | |
'a', | |
$attributes, | |
$this->buttonContent ? $this->buttonContent : $this->Title() | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment