Files
admin_hura_8/inc/Hura8/Components/Article/Model/ArticleLanguageModel.php

20 lines
375 B
PHP
Raw Permalink Normal View History

2024-01-31 11:36:25 +07:00
<?php
namespace Hura8\Components\Article\Model;
use Hura8\System\Model\EntityLanguageModel;
use Hura8\Interfaces\EntityType;
class ArticleLanguageModel extends EntityLanguageModel
{
protected $richtext_fields = [
'description',
];
public function __construct() {
parent::__construct(EntityType::ARTICLE, '', $this->richtext_fields);
}
}