mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* A custom rule for showing / hiding an EditableFormField
|
|
* based the value of another EditableFormField.
|
|
*
|
|
* @package userforms
|
|
*/
|
|
class EditableCustomRule extends DataObject {
|
|
|
|
private static $condition_options = array(
|
|
"IsBlank" => "Is blank",
|
|
"IsNotBlank" => "Is not blank",
|
|
"HasValue" => "Equals",
|
|
"ValueNot" => "Doesn't equal",
|
|
"ValueLessThan" => "Less than",
|
|
"ValueLessThanEqual" => "Less than or equal",
|
|
"ValueGreaterThan" => "Greater than",
|
|
"ValueGreaterThanEqual" => "Greater than or equal"
|
|
);
|
|
|
|
private static $db = array(
|
|
'Display' => 'Enum("Show,Hide")',
|
|
'ConditionOption' => 'Enum("IsBlank,IsNotBlank,HasValue,ValueNot,ValueLessThan,ValueLessThanEqual,ValueGreaterThan,ValueGreaterThanEqual")',
|
|
'FieldValue' => 'Varchar'
|
|
);
|
|
|
|
private static $has_one = array(
|
|
'Parent' => 'EditableFormField',
|
|
'ConditionField' => 'EditableFormField'
|
|
);
|
|
|
|
/**
|
|
* Built in extensions required
|
|
*
|
|
* @config
|
|
* @var array
|
|
*/
|
|
private static $extensions = array(
|
|
"Versioned('Stage', 'Live')"
|
|
);
|
|
|
|
/**
|
|
* Publish this custom rule to the live site
|
|
*
|
|
* Wrapper for the {@link Versioned} publish function
|
|
*/
|
|
public function doPublish($fromStage, $toStage, $createNewVersion = false) {
|
|
$this->publish($fromStage, $toStage, $createNewVersion);
|
|
}
|
|
|
|
/**
|
|
* Delete this custom rule from a given stage
|
|
*
|
|
* Wrapper for the {@link Versioned} deleteFromStage function
|
|
*/
|
|
public function doDeleteFromStage($stage) {
|
|
$this->deleteFromStage($stage);
|
|
}
|
|
}
|