15 lines
280 B
PHP
Executable File
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();
|
|
}
|
|
}
|