'Is blank', 'IsNotBlank' => 'Is not blank', 'Equals' => 'Equals', 'NotEquals' => "Doesn't equal", 'ValueLessThan' => 'Less than', 'ValueLessThanEqual' => 'Less than or equal', 'ValueGreaterThan' => 'Greater than', 'ValueGreaterThanEqual' => 'Greater than or equal' ]; private static $db = [ 'ConditionOption' => 'Enum("IsBlank,IsNotBlank,Equals,NotEquals,ValueLessThan,ValueLessThanEqual,ValueGreaterThan,ValueGreaterThanEqual")', 'ConditionValue' => 'Varchar' ]; private static $has_one = [ 'Parent' => EmailRecipient::class, 'ConditionField' => EditableFormField::class ]; private static $table_name = 'UserDefinedForm_EmailRecipientCondition'; /** * * Determine if this rule matches the given condition * * @param $data * * @return bool|null * @throws LogicException */ public function matches($data) { $fieldName = $this->ConditionField()->Name; $fieldValue = isset($data[$fieldName]) ? $data[$fieldName] : null; $conditionValue = $this->ConditionValue; $result = null; switch ($this->ConditionOption) { case 'IsBlank': $result = empty($fieldValue); break; case 'IsNotBlank': $result = !empty($fieldValue); break; case 'ValueLessThan': $result = ($fieldValue < $conditionValue); break; case 'ValueLessThanEqual': $result = ($fieldValue <= $conditionValue); break; case 'ValueGreaterThan': $result = ($fieldValue > $conditionValue); break; case 'ValueGreaterThanEqual': $result = ($fieldValue >= $conditionValue); break; case 'NotEquals': case 'Equals': $result = is_array($fieldValue) ? in_array($conditionValue, $fieldValue) : $fieldValue == $conditionValue; if ($this->ConditionOption == 'NotEquals') { $result = !($result); } break; default: throw new LogicException("Unhandled rule {$this->ConditionOption}"); break; } return $result; } /** * Return whether a user can create an object of this type * * @param Member $member * @param array $context Virtual parameter to allow context to be passed in to check * @return bool */ public function canCreate($member = null, $context = []) { // Check parent page $parent = $this->getCanCreateContext(func_get_args()); if ($parent) { return $parent->canEdit($member); } // Fall back to secure admin permissions return parent::canCreate($member); } /** * Helper method to check the parent for this object * * @param array $args List of arguments passed to canCreate * @return SiteTree Parent page instance */ protected function getCanCreateContext($args) { // Inspect second parameter to canCreate for a 'Parent' context if (isset($args[1]['Parent'])) { return $args[1]['Parent']; } // Hack in currently edited page if context is missing if (Controller::has_curr() && Controller::curr() instanceof CMSMain) { return Controller::curr()->currentPage(); } // No page being edited return null; } public function canView($member = null) { return $this->Parent()->canView($member); } public function canEdit($member = null) { return $this->Parent()->canEdit($member); } public function canDelete($member = null) { return $this->canEdit($member); } }