diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-10-02 09:26:54 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-10-02 09:26:54 +0000 |
| commit | eb19fa6a076a8d211cd483afb01eeda6172d27e4 (patch) | |
| tree | 3eb6355b6918ceb0e2c9978cb5d98cb9f4458640 /lib/models/Fach.php | |
| parent | fe64b827e2e503085c6f596eeed08d6ece36624b (diff) | |
fixes #3225
Closes #3225
Merge request studip/studip!2186
Diffstat (limited to 'lib/models/Fach.php')
| -rw-r--r-- | lib/models/Fach.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/models/Fach.php b/lib/models/Fach.php index cc5d914..24a1a6c 100644 --- a/lib/models/Fach.php +++ b/lib/models/Fach.php @@ -12,6 +12,27 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * @since 3.5 + * + * @property string $id alias column for fach_id + * @property string $fach_id database column + * @property I18NString $name database column + * @property I18NString|null $name_kurz database column + * @property I18NString|null $beschreibung database column + * @property string|null $schlagworte database column + * @property string $author_id database column + * @property string $editor_id database column + * @property int $mkdate database column + * @property int $chdate database column + * @property SimpleORMapCollection|Abschluss[] $abschluesse has_many Abschluss + * @property SimpleORMapCollection|StudiengangTeil[] $studiengangteile has_many StudiengangTeil + * @property SimpleORMapCollection|FachFachbereich[] $department_assignments has_many FachFachbereich + * @property SimpleORMapCollection|Fachbereich[] $departments has_and_belongs_to_many Fachbereich + * @property SimpleORMapCollection|Abschluss[] $degrees has_and_belongs_to_many Abschluss + * @property mixed $count_abschluesse additional field + * @property mixed $count_user additional field + * @property mixed $count_sem additional field + * @property mixed $count_stgteile additional field + * @property-read mixed $count_module additional field */ class Fach extends ModuleManagementModelTreeItem implements PrivacyObject |
