File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/workbench/komma/kms/src/Komma/Kms/Posts/PostEntity.php
<?php
/**
* Short description for the file.
*
* @author Jaap Faes <jaap@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\Kms\Posts;
use Komma\Kms\Core\Entities\KmsShopEntity;
class PostEntity extends KmsShopEntity
{
public $active = 1;
public $date;
public $name = '';
public $controller = '';
public $images;
public function getRoutableId($shopId = null, $languageId = null)
{
if(isset($this->translations[$languageId]))
return $this->translations[$languageId]->id;
}
}