"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); } }