LabelTree
class LabelTree extends Model
A label tree is a group of labels. Projects can choose to used different label trees, which are then offered for labeling things in the project.
Label trees have admins and editors as members. Editors can add and delete labels. Admins can also manage members and modify the tree (name, visibility etc). Label trees can be public or private. Private trees maintain a list of projects that are authorized to use the tree. This list is maintained by label tree admins.
Traits
Properties
$hidden | The attributes hidden from the model's JSON form. |
||
protected array<string,string> | $casts | The attributes that should be casted to native types. |
|
string | $uuid |
Methods
Scope a query to public label trees.
Scope a query to private label trees.
Scope a query to all trees that are accessible by a user.
Scope a query to all trees that are not a varsion of another tree.
Scope a query to all "global" trees.
The version of this label tree (if it is a version of a master label tree).
The versions of this (master) label tree.
The visibility of the label tree.
The members of this label tree. Every member has a tree-specific role.
The labels that belong to this tree.
Determines if the label tree can be safely deleted.
The projects that are using this label tree.
The projects that are authorized to use this private label tree.
Detaches all projects that are not among the authorized projects.
Get the name with a version suffix of this label tree.
Details
at line 51
bool
memberCanLooseAdminStatus(User $member)
Check if a member can loose their admin status.
at line 65
LabelTree>
scopePublicTrees(LabelTree> $query)
Scope a query to public label trees.
at line 76
LabelTree>
scopePrivateTrees(LabelTree> $query)
Scope a query to private label trees.
at line 88
LabelTree>
scopeAccessibleBy(LabelTree> $query, User $user)
Scope a query to all trees that are accessible by a user.
at line 126
LabelTree>
scopeWithoutVersions(LabelTree> $query)
Scope a query to all trees that are not a varsion of another tree.
at line 138
LabelTree>
scopeGlobal(LabelTree> $query)
Scope a query to all "global" trees.
at line 150
LabelTreeVersion,$this>
version()
The version of this label tree (if it is a version of a master label tree).
at line 160
LabelTreeVersion,$this>
versions()
The versions of this (master) label tree.
at line 170
Visibility,$this>
visibility()
The visibility of the label tree.
at line 180
User,$this>
members()
The members of this label tree. Every member has a tree-specific role.
at line 192
Label,$this>
labels()
The labels that belong to this tree.
at line 204
bool
canBeDeleted()
Determines if the label tree can be safely deleted.
A label tree can be safely deleted if none if its labels or the labels of any of its versions are in use.
at line 260
bool
memberCanBeRemoved(User $member)
Determines if a member can be removed.
A member can be removed if at least one admin member remains afterwards.
at line 270
Project,$this>
projects()
The projects that are using this label tree.
at line 280
Project,$this>
authorizedProjects()
The projects that are authorized to use this private label tree.
at line 288
detachUnauthorizedProjects()
Detaches all projects that are not among the authorized projects.
at line 314
string
getVersionedNameAttribute()
Get the name with a version suffix of this label tree.
at line 328
replicateLabelsOf(LabelTree $tree)
Replicate all labels of one label tree to this one.