2021-10-28 01:26:16 +01:00
< ? php
declare ( strict_types = 1 );
// {{{ License
// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU social is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
// }}}
namespace App\Entity ;
use App\Core\DB\DB ;
use App\Core\Entity ;
/**
* Entity for actor languages
*
* @ category DB
* @ package GNUsocial
*
* @ author Hugo Sales < hugo @ hsal . es >
* @ copyright 2021 Free Software Foundation , Inc http :// www . fsf . org
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
*/
class ActorLanguage extends Entity
{
// {{{ Autocode
// @codeCoverageIgnoreStart
private int $actor_id ;
private int $language_id ;
2021-11-02 10:42:21 +00:00
private int $order ;
2021-10-28 01:26:16 +01:00
public function setActorId ( int $actor_id ) : self
{
$this -> actor_id = $actor_id ;
return $this ;
}
public function getActorId () : int
{
return $this -> actor_id ;
}
public function setLanguageId ( int $language_id ) : self
{
$this -> language_id = $language_id ;
return $this ;
}
public function getLanguageId () : int
{
return $this -> language_id ;
}
2021-11-02 10:42:21 +00:00
public function getOrder () : int
{
return $this -> order ;
}
public function setOrder ( int $order ) : self
{
$this -> order = $order ;
return $this ;
}
2021-10-28 01:26:16 +01:00
// @codeCoverageIgnoreEnd
// }}} Autocode
public static function schemaDef () : array
{
return [
'name' => 'actor_language' ,
'description' => 'join table where one actor can have many languages' ,
'fields' => [
2021-11-02 10:42:21 +00:00
'actor_id' => [ 'type' => 'int' , 'not null' => true , 'foreign key' => true , 'target' => 'Actor.id' , 'multiplicity' => 'one to many' , 'not null' => true , 'description' => 'the actor this language entry refers to' ],
'language_id' => [ 'type' => 'int' , 'not null' => true , 'foreign key' => true , 'target' => 'Language.id' , 'multiplicity' => 'many to many' , 'not null' => true , 'description' => 'the language this entry refers to' ],
'order' => [ 'type' => 'int' , 'not null' => true , 'description' => 'the order in which a user\'s language options should be displayed' ],
2021-10-28 01:26:16 +01:00
],
'primary key' => [ 'actor_id' , 'language_id' ],
'indexes' => [
'actor_idx' => [ 'actor_id' ],
],
];
}
}