mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
wiki
This commit is contained in:
21
ci4/app/Entities/Wiki/WikiContentEntity.php
Normal file
21
ci4/app/Entities/Wiki/WikiContentEntity.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace App\Entities\Wiki;
|
||||
|
||||
use CodeIgniter\Entity\Entity;
|
||||
|
||||
class WikiContentEntity extends Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"locale" => null,
|
||||
"page_id" => null,
|
||||
"editor_data" => null,
|
||||
"published_data" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"locale" => "string",
|
||||
"page_id" => "int",
|
||||
"editor_data" => "string",
|
||||
"published_data" => "string",
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user