App/resources/Lehrgaenge/Lehrgang.php

21 lines
517 B
PHP

<?php
namespace Resources\Lehrgänge;
require_once "links/Personal_Lehrgaenge.php";
class Lehrgang extends \Resources\Handler
{
protected $names = ["table" => "Lehrgänge", "ident" => "Lehrgänge", "short" => "l"];
protected $has = ["uuid" => false, "sha256" => false];
protected $definitions = [
"fields" => [
"Kürzel" => ["default" => "", "type" => "s"],
"Name" => ["default" => "", "type" => "s"]
],
"keys" => [],
"links" => [
"Personal" => ["linkClass" => "Personal_Lehrgänge"],
]
];
}