2021-12-24 00:38:06 +00:00
< ? php
2021-12-26 09:48:16 +00:00
declare ( strict_types = 1 );
2021-12-30 00:51:12 +00:00
namespace Plugin\AttachmentCollections\Entity ;
2021-12-24 00:38:06 +00:00
use App\Core\Entity ;
2021-12-28 04:39:09 +00:00
use function mb_substr ;
2021-12-26 09:48:16 +00:00
2021-12-30 00:51:12 +00:00
class AttachmentCollection extends Entity
2021-12-24 00:38:06 +00:00
{
// These tags are meant to be literally included and will be populated with the appropriate fields, setters and getters by `bin/generate_entity_fields`
// {{{ Autocode
// @codeCoverageIgnoreStart
private int $id ;
2021-12-28 04:39:09 +00:00
private string $name ;
2021-12-24 00:38:06 +00:00
private int $actor_id ;
public function setId ( int $id ) : self
{
$this -> id = $id ;
return $this ;
}
public function getId () : int
{
return $this -> id ;
}
2021-12-28 04:39:09 +00:00
public function setName ( string $name ) : self
2021-12-24 00:38:06 +00:00
{
2021-12-28 04:39:09 +00:00
$this -> name = mb_substr ( $name , 0 , 255 );
2021-12-24 00:38:06 +00:00
return $this ;
}
2021-12-28 04:39:09 +00:00
public function getName () : string
2021-12-24 00:38:06 +00:00
{
return $this -> name ;
}
public function setActorId ( int $actor_id ) : self
{
$this -> actor_id = $actor_id ;
return $this ;
}
public function getActorId () : int
{
return $this -> actor_id ;
}
// @codeCoverageIgnoreEnd
// }}} Autocode
public static function schemaDef ()
{
return [
2022-02-04 16:03:49 +00:00
'name' => 'attachment_collection' ,
2021-12-24 00:38:06 +00:00
'fields' => [
'id' => [ 'type' => 'serial' , 'not null' => true , 'description' => 'unique identifier' ],
2021-12-28 04:39:09 +00:00
'name' => [ 'type' => 'varchar' , 'length' => 255 , 'not null' => true , 'description' => 'collection\'s name' ],
2021-12-24 00:38:06 +00:00
'actor_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'Actor.id' , 'multiplicity' => 'one to many' , 'not null' => true , 'description' => 'foreign key to actor table' ],
],
2021-12-26 09:48:16 +00:00
'primary key' => [ 'id' ],
2021-12-24 00:38:06 +00:00
];
}
}