2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2015-08-30 07:02:55 +02:00
|
|
|
|
2016-08-19 00:51:35 +02:00
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
|
|
|
|
use SilverStripe\View\Requirements;
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2009-03-18 18:00:42 +01:00
|
|
|
* Render a button that will submit the form its contained in through ajax.
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2016-09-15 04:48:38 +02:00
|
|
|
* Caution: The form field does not include any JavaScript or CSS when used outside of the CMS context,
|
|
|
|
* since the required frontend dependencies are included through CMS bundling.
|
|
|
|
*
|
2016-04-19 11:04:43 +02:00
|
|
|
* @see framework/client/dist/js/InlineFormAction.js
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class InlineFormAction extends FormField {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2007-09-15 02:18:21 +02:00
|
|
|
/**
|
|
|
|
* Create a new action button.
|
2016-06-03 10:51:02 +02:00
|
|
|
*
|
|
|
|
* @param string $action The method to call when the button is clicked
|
|
|
|
* @param string $title The label on the button
|
|
|
|
* @param string $extraClass A CSS class to apply to the button in addition to 'action'
|
2007-09-15 02:18:21 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function __construct($action, $title = "", $extraClass = '') {
|
2007-09-15 02:18:21 +02:00
|
|
|
$this->extraClass = ' '.$extraClass;
|
2015-10-28 04:44:14 +01:00
|
|
|
parent::__construct($action, $title);
|
2007-09-15 02:18:21 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function performReadonlyTransformation() {
|
2016-08-19 00:51:35 +02:00
|
|
|
return $this->castedCopy('SilverStripe\\Forms\\InlineFormAction_ReadOnly');
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2015-06-20 12:11:08 +02:00
|
|
|
/**
|
|
|
|
* @param array $properties
|
2016-06-03 10:51:02 +02:00
|
|
|
* @return string
|
2015-06-20 12:11:08 +02:00
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Field($properties = array()) {
|
2016-06-03 10:51:02 +02:00
|
|
|
return FormField::create_tag('input', array(
|
2015-10-28 04:44:14 +01:00
|
|
|
'type' => 'submit',
|
2015-06-20 12:11:08 +02:00
|
|
|
'name' => sprintf('action_%s', $this->getName()),
|
|
|
|
'value' => $this->title,
|
|
|
|
'id' => $this->ID(),
|
|
|
|
'class' => sprintf('action%s', $this->extraClass),
|
2016-06-03 10:51:02 +02:00
|
|
|
));
|
2014-08-15 08:53:05 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Title() {
|
2014-08-15 08:53:05 +02:00
|
|
|
return false;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|