15 lines
273 B
PHP
Executable File
15 lines
273 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::init()->retrieve('content', $this->getId(), $locale)->toString();
|
|
}
|
|
}
|