Files
pathfinder/app/main/model/pathfinder/rightmodel.php
Mark Friedrich a33615445e - new "_NPC faction_" added for k-space systems, closed #773
- improved file structure for _Model_ classes (`app/main/model/..`). Group by database name
- improved database connection handling (fixed persistent DB connections)
2019-04-12 21:34:29 +02:00

82 lines
1.8 KiB
PHP

<?php
/**
* Created by PhpStorm.
* User: Exodus 4D
* Date: 28.01.2018
* Time: 14:38
*/
namespace Model\Pathfinder;
use DB\SQL\Schema;
class RightModel extends AbstractPathfinderModel {
protected $table = 'right';
protected $fieldConf = [
'active' => [
'type' => Schema::DT_BOOL,
'nullable' => false,
'default' => 1,
'index' => true
],
'name' => [
'type' => Schema::DT_VARCHAR128,
'nullable' => false,
'default' => ''
],
'label' => [
'type' => Schema::DT_VARCHAR128,
'nullable' => false,
'default' => ''
],
'description' => [
'type' => Schema::DT_VARCHAR512,
'nullable' => false,
'default' => ''
],
'corporationRights' => [
'has-many' => ['Model\Pathfinder\CorporationRightModel', 'rightId']
]
];
protected static $tableData = [
[
'id' => 1,
'name' => 'map_update',
'label' => 'update',
'description' => 'Map settings update right'
],
[
'id' => 2,
'name' => 'map_delete',
'label' => 'delete',
'description' => 'Map delete right'
],
[
'id' => 3,
'name' => 'map_import',
'label' => 'import',
'description' => 'Map import right'
],
[
'id' => 4,
'name' => 'map_export',
'label' => 'export',
'description' => 'Map export right'
]
];
/**
* get right data
* @return \stdClass
*/
public function getData(){
$rightData = (object) [];
$rightData->name = $this->name;
return $rightData;
}
}