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

(-)a/Koha/Authorities.pm (-1 / +1 lines)
Lines 41-47 Koha::Authorities - Koha Authority object set class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'AuthHeader';
45
    return 'AuthHeader';
46
}
46
}
47
47
(-)a/Koha/Authority.pm (-1 / +1 lines)
Lines 39-45 Koha::Authority - Koha Authority Object class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'AuthHeader';
43
    return 'AuthHeader';
44
}
44
}
45
45
(-)a/Koha/Authority/Type.pm (-1 / +1 lines)
Lines 42-48 sub auth_tag_structures { Link Here
42
42
43
=cut
43
=cut
44
44
45
sub type {
45
sub _type {
46
    return 'AuthType';
46
    return 'AuthType';
47
}
47
}
48
48
(-)a/Koha/Authority/Types.pm (-1 / +1 lines)
Lines 39-45 Koha::Authority::Types - Koha Authority Type Object set class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'AuthType';
43
    return 'AuthType';
44
}
44
}
45
45
(-)a/Koha/BiblioFramework.pm (-1 / +1 lines)
Lines 37-43 Koha::BiblioFramework - Koha BiblioFramework Object class Link Here
37
37
38
=cut
38
=cut
39
39
40
sub type {
40
sub _type {
41
    return 'BiblioFramework';
41
    return 'BiblioFramework';
42
}
42
}
43
43
(-)a/Koha/BiblioFrameworks.pm (-1 / +1 lines)
Lines 39-45 Koha::BiblioFrameworks - Koha BiblioFramework Object set class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'BiblioFramework';
43
    return 'BiblioFramework';
44
}
44
}
45
45
(-)a/Koha/IssuingRule.pm (-1 / +1 lines)
Lines 35-41 Koha::Hold - Koha Hold object class Link Here
35
35
36
=cut
36
=cut
37
37
38
sub type {
38
sub _type {
39
    return 'Issuingrule';
39
    return 'Issuingrule';
40
}
40
}
41
41
(-)a/Koha/IssuingRules.pm (-1 / +1 lines)
Lines 35-41 Koha::IssuingRules - Koha IssuingRules object set class Link Here
35
35
36
=cut
36
=cut
37
37
38
sub type {
38
sub _type {
39
    return 'Issuingrule';
39
    return 'Issuingrule';
40
}
40
}
41
41
(-)a/Koha/Serial.pm (-1 / +1 lines)
Lines 39-45 Koha::Serial - Koha Serial Object class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'Serial';
43
    return 'Serial';
44
}
44
}
45
45
(-)a/Koha/Serials.pm (-1 / +1 lines)
Lines 41-47 Koha::Serial - Koha Serial Object class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'Serial';
45
    return 'Serial';
46
}
46
}
47
47
(-)a/Koha/Subscription.pm (-1 / +1 lines)
Lines 39-45 Koha::Subscription - Koha Subscription Object class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'Subscription';
43
    return 'Subscription';
44
}
44
}
45
45
(-)a/Koha/Subscription/Histories.pm (-1 / +1 lines)
Lines 41-47 Koha::Subscription::Histories - Koha Subscription Histories Object class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'Subscriptionhistory';
45
    return 'Subscriptionhistory';
46
}
46
}
47
47
(-)a/Koha/Subscription/History.pm (-1 / +1 lines)
Lines 39-45 Koha::Subscription::History - Koha Subscription History Object class Link Here
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'Subscriptionhistory';
43
    return 'Subscriptionhistory';
44
}
44
}
45
45
(-)a/Koha/Subscriptions.pm (-2 / +1 lines)
Lines 41-47 Koha::Subscription - Koha Subscription Object class Link Here
41
41
42
=cut
42
=cut
43
43
44
sub type {
44
sub _type {
45
    return 'Subscription';
45
    return 'Subscription';
46
}
46
}
47
47
48
- 

Return to bug 15446