2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-18 18:00:42 +01:00
|
|
|
* Render a button that will submit the form its contained in through ajax.
|
|
|
|
* If you want to add custom behaviour, please set {@link inlcudeDefaultJS()} to FALSE and work with behaviour.js.
|
|
|
|
*
|
2012-03-24 04:38:57 +01:00
|
|
|
* @see framework/javascript/InlineFormAction.js
|
2009-03-18 18:00:42 +01:00
|
|
|
*
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage actions
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class InlineFormAction extends FormField {
|
|
|
|
|
|
|
|
protected $includeDefaultJS = true;
|
2007-09-15 02:18:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new action button.
|
|
|
|
* @param action The method to call when the button is clicked
|
|
|
|
* @param title The label on the button
|
|
|
|
* @param extraClass A CSS class to apply to the button in addition to 'action'
|
|
|
|
*/
|
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;
|
|
|
|
parent::__construct($action, $title, null, null);
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function performReadonlyTransformation() {
|
2007-07-19 12:40:28 +02:00
|
|
|
return new InlineFormAction_ReadOnly( $this->name, $this->title );
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Field($properties = array()) {
|
2007-07-19 12:40:28 +02:00
|
|
|
if($this->includeDefaultJS) {
|
2012-09-26 23:34:00 +02:00
|
|
|
Requirements::javascriptTemplate(FRAMEWORK_DIR . '/javascript/InlineFormAction.js',
|
|
|
|
array('ID'=>$this->id()));
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
return "<input type=\"submit\" name=\"action_{$this->name}\" value=\"{$this->title}\" id=\"{$this->id()}\""
|
|
|
|
. " class=\"action{$this->extraClass}\" />";
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Title() {
|
2007-07-19 12:40:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-03-24 04:38:57 +01:00
|
|
|
* Optionally disable the default javascript include (framework/javascript/InlineFormAction.js),
|
2007-07-19 12:40:28 +02:00
|
|
|
* which routes to an "admin-custom"-URL.
|
|
|
|
*
|
|
|
|
* @param $bool boolean
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function includeDefaultJS($bool) {
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->includeDefaultJS = (bool)$bool;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-10 01:34:18 +01:00
|
|
|
/**
|
|
|
|
* Readonly version of {@link InlineFormAction}.
|
|
|
|
* @package forms
|
|
|
|
* @subpackage actions
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
class InlineFormAction_ReadOnly extends FormField {
|
2008-08-12 04:58:48 +02:00
|
|
|
|
|
|
|
protected $readonly = true;
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Field($properties = array()) {
|
2012-09-26 23:34:00 +02:00
|
|
|
return "<input type=\"submit\" name=\"action_{$this->name}\" value=\"{$this->title}\" id=\"{$this->id()}\""
|
|
|
|
. " disabled=\"disabled\" class=\"action disabled$this->extraClass\" />";
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Title() {
|
2007-07-19 12:40:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|