Files
sterivein/core/lib/Thelia/Model/Content.php
Etienne Roudeix 696b871acd start rewriting
2013-08-29 08:49:48 +02:00

15 lines
253 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::retrieve('content', $this->getId(), $locale);
}
}