2020-08-27 10:05:44 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Entities;
|
|
|
|
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
|
|
|
|
class Platform extends Entity
|
|
|
|
{
|
|
|
|
protected $casts = [
|
2020-11-18 17:17:56 +00:00
|
|
|
'slug' => 'string',
|
|
|
|
'type' => 'string',
|
2020-08-27 10:05:44 +00:00
|
|
|
'label' => 'string',
|
|
|
|
'home_url' => 'string',
|
|
|
|
'submit_url' => '?string',
|
|
|
|
'link_url' => '?string',
|
2020-11-18 17:17:56 +00:00
|
|
|
'link_content' => '?string',
|
2020-10-29 15:45:19 +00:00
|
|
|
'is_visible' => '?boolean',
|
2021-02-27 21:21:26 +00:00
|
|
|
'is_on_embeddable_player' => '?boolean',
|
2020-08-27 10:05:44 +00:00
|
|
|
];
|
|
|
|
}
|