Files
sterivein/core/lib/Thelia/Model/Content.php
2013-09-04 17:59:07 +02:00

15 lines
280 B
PHP
Executable File

<?php
namespace Thelia\Model;
use Thelia\Model\Base\Content as BaseContent;
use Thelia\Tools\URL;
class Content extends BaseContent
{
public function getUrl($locale)
{
return URL::getInstance()->retrieve('content', $this->getId(), $locale)->toString();
}
}