_init(\Magento\CheckoutAgreements\Model\ResourceModel\Agreement::class); } /** * @param \Magento\Framework\DataObject $agreementData * @return array|bool */ public function validateData($agreementData) { $errors = []; $contentHeight = $agreementData->getContentHeight(); if ($contentHeight !== '' && !preg_match('/^[0-9]*\.*[0-9]+(' . implode("|", $this->allowedCssUnits) . ')?$/', $contentHeight) ) { $errors[] = "Please input a valid CSS-height. For example 100px or 77pt or 20em or .5ex or 50%."; } return (count($errors)) ? $errors : true; } /** * Processing object before save data * * @return $this */ public function beforeSave() { if ($this->getContentHeight() == 0) { $this->setContentHeight(''); //converting zero Content-Height } if ($this->getContentHeight() && !preg_match('/(' . implode("|", $this->allowedCssUnits) . ')/', $this->getContentHeight()) ) { $contentHeight = $this->getContentHeight() . 'px'; //setting default units for Content-Height $this->setContentHeight($contentHeight); } return parent::beforeSave(); } //@codeCoverageIgnoreStart /** * @inheritdoc */ public function getAgreementId() { return $this->getData(self::AGREEMENT_ID); } /** * @inheritdoc */ public function setAgreementId($id) { return $this->setData(self::AGREEMENT_ID, $id); } /** * @inheritdoc */ public function getName() { return $this->getData(self::NAME); } /** * @inheritdoc */ public function setName($name) { return $this->setData(self::NAME, $name); } /** * @inheritdoc */ public function getContent() { return $this->getData(self::CONTENT); } /** * @inheritdoc */ public function setContent($content) { return $this->setData(self::CONTENT, $content); } /** * @inheritdoc */ public function getContentHeight() { return $this->getData(self::CONTENT_HEIGHT); } /** * @inheritdoc */ public function setContentHeight($height) { return $this->setData(self::CONTENT_HEIGHT, $height); } /** * @inheritdoc */ public function getCheckboxText() { return $this->getData(self::CHECKBOX_TEXT); } /** * @inheritdoc */ public function setCheckboxText($text) { return $this->setData(self::CHECKBOX_TEXT, $text); } /** * @inheritdoc */ public function getIsActive() { return $this->getData(self::IS_ACTIVE); } /** * @inheritdoc */ public function setIsActive($status) { return $this->setData(self::IS_ACTIVE, $status); } /** * @inheritdoc */ public function getIsHtml() { return $this->getData(self::IS_HTML); } /** * @inheritdoc */ public function setIsHtml($isHtml) { return $this->setData(self::IS_HTML, $isHtml); } /** * @inheritdoc */ public function getMode() { return $this->getData(self::MODE); } /** * @inheritdoc */ public function setMode($mode) { return $this->setData(self::MODE, $mode); } /** * {@inheritdoc} * * @return \Magento\CheckoutAgreements\Api\Data\AgreementExtensionInterface|null */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} * * @param \Magento\CheckoutAgreements\Api\Data\AgreementExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes( \Magento\CheckoutAgreements\Api\Data\AgreementExtensionInterface $extensionAttributes ) { return $this->_setExtensionAttributes($extensionAttributes); } //@codeCoverageIgnoreEnd }