22 lines
387 B
PHP
22 lines
387 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Hura8\Components\Page\Model;
|
||
|
|
|
||
|
|
use Hura8\System\Model\EntityLanguageModel;
|
||
|
|
use Hura8\Interfaces\EntityType;
|
||
|
|
|
||
|
|
class PageLanguageModel extends EntityLanguageModel
|
||
|
|
{
|
||
|
|
|
||
|
|
protected $richtext_fields = [
|
||
|
|
'content',
|
||
|
|
'content_html',
|
||
|
|
];
|
||
|
|
|
||
|
|
public function __construct() {
|
||
|
|
parent::__construct(EntityType::PAGE, '', $this->richtext_fields);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|