mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ENHANCEMENT Fluent interface in Form API by returning instance from all setters
This commit is contained in:
parent
f2717f0788
commit
7602d081a2
@ -12,6 +12,7 @@ class CheckboxField extends FormField {
|
|||||||
|
|
||||||
function setValue($value) {
|
function setValue($value) {
|
||||||
$this->value = ($value) ? 1 : 0;
|
$this->value = ($value) ? 1 : 0;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function dataValue() {
|
function dataValue() {
|
||||||
|
@ -135,6 +135,7 @@ class CheckboxSetField extends OptionsetField {
|
|||||||
|
|
||||||
function setDisabled($val) {
|
function setDisabled($val) {
|
||||||
$this->disabled = $val;
|
$this->disabled = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -146,6 +147,7 @@ class CheckboxSetField extends OptionsetField {
|
|||||||
*/
|
*/
|
||||||
function setDefaultItems($items) {
|
function setDefaultItems($items) {
|
||||||
$this->defaultItems = $items;
|
$this->defaultItems = $items;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -166,6 +168,8 @@ class CheckboxSetField extends OptionsetField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
parent::setValue($value, $obj);
|
parent::setValue($value, $obj);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -340,10 +340,12 @@ JS;
|
|||||||
|
|
||||||
function setController($controller) {
|
function setController($controller) {
|
||||||
$this->controller = $controller;
|
$this->controller = $controller;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setTemplatePopup($template) {
|
function setTemplatePopup($template) {
|
||||||
$this->templatePopup = $template;
|
$this->templatePopup = $template;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
@ -448,6 +450,7 @@ JS;
|
|||||||
*/
|
*/
|
||||||
function setRelationAutoSetting($value) {
|
function setRelationAutoSetting($value) {
|
||||||
Deprecation::notice('3.0', 'Manipulate the DataList instead.');
|
Deprecation::notice('3.0', 'Manipulate the DataList instead.');
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -62,6 +62,7 @@ class CompositeField extends FormField {
|
|||||||
|
|
||||||
public function setID($id) {
|
public function setID($id) {
|
||||||
$this->id = $id;
|
$this->id = $id;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function Field() {
|
public function Field() {
|
||||||
@ -81,6 +82,7 @@ class CompositeField extends FormField {
|
|||||||
*/
|
*/
|
||||||
public function setChildren($children) {
|
public function setChildren($children) {
|
||||||
$this->children = $children;
|
$this->children = $children;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function extraClasses() {
|
function extraClasses() {
|
||||||
@ -165,14 +167,21 @@ class CompositeField extends FormField {
|
|||||||
function setForm($form) {
|
function setForm($form) {
|
||||||
foreach($this->children as $f) if(is_object($f)) $f->setForm($form);
|
foreach($this->children as $f) if(is_object($f)) $f->setForm($form);
|
||||||
parent::setForm($form);
|
parent::setForm($form);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setColumnCount($columnCount) {
|
function setColumnCount($columnCount) {
|
||||||
$this->columnCount = $columnCount;
|
$this->columnCount = $columnCount;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function isComposite() { return true; }
|
function isComposite() {
|
||||||
function hasData() { return false; }
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasData() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public function fieldByName($name) {
|
public function fieldByName($name) {
|
||||||
return $this->children->fieldByName($name);
|
return $this->children->fieldByName($name);
|
||||||
|
@ -138,6 +138,7 @@ class ConfirmedPasswordField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setCanBeEmpty($value) {
|
function setCanBeEmpty($value) {
|
||||||
$this->canBeEmpty = (bool)$value;
|
$this->canBeEmpty = (bool)$value;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -149,6 +150,7 @@ class ConfirmedPasswordField extends FormField {
|
|||||||
*/
|
*/
|
||||||
public function setShowOnClickTitle($title) {
|
public function setShowOnClickTitle($title) {
|
||||||
$this->showOnClickTitle = $title;
|
$this->showOnClickTitle = $title;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -162,6 +164,7 @@ class ConfirmedPasswordField extends FormField {
|
|||||||
foreach($this->children as $field) {
|
foreach($this->children as $field) {
|
||||||
$field->setRightTitle($title);
|
$field->setRightTitle($title);
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -176,6 +179,7 @@ class ConfirmedPasswordField extends FormField {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -196,6 +200,8 @@ class ConfirmedPasswordField extends FormField {
|
|||||||
}
|
}
|
||||||
$this->children->fieldByName($this->getName() . '[_Password]')->setValue($this->value);
|
$this->children->fieldByName($this->getName() . '[_Password]')->setValue($this->value);
|
||||||
$this->children->fieldByName($this->getName() . '[_ConfirmPassword]')->setValue($this->value);
|
$this->children->fieldByName($this->getName() . '[_ConfirmPassword]')->setValue($this->value);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function jsValidation() {
|
function jsValidation() {
|
||||||
|
@ -15,6 +15,7 @@ class CurrencyField extends TextField {
|
|||||||
function setValue($val) {
|
function setValue($val) {
|
||||||
if(!$val) $val = 0.00;
|
if(!$val) $val = 0.00;
|
||||||
$this->value = '$' . number_format((double)preg_replace('/[^0-9.\-]/', '', $val), 2);
|
$this->value = '$' . number_format((double)preg_replace('/[^0-9.\-]/', '', $val), 2);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Overwrite the datavalue before saving to the db ;-)
|
* Overwrite the datavalue before saving to the db ;-)
|
||||||
|
@ -58,6 +58,7 @@ class DatalessField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setAllowHTML($bool) {
|
function setAllowHTML($bool) {
|
||||||
$this->allowHTML = $bool;
|
$this->allowHTML = $bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -229,6 +229,8 @@ class DateField extends TextField {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -470,6 +472,7 @@ JS;
|
|||||||
*/
|
*/
|
||||||
function setLocale($locale) {
|
function setLocale($locale) {
|
||||||
$this->locale = $locale;
|
$this->locale = $locale;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -493,6 +496,7 @@ JS;
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->config[$name] = $val;
|
$this->config[$name] = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -70,6 +70,8 @@ class DatetimeField extends FormField {
|
|||||||
$this->dateField->setForm($form);
|
$this->dateField->setForm($form);
|
||||||
$this->timeField->setForm($form);
|
$this->timeField->setForm($form);
|
||||||
$this->timezoneField->setForm($form);
|
$this->timezoneField->setForm($form);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function FieldHolder() {
|
function FieldHolder() {
|
||||||
@ -172,6 +174,8 @@ class DatetimeField extends FormField {
|
|||||||
$this->timeField->setValue($valueObj->get($this->timeField->getConfig('timeformat'), $this->locale));
|
$this->timeField->setValue($valueObj->get($this->timeField->getConfig('timeformat'), $this->locale));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function Value() {
|
function Value() {
|
||||||
@ -187,6 +191,7 @@ class DatetimeField extends FormField {
|
|||||||
$this->dateField->setDisabled($bool);
|
$this->dateField->setDisabled($bool);
|
||||||
$this->timeField->setDisabled($bool);
|
$this->timeField->setDisabled($bool);
|
||||||
if($this->timezoneField) $this->timezoneField->setDisabled($bool);
|
if($this->timezoneField) $this->timezoneField->setDisabled($bool);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setReadonly($bool) {
|
function setReadonly($bool) {
|
||||||
@ -194,6 +199,7 @@ class DatetimeField extends FormField {
|
|||||||
$this->dateField->setReadonly($bool);
|
$this->dateField->setReadonly($bool);
|
||||||
$this->timeField->setReadonly($bool);
|
$this->timeField->setReadonly($bool);
|
||||||
if($this->timezoneField) $this->timezoneField->setReadonly($bool);
|
if($this->timezoneField) $this->timezoneField->setReadonly($bool);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -220,6 +226,7 @@ class DatetimeField extends FormField {
|
|||||||
function setLocale($locale) {
|
function setLocale($locale) {
|
||||||
$this->dateField->setLocale($locale);
|
$this->dateField->setLocale($locale);
|
||||||
$this->timeField->setLocale($locale);
|
$this->timeField->setLocale($locale);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getLocale() {
|
function getLocale() {
|
||||||
@ -240,6 +247,8 @@ class DatetimeField extends FormField {
|
|||||||
$this->timezoneField->setValue($val);
|
$this->timezoneField->setValue($val);
|
||||||
$this->setValue($this->dataValue());
|
$this->setValue($this->dataValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -194,6 +194,7 @@ class DropdownField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setSource($source) {
|
function setSource($source) {
|
||||||
$this->source = $source;
|
$this->source = $source;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -201,6 +202,7 @@ class DropdownField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setHasEmptyDefault($bool) {
|
function setHasEmptyDefault($bool) {
|
||||||
$this->hasEmptyDefault = $bool;
|
$this->hasEmptyDefault = $bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -220,6 +222,7 @@ class DropdownField extends FormField {
|
|||||||
function setEmptyString($str) {
|
function setEmptyString($str) {
|
||||||
$this->setHasEmptyDefault(true);
|
$this->setHasEmptyDefault(true);
|
||||||
$this->emptyString = $str;
|
$this->emptyString = $str;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -242,5 +245,6 @@ class DropdownField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setDisabled($disabled = true) {
|
function setDisabled($disabled = true) {
|
||||||
$this->disabled = $disabled;
|
$this->disabled = $disabled;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -121,6 +121,7 @@ class FieldGroup extends CompositeField {
|
|||||||
function setZebra($zebra) {
|
function setZebra($zebra) {
|
||||||
if($zebra == 'odd' || $zebra == 'even') $this->zebra = $zebra;
|
if($zebra == 'odd' || $zebra == 'even') $this->zebra = $zebra;
|
||||||
else user_error("setZebra passed '$zebra'. It should be passed 'odd' or 'even'", E_USER_WARNING);
|
else user_error("setZebra passed '$zebra'. It should be passed 'odd' or 'even'", E_USER_WARNING);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function FieldHolder() {
|
function FieldHolder() {
|
||||||
|
@ -401,6 +401,7 @@ class FieldList extends ArrayList {
|
|||||||
*/
|
*/
|
||||||
public function setForm($form) {
|
public function setForm($form) {
|
||||||
foreach($this as $field) $field->setForm($form);
|
foreach($this as $field) $field->setForm($form);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -413,6 +414,7 @@ class FieldList extends ArrayList {
|
|||||||
$fieldName = $field->getName();
|
$fieldName = $field->getName();
|
||||||
if(isset($data[$fieldName])) $field->setValue($data[$fieldName]);
|
if(isset($data[$fieldName])) $field->setValue($data[$fieldName]);
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -458,6 +460,7 @@ class FieldList extends ArrayList {
|
|||||||
|
|
||||||
function setContainerField($field) {
|
function setContainerField($field) {
|
||||||
$this->containerField = $field;
|
$this->containerField = $field;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -424,6 +424,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
public function setRedirectToFormOnValidationError($bool) {
|
public function setRedirectToFormOnValidationError($bool) {
|
||||||
$this->redirectToFormOnValidationError = $bool;
|
$this->redirectToFormOnValidationError = $bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -483,6 +484,7 @@ class Form extends RequestHandler {
|
|||||||
$this->validator = $validator;
|
$this->validator = $validator;
|
||||||
$this->validator->setForm($this);
|
$this->validator->setForm($this);
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -562,6 +564,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setFields($fields) {
|
function setFields($fields) {
|
||||||
$this->fields = $fields;
|
$this->fields = $fields;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -598,6 +601,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setActions($actions) {
|
function setActions($actions) {
|
||||||
$this->actions = $actions;
|
$this->actions = $actions;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -605,6 +609,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function unsetAllActions(){
|
function unsetAllActions(){
|
||||||
$this->actions = new FieldList();
|
$this->actions = new FieldList();
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -625,6 +630,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setAttribute($name, $value) {
|
function setAttribute($name, $value) {
|
||||||
$this->attributes[$name] = $value;
|
$this->attributes[$name] = $value;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -723,6 +729,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setTarget($target) {
|
function setTarget($target) {
|
||||||
$this->target = $target;
|
$this->target = $target;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -731,6 +738,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setLegend($legend) {
|
function setLegend($legend) {
|
||||||
$this->legend = $legend;
|
$this->legend = $legend;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -741,6 +749,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setTemplate($template) {
|
function setTemplate($template) {
|
||||||
$this->template = $template;
|
$this->template = $template;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -784,6 +793,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
public function setEncType($encType) {
|
public function setEncType($encType) {
|
||||||
$this->encType = $encType;
|
$this->encType = $encType;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -831,6 +841,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setFormMethod($method) {
|
function setFormMethod($method) {
|
||||||
$this->formMethod = strtolower($method);
|
$this->formMethod = strtolower($method);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -860,6 +871,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setFormAction($path) {
|
function setFormAction($path) {
|
||||||
$this->formActionPath = $path;
|
$this->formActionPath = $path;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -947,6 +959,7 @@ class Form extends RequestHandler {
|
|||||||
function setMessage($message, $type) {
|
function setMessage($message, $type) {
|
||||||
$this->message = $message;
|
$this->message = $message;
|
||||||
$this->messageType = $type;
|
$this->messageType = $type;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1283,6 +1296,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setButtonClicked($funcName) {
|
function setButtonClicked($funcName) {
|
||||||
$this->buttonClickedFunc = $funcName;
|
$this->buttonClickedFunc = $funcName;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function buttonClicked() {
|
function buttonClicked() {
|
||||||
@ -1306,6 +1320,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function disableDefaultAction() {
|
function disableDefaultAction() {
|
||||||
$this->hasDefaultAction = false;
|
$this->hasDefaultAction = false;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1317,6 +1332,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function disableSecurityToken() {
|
function disableSecurityToken() {
|
||||||
$this->securityToken = new NullSecurityToken();
|
$this->securityToken = new NullSecurityToken();
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1326,6 +1342,7 @@ class Form extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function enableSecurityToken() {
|
function enableSecurityToken() {
|
||||||
$this->securityToken = new SecurityToken();
|
$this->securityToken = new SecurityToken();
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1417,6 +1434,8 @@ class Form extends RequestHandler {
|
|||||||
|
|
||||||
$this->extraClasses[] = $value;
|
$this->extraClasses[] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1428,6 +1447,7 @@ class Form extends RequestHandler {
|
|||||||
function removeExtraClass($class) {
|
function removeExtraClass($class) {
|
||||||
$classes = explode(' ', $class);
|
$classes = explode(' ', $class);
|
||||||
$this->extraClasses = array_diff($this->extraClasses, $classes);
|
$this->extraClasses = array_diff($this->extraClasses, $classes);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function debug() {
|
function debug() {
|
||||||
|
@ -39,6 +39,7 @@ class FormAction extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setButtonContent($content) {
|
function setButtonContent($content) {
|
||||||
$this->buttonContent = (string) $content;
|
$this->buttonContent = (string) $content;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -67,6 +68,7 @@ class FormAction extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setFullAction($fullAction) {
|
function setFullAction($fullAction) {
|
||||||
$this->action = $fullAction;
|
$this->action = $fullAction;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function Field($properties = array()) {
|
function Field($properties = array()) {
|
||||||
|
@ -200,6 +200,7 @@ class FormField extends RequestHandler {
|
|||||||
|
|
||||||
function setTitle($val) {
|
function setTitle($val) {
|
||||||
$this->title = $val;
|
$this->title = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function RightTitle() {
|
function RightTitle() {
|
||||||
@ -208,6 +209,7 @@ class FormField extends RequestHandler {
|
|||||||
|
|
||||||
function setRightTitle($val) {
|
function setRightTitle($val) {
|
||||||
$this->rightTitle = $val;
|
$this->rightTitle = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function LeftTitle() {
|
function LeftTitle() {
|
||||||
@ -216,6 +218,7 @@ class FormField extends RequestHandler {
|
|||||||
|
|
||||||
function setLeftTitle($val) {
|
function setLeftTitle($val) {
|
||||||
$this->leftTitle = $val;
|
$this->leftTitle = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -226,6 +229,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
public function setTabIndex($index) {
|
public function setTabIndex($index) {
|
||||||
$this->tabIndex = $index;
|
$this->tabIndex = $index;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -281,6 +285,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function addExtraClass($class) {
|
function addExtraClass($class) {
|
||||||
$this->extraClasses[$class] = $class;
|
$this->extraClasses[$class] = $class;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -290,6 +295,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function removeExtraClass($class) {
|
function removeExtraClass($class) {
|
||||||
if(isset($this->extraClasses) && array_key_exists($class, $this->extraClasses)) unset($this->extraClasses[$class]);
|
if(isset($this->extraClasses) && array_key_exists($class, $this->extraClasses)) unset($this->extraClasses[$class]);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -305,6 +311,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setAttribute($name, $value) {
|
function setAttribute($name, $value) {
|
||||||
$this->attributes[$name] = $value;
|
$this->attributes[$name] = $value;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -378,6 +385,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setValue($value) {
|
function setValue($value) {
|
||||||
$this->value = $value; return $this;
|
$this->value = $value; return $this;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -385,6 +393,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setName($name) {
|
function setName($name) {
|
||||||
$this->name = $name;
|
$this->name = $name;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -394,6 +403,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setForm($form) {
|
function setForm($form) {
|
||||||
$this->form = $form;
|
$this->form = $form;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -423,6 +433,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
public function setFieldHolderTemplate($template) {
|
public function setFieldHolderTemplate($template) {
|
||||||
$this->fieldHolderTemplate = $template;
|
$this->fieldHolderTemplate = $template;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -443,6 +454,7 @@ class FormField extends RequestHandler {
|
|||||||
function setError($message, $messageType) {
|
function setError($message, $messageType) {
|
||||||
$this->message = $message;
|
$this->message = $message;
|
||||||
$this->messageType = $messageType;
|
$this->messageType = $messageType;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -454,6 +466,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
public function setCustomValidationMessage($msg) {
|
public function setCustomValidationMessage($msg) {
|
||||||
$this->customValidationMessage = $msg;
|
$this->customValidationMessage = $msg;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -477,6 +490,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setTemplate($template) {
|
function setTemplate($template) {
|
||||||
$this->template = $template;
|
$this->template = $template;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -569,6 +583,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setReadonly($bool) {
|
function setReadonly($bool) {
|
||||||
$this->readonly = $bool;
|
$this->readonly = $bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -585,6 +600,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setDisabled($bool) {
|
function setDisabled($bool) {
|
||||||
$this->disabled = $bool;
|
$this->disabled = $bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -738,6 +754,7 @@ class FormField extends RequestHandler {
|
|||||||
*/
|
*/
|
||||||
function setContainerFieldSet($containerFieldSet) {
|
function setContainerFieldSet($containerFieldSet) {
|
||||||
$this->containerFieldSet = $containerFieldSet;
|
$this->containerFieldSet = $containerFieldSet;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function rootFieldSet() {
|
function rootFieldSet() {
|
||||||
|
@ -121,7 +121,8 @@ class HtmlEditorConfig {
|
|||||||
* @return mixed - $v returned for chaining
|
* @return mixed - $v returned for chaining
|
||||||
*/
|
*/
|
||||||
function setOption($k,$v) {
|
function setOption($k,$v) {
|
||||||
return $this->settings[$k] = $v;
|
$this->settings[$k] = $v;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -133,6 +134,7 @@ class HtmlEditorConfig {
|
|||||||
foreach ($a as $k=>$v) {
|
foreach ($a as $k=>$v) {
|
||||||
$this->settings[$k] = $v;
|
$this->settings[$k] = $v;
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -173,6 +175,7 @@ class HtmlEditorConfig {
|
|||||||
unset($this->plugins[$plugin]);
|
unset($this->plugins[$plugin]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -198,6 +201,7 @@ class HtmlEditorConfig {
|
|||||||
$line = array_shift($buttons);
|
$line = array_shift($buttons);
|
||||||
}
|
}
|
||||||
$this->buttons[$line] = is_array($buttons) ? $buttons : array($buttons);
|
$this->buttons[$line] = is_array($buttons) ? $buttons : array($buttons);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -214,6 +218,7 @@ class HtmlEditorConfig {
|
|||||||
foreach ($inserts as $button) {
|
foreach ($inserts as $button) {
|
||||||
$this->buttons[$line][] = $button;
|
$this->buttons[$line][] = $button;
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -118,6 +118,7 @@ class ListboxField extends DropdownField {
|
|||||||
*/
|
*/
|
||||||
function setSize($size) {
|
function setSize($size) {
|
||||||
$this->size = $size;
|
$this->size = $size;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -126,6 +127,7 @@ class ListboxField extends DropdownField {
|
|||||||
*/
|
*/
|
||||||
function setMultiple($bool) {
|
function setMultiple($bool) {
|
||||||
$this->multiple = $bool;
|
$this->multiple = $bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setSource($source) {
|
function setSource($source) {
|
||||||
@ -137,6 +139,8 @@ class ListboxField extends DropdownField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
parent::setSource($source);
|
parent::setSource($source);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -180,6 +184,7 @@ class ListboxField extends DropdownField {
|
|||||||
parent::setValue($val);
|
parent::setValue($val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,7 @@ class LiteralField extends DatalessField {
|
|||||||
*/
|
*/
|
||||||
function setContent($content) {
|
function setContent($content) {
|
||||||
$this->content = $content;
|
$this->content = $content;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -55,7 +56,8 @@ class LiteralField extends DatalessField {
|
|||||||
* Synonym of {@link setContent()} so that LiteralField is more compatible with other field types.
|
* Synonym of {@link setContent()} so that LiteralField is more compatible with other field types.
|
||||||
*/
|
*/
|
||||||
function setValue($value) {
|
function setValue($value) {
|
||||||
return $this->setContent($value);
|
$this->setContent($value);
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function performReadonlyTransformation() {
|
function performReadonlyTransformation() {
|
||||||
|
@ -87,6 +87,8 @@ class MoneyField extends FormField {
|
|||||||
// decimal and thousands signs, while respecting the stored
|
// decimal and thousands signs, while respecting the stored
|
||||||
// precision in the database without truncating it during display
|
// precision in the database without truncating it during display
|
||||||
// and subsequent save operations
|
// and subsequent save operations
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -129,6 +131,8 @@ class MoneyField extends FormField {
|
|||||||
|
|
||||||
$this->fieldAmount->setReadonly($bool);
|
$this->fieldAmount->setReadonly($bool);
|
||||||
$this->fieldCurrency->setReadonly($bool);
|
$this->fieldCurrency->setReadonly($bool);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setDisabled($bool) {
|
function setDisabled($bool) {
|
||||||
@ -136,6 +140,8 @@ class MoneyField extends FormField {
|
|||||||
|
|
||||||
$this->fieldAmount->setDisabled($bool);
|
$this->fieldAmount->setDisabled($bool);
|
||||||
$this->fieldCurrency->setDisabled($bool);
|
$this->fieldCurrency->setDisabled($bool);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -148,6 +154,8 @@ class MoneyField extends FormField {
|
|||||||
$oldVal = $this->fieldCurrency->Value();
|
$oldVal = $this->fieldCurrency->Value();
|
||||||
$this->fieldCurrency = $this->FieldCurrency($this->name);
|
$this->fieldCurrency = $this->FieldCurrency($this->name);
|
||||||
$this->fieldCurrency->setValue($oldVal);
|
$this->fieldCurrency->setValue($oldVal);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -159,6 +167,7 @@ class MoneyField extends FormField {
|
|||||||
|
|
||||||
function setLocale($locale) {
|
function setLocale($locale) {
|
||||||
$this->_locale = $locale;
|
$this->_locale = $locale;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getLocale() {
|
function getLocale() {
|
||||||
|
@ -61,6 +61,7 @@ class NullableField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setIsNullLabel(string $isNulLabel){
|
function setIsNullLabel(string $isNulLabel){
|
||||||
$this->isNullLabel = $isNulLabel;
|
$this->isNullLabel = $isNulLabel;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -95,6 +96,8 @@ class NullableField extends FormField {
|
|||||||
}
|
}
|
||||||
$this->valueField->setValue($value);
|
$this->valueField->setValue($value);
|
||||||
parent::setValue($value);
|
parent::setValue($value);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -105,6 +108,8 @@ class NullableField extends FormField {
|
|||||||
// We need to pass through the name change to the underlying value field.
|
// We need to pass through the name change to the underlying value field.
|
||||||
$this->valueField->setName($name);
|
$this->valueField->setName($name);
|
||||||
parent::setName($name);
|
parent::setName($name);
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -108,6 +108,7 @@ class OptionsetField extends DropdownField {
|
|||||||
*/
|
*/
|
||||||
function setDisabledItems($items) {
|
function setDisabledItems($items) {
|
||||||
$this->disabledItems = $items;
|
$this->disabledItems = $items;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -56,6 +56,7 @@ class Tab extends CompositeField {
|
|||||||
|
|
||||||
public function setTabSet($val) {
|
public function setTabSet($val) {
|
||||||
$this->tabSet = $val;
|
$this->tabSet = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -95,7 +95,9 @@ class TabSet extends CompositeField {
|
|||||||
|
|
||||||
public function setTabSet($val) {
|
public function setTabSet($val) {
|
||||||
$this->tabSet = $val;
|
$this->tabSet = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTabSet() {
|
public function getTabSet() {
|
||||||
if(isset($this->tabSet)) return $this->tabSet;
|
if(isset($this->tabSet)) return $this->tabSet;
|
||||||
}
|
}
|
||||||
|
@ -454,6 +454,7 @@ class TableField extends TableListField {
|
|||||||
*/
|
*/
|
||||||
function setExtraData($extraData) {
|
function setExtraData($extraData) {
|
||||||
$this->extraData = $extraData;
|
$this->extraData = $extraData;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -480,6 +481,7 @@ class TableField extends TableListField {
|
|||||||
|
|
||||||
function setTransformationConditions($conditions) {
|
function setTransformationConditions($conditions) {
|
||||||
$this->transformationConditions = $conditions;
|
$this->transformationConditions = $conditions;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function jsValidation() {
|
function jsValidation() {
|
||||||
@ -580,6 +582,7 @@ JS;
|
|||||||
|
|
||||||
function setRequiredFields($fields) {
|
function setRequiredFields($fields) {
|
||||||
$this->requiredFields = $fields;
|
$this->requiredFields = $fields;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -385,10 +385,12 @@ JS
|
|||||||
*/
|
*/
|
||||||
function setCustomQuery(DataList $dataList) {
|
function setCustomQuery(DataList $dataList) {
|
||||||
$this->dataList = $dataList;
|
$this->dataList = $dataList;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setCustomCsvQuery(DataList $dataList) {
|
function setCustomCsvQuery(DataList $dataList) {
|
||||||
$this->customCsvQuery = $query;
|
$this->customCsvQuery = $query;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setCustomSourceItems(SS_List $items) {
|
function setCustomSourceItems(SS_List $items) {
|
||||||
@ -400,6 +402,8 @@ JS
|
|||||||
} else {
|
} else {
|
||||||
user_error('TableList::setCustomSourceItems() should be passed a SS_List', E_USER_WARNING);
|
user_error('TableList::setCustomSourceItems() should be passed a SS_List', E_USER_WARNING);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -499,6 +503,7 @@ JS
|
|||||||
*/
|
*/
|
||||||
function setClick_AjaxLoad($urlBase, $formID) {
|
function setClick_AjaxLoad($urlBase, $formID) {
|
||||||
$this->clickAction = "this.ajaxRequest('" . addslashes($urlBase) . "', '" . addslashes($formID) . "')";
|
$this->clickAction = "this.ajaxRequest('" . addslashes($urlBase) . "', '" . addslashes($formID) . "')";
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -506,6 +511,7 @@ JS
|
|||||||
*/
|
*/
|
||||||
function setClick_PopupLoad($urlBase) {
|
function setClick_PopupLoad($urlBase) {
|
||||||
$this->clickAction = "var w = window.open(baseHref() + '$urlBase' + this.id.replace(/.*-(\d*)$/,'$1'), 'popup'); w.focus();";
|
$this->clickAction = "var w = window.open(baseHref() + '$urlBase' + this.id.replace(/.*-(\d*)$/,'$1'), 'popup'); w.focus();";
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function performReadonlyTransformation() {
|
function performReadonlyTransformation() {
|
||||||
@ -701,6 +707,7 @@ JS
|
|||||||
|
|
||||||
function setPermissions($arr) {
|
function setPermissions($arr) {
|
||||||
$this->permissions = $arr;
|
$this->permissions = $arr;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -717,6 +724,7 @@ JS
|
|||||||
*/
|
*/
|
||||||
function setShowPagination($bool) {
|
function setShowPagination($bool) {
|
||||||
$this->showPagination = (bool)$bool;
|
$this->showPagination = (bool)$bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -731,6 +739,7 @@ JS
|
|||||||
|
|
||||||
function setPageSize($pageSize) {
|
function setPageSize($pageSize) {
|
||||||
$this->pageSize = $pageSize;
|
$this->pageSize = $pageSize;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function PageSize() {
|
function PageSize() {
|
||||||
@ -748,6 +757,7 @@ JS
|
|||||||
function setExtraLinkParams($params){
|
function setExtraLinkParams($params){
|
||||||
Deprecation::notice('2.4', 'Put the query string onto your FormAction instead().');
|
Deprecation::notice('2.4', 'Put the query string onto your FormAction instead().');
|
||||||
$this->extraLinkParams = $params;
|
$this->extraLinkParams = $params;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -907,6 +917,7 @@ JS
|
|||||||
*/
|
*/
|
||||||
function setFieldListCsv($fields) {
|
function setFieldListCsv($fields) {
|
||||||
$this->fieldListCsv = $fields;
|
$this->fieldListCsv = $fields;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -914,6 +925,7 @@ JS
|
|||||||
*/
|
*/
|
||||||
function setCsvSeparator($csvSeparator) {
|
function setCsvSeparator($csvSeparator) {
|
||||||
$this->csvSeparator = $csvSeparator;
|
$this->csvSeparator = $csvSeparator;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -928,6 +940,7 @@ JS
|
|||||||
*/
|
*/
|
||||||
function removeCsvHeader() {
|
function removeCsvHeader() {
|
||||||
$this->csvHasHeader = false;
|
$this->csvHasHeader = false;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1099,14 +1112,17 @@ JS
|
|||||||
|
|
||||||
function setFieldCasting($casting) {
|
function setFieldCasting($casting) {
|
||||||
$this->fieldCasting = $casting;
|
$this->fieldCasting = $casting;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setFieldFormatting($formatting) {
|
function setFieldFormatting($formatting) {
|
||||||
$this->fieldFormatting = $formatting;
|
$this->fieldFormatting = $formatting;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function setCSVFieldFormatting($formatting) {
|
function setCSVFieldFormatting($formatting) {
|
||||||
$this->csvFieldFormatting = $formatting;
|
$this->csvFieldFormatting = $formatting;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1114,6 +1130,7 @@ JS
|
|||||||
*/
|
*/
|
||||||
function setFieldList($fieldList) {
|
function setFieldList($fieldList) {
|
||||||
$this->fieldList = $fieldList;
|
$this->fieldList = $fieldList;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1147,6 +1164,7 @@ JS
|
|||||||
|
|
||||||
function setTemplate($template) {
|
function setTemplate($template) {
|
||||||
$this->template = $template;
|
$this->template = $template;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function CurrentLink() {
|
function CurrentLink() {
|
||||||
@ -1241,6 +1259,7 @@ JS
|
|||||||
|
|
||||||
function setHighlightConditions($conditions) {
|
function setHighlightConditions($conditions) {
|
||||||
$this->highlightConditions = $conditions;
|
$this->highlightConditions = $conditions;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,6 +27,7 @@ class TextField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setMaxLength($length) {
|
function setMaxLength($length) {
|
||||||
$this->maxLength = $length;
|
$this->maxLength = $length;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -100,6 +100,7 @@ class TextareaField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setRows($rows) {
|
function setRows($rows) {
|
||||||
$this->rows = $rows;
|
$this->rows = $rows;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -109,6 +110,7 @@ class TextareaField extends FormField {
|
|||||||
*/
|
*/
|
||||||
function setColumns($cols) {
|
function setColumns($cols) {
|
||||||
$this->cols = $cols;
|
$this->cols = $cols;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
function Value() {
|
function Value() {
|
||||||
|
@ -116,6 +116,8 @@ class TimeField extends TextField {
|
|||||||
$this->value = null;
|
$this->value = null;
|
||||||
$this->valueObj = null;
|
$this->valueObj = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -165,6 +167,7 @@ class TimeField extends TextField {
|
|||||||
*/
|
*/
|
||||||
function setLocale($locale) {
|
function setLocale($locale) {
|
||||||
$this->locale = $locale;
|
$this->locale = $locale;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -173,6 +176,7 @@ class TimeField extends TextField {
|
|||||||
*/
|
*/
|
||||||
function setConfig($name, $val) {
|
function setConfig($name, $val) {
|
||||||
$this->config[$name] = $val;
|
$this->config[$name] = $val;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -98,6 +98,7 @@ class TreeDropdownField extends FormField {
|
|||||||
*/
|
*/
|
||||||
public function setTreeBaseID($ID) {
|
public function setTreeBaseID($ID) {
|
||||||
$this->baseID = (int) $ID;
|
$this->baseID = (int) $ID;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -112,6 +113,7 @@ class TreeDropdownField extends FormField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->filterCallback = $callback;
|
$this->filterCallback = $callback;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -126,6 +128,7 @@ class TreeDropdownField extends FormField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->searchCallback = $callback;
|
$this->searchCallback = $callback;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getShowSearch() {
|
public function getShowSearch() {
|
||||||
@ -137,6 +140,7 @@ class TreeDropdownField extends FormField {
|
|||||||
*/
|
*/
|
||||||
public function setShowSearch($bool) {
|
public function setShowSearch($bool) {
|
||||||
$this->showSearch = $bool;
|
$this->showSearch = $bool;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -79,6 +79,7 @@ abstract class Validator extends Object {
|
|||||||
} else {
|
} else {
|
||||||
user_error("Validator::setJavascriptValidationHandler() passed bad handler '$handler'", E_USER_WARNING);
|
user_error("Validator::setJavascriptValidationHandler() passed bad handler '$handler'", E_USER_WARNING);
|
||||||
}
|
}
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -96,6 +97,7 @@ abstract class Validator extends Object {
|
|||||||
*/
|
*/
|
||||||
function setForm($form) {
|
function setForm($form) {
|
||||||
$this->form = $form;
|
$this->form = $form;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user