File: D:/HostingSpaces/SBogers87/basephotography.nl/workbench/komma/kms/src/Komma/Kms/Text/TextEntity.php
<?php
/**
* Short description for the file.
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\Kms\Text;
use Komma\Kms\Core\Entities\KmsTranslatableEntity;
class TextEntity extends KmsTranslatableEntity
{
public $active = 1;
public $parent_id = null;
public $code_name = '';
public $link = '';
/**
* @param null $languageId
* @return int|bool
*/
public function getRoutableId($languageId = null)
{
if ( ! isset($this->translations[$languageId])) return false;
return $this->translations[$languageId]->id;
}
}