Lines 71-76
Longer explanation of the group, if necessary
Link Here
|
71 |
|
71 |
|
72 |
Turn on the feature 'Hide patron's info' for this group |
72 |
Turn on the feature 'Hide patron's info' for this group |
73 |
|
73 |
|
|
|
74 |
=head2 ft_limit_item_editing |
75 |
|
76 |
data_type: 'tinyint' |
77 |
default_value: 0 |
78 |
is_nullable: 0 |
79 |
|
80 |
Turn on the feature "Limit item editing by group" for this group |
81 |
|
74 |
=head2 ft_search_groups_opac |
82 |
=head2 ft_search_groups_opac |
75 |
|
83 |
|
76 |
data_type: 'tinyint' |
84 |
data_type: 'tinyint' |
Lines 127-132
__PACKAGE__->add_columns(
Link Here
|
127 |
{ data_type => "mediumtext", is_nullable => 1 }, |
135 |
{ data_type => "mediumtext", is_nullable => 1 }, |
128 |
"ft_hide_patron_info", |
136 |
"ft_hide_patron_info", |
129 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
137 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
138 |
"ft_limit_item_editing", |
139 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
130 |
"ft_search_groups_opac", |
140 |
"ft_search_groups_opac", |
131 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
141 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
132 |
"ft_search_groups_staff", |
142 |
"ft_search_groups_staff", |
Lines 246-253
__PACKAGE__->belongs_to(
Link Here
|
246 |
); |
256 |
); |
247 |
|
257 |
|
248 |
|
258 |
|
249 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 |
259 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-01-29 15:27:19 |
250 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WOqjMuJNt1Sh2FUvt3NGxA |
260 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TRztggXOBO0KrvgsLO7FzQ |
251 |
|
261 |
|
252 |
sub koha_object_class { |
262 |
sub koha_object_class { |
253 |
'Koha::Library::Group'; |
263 |
'Koha::Library::Group'; |
254 |
- |
|
|