1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-30 21:45:01 +03:00
ifhub.club/application/classes/modules/property/entity/ValueType.entity.class.php

144 lines
3.5 KiB
PHP

<?php
/*
* LiveStreet CMS
* Copyright © 2013 OOO "ЛС-СОФТ"
*
* ------------------------------------------------------
*
* Official site: www.livestreetcms.com
* Contact e-mail: office@livestreetcms.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* ------------------------------------------------------
*
* @link http://www.livestreetcms.com
* @copyright 2013 OOO "ЛС-СОФТ"
* @author Maxim Mzhelskiy <rus.engine@gmail.com>
*
*/
/**
* Базовый объект значения поля
*
* @package application.modules.property
* @since 2.0
*/
class ModuleProperty_EntityValueType extends Entity
{
protected $oValue = null;
public function getValueForDisplay()
{
// TODO: getValue() всегда вернет null
return $this->getValueObject()->getValue();
}
public function getValueForForm()
{
return htmlspecialchars($this->getValueObject()->getValue());
}
public function isEmpty()
{
return $this->getValueObject()->getValueVarchar() ? false : true;
}
public function validate()
{
return 'Неверное значение';
}
protected function validateStandart(
$sTypeValidator,
$aParamsAdditional = array(),
$sFieldForValidate = 'value_for_validate'
) {
$oProperty = $this->getValueObject()->getProperty();
/**
* Получаем параметры валидации
*/
$aParams = $oProperty->getValidateRules();
if (!isset($aParams['label'])) {
$aParams['label'] = '';
}
$aParams = array_merge($aParams, $aParamsAdditional);
$oValidator = $this->Validate_CreateValidator($sTypeValidator, $this, null, $aParams);
$oValidator->fields = array($sFieldForValidate);
$oValidator->validateEntity($this);
if ($this->_hasValidateErrors()) {
return $this->_getValidateError();
} else {
return true;
}
}
public function setValue($mValue)
{
$this->resetAllValue();
}
public function setValueObject($oValue)
{
$this->oValue = $oValue;
}
public function getValueObject()
{
return $this->oValue;
}
public function resetAllValue()
{
$oValue = $this->getValueObject();
$oValue->setValueInt(null);
$oValue->setValueFloat(null);
$oValue->setValueVarchar(null);
$oValue->setValueText(null);
$oValue->setValueDate(null);
$oValue->setData(null);
/**
* Удаляем из таблицы тегов
*/
$this->Property_RemoveValueTagsByTarget($oValue->getTargetType(), $oValue->getTargetId(),
$oValue->getPropertyId());
/**
* Удаляем из таблицы селектов
*/
$this->Property_RemoveValueSelectsByTarget($oValue->getTargetType(), $oValue->getTargetId(),
$oValue->getPropertyId());
}
public function prepareValidateRulesRaw($aRulesRaw)
{
return array();
}
public function getValidateRulesDefault()
{
return array();
}
public function prepareParamsRaw($aParamsRaw)
{
return array();
}
public function getParamsDefault()
{
return array();
}
public function beforeSaveValue()
{
}
public function removeValue()
{
}
}