1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-02 22:45:02 +03:00
ifhub.club/application/classes/modules/media/entity/Target.entity.class.php

77 lines
1.7 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>
*
*/
class ModuleMedia_EntityTarget extends EntityORM {
protected $aValidateRules=array(
);
protected $aRelations=array(
'media' => array(self::RELATION_TYPE_BELONGS_TO,'ModuleMedia_EntityMedia','media_id'),
);
protected function beforeSave() {
if ($this->_isNew()) {
$this->setDateAdd(date("Y-m-d H:i:s"));
}
return true;
}
public function getData() {
$aData=@unserialize($this->_getDataOne('data'));
if (!$aData) {
$aData=array();
}
return $aData;
}
public function setData($aRules) {
$this->_aData['data']=@serialize($aRules);
}
public function getDataOne($sKey) {
$aData=$this->getData();
if (isset($aData[$sKey])) {
return $aData[$sKey];
}
return null;
}
public function setDataOne($sKey,$mValue) {
$aData=$this->getData();
$aData[$sKey]=$mValue;
$this->setData($aData);
}
public function getPreviewImageItemsWebPath() {
$aPreviewItems=array();
$sPathbase=$this->getDataOne('image_preview');
$aSizes=$this->getDataOne('image_preview_sizes');
if ($sPathbase and $aSizes) {
foreach($aSizes as $aSize) {
$aPreviewItems[]=$this->Media_GetImageWebPath($sPathbase,$aSize);
}
}
return $aPreviewItems;
}
}