View | Details | Raw Unified | Return to bug 17499
Collapse All | Expand All

(-)a/Koha/Patron/Message/Attribute.pm (-1 / +1 lines)
Lines 33-39 Koha::Patron::Message::Attribute - Koha Patron Message Attribute object class Link Here
33
33
34
=cut
34
=cut
35
35
36
=head3 type
36
=head3 _type
37
37
38
=cut
38
=cut
39
39
(-)a/Koha/Patron/Message/Attributes.pm (-1 / +7 lines)
Lines 34-40 Koha::Patron::Message::Attributes - Koha Patron Message Attributes object class Link Here
34
34
35
=cut
35
=cut
36
36
37
=head3 type
37
=head2 Internal methods
38
39
=head3 _type
38
40
39
=cut
41
=cut
40
42
Lines 42-47 sub _type { Link Here
42
    return 'MessageAttribute';
44
    return 'MessageAttribute';
43
}
45
}
44
46
47
=head3 object_class
48
49
=cut
50
45
sub object_class {
51
sub object_class {
46
    return 'Koha::Patron::Message::Attribute';
52
    return 'Koha::Patron::Message::Attribute';
47
}
53
}
(-)a/Koha/Patron/Message/Preferences.pm (-1 / +5 lines)
Lines 125-131 sub search_with_message_name { Link Here
125
    return $self->SUPER::search($params, $attributes);
125
    return $self->SUPER::search($params, $attributes);
126
}
126
}
127
127
128
=head3 type
128
=head3 _type
129
129
130
=cut
130
=cut
131
131
Lines 133-138 sub _type { Link Here
133
    return 'BorrowerMessagePreference';
133
    return 'BorrowerMessagePreference';
134
}
134
}
135
135
136
=head3 object_class
137
138
=cut
139
136
sub object_class {
140
sub object_class {
137
    return 'Koha::Patron::Message::Preference';
141
    return 'Koha::Patron::Message::Preference';
138
}
142
}
(-)a/Koha/Patron/Message/Transport/Preferences.pm (-1 / +5 lines)
Lines 35-41 Preferences object class Link Here
35
35
36
=cut
36
=cut
37
37
38
=head3 type
38
=head3 _type
39
39
40
=cut
40
=cut
41
41
Lines 43-48 sub _type { Link Here
43
    return 'BorrowerMessageTransportPreference';
43
    return 'BorrowerMessageTransportPreference';
44
}
44
}
45
45
46
=head3 object_class
47
48
=cut
49
46
sub object_class {
50
sub object_class {
47
    return 'Koha::Patron::Message::Transport::Preference';
51
    return 'Koha::Patron::Message::Transport::Preference';
48
}
52
}
(-)a/Koha/Patron/Message/Transport/Type.pm (-1 / +3 lines)
Lines 34-40 object class Link Here
34
34
35
=cut
35
=cut
36
36
37
=head3 type
37
=head2 Internal Methods
38
39
=head3 _type
38
40
39
=cut
41
=cut
40
42
(-)a/Koha/Patron/Message/Transport/Types.pm (-1 / +7 lines)
Lines 35-41 object class Link Here
35
35
36
=cut
36
=cut
37
37
38
=head3 type
38
=head2 Internal Methods
39
40
=head3 _type
39
41
40
=cut
42
=cut
41
43
Lines 43-48 sub _type { Link Here
43
    return 'MessageTransportType';
45
    return 'MessageTransportType';
44
}
46
}
45
47
48
=head3 object_class
49
50
=cut
51
46
sub object_class {
52
sub object_class {
47
    return 'Koha::Patron::Message::Transport::Type';
53
    return 'Koha::Patron::Message::Transport::Type';
48
}
54
}
(-)a/Koha/Patron/Message/Transports.pm (-2 / +7 lines)
Lines 34-40 Koha::Patron::Message::Transports - Koha Patron Message Transports object class Link Here
34
34
35
=cut
35
=cut
36
36
37
=head3 type
37
=head2 Internal Methods
38
39
=head3 _type
38
40
39
=cut
41
=cut
40
42
Lines 42-47 sub _type { Link Here
42
    return 'MessageTransport';
44
    return 'MessageTransport';
43
}
45
}
44
46
47
=head3 object_class
48
49
=cut
50
45
sub object_class {
51
sub object_class {
46
    return 'Koha::Patron::Message::Transport';
52
    return 'Koha::Patron::Message::Transport';
47
}
53
}
48
- 

Return to bug 17499