<<

NAME

Koha::Template::Plugin::ExtendedAttributeTypes - TT Plugin for retrieving patron attribute types

SYNOPSIS

[% USE ExtendedAttributeTypes %]

[% ExtendedAttributeTypes.all() %]

ROUTINES

all

In a template, you can get the searchable attribute types with the following TT code: [% ExtendedAttributes.all( staff_searchable => 1 ) %]

The function returns the Koha::Patron::Attribute::Type objects

codes

In a template, you can get the searchable attribute type codes with the following TT code: [% ExtendedAttributes.codes( staff_searchable => 1 ) %]

The function returns the Koha::Patron::Attribute::Type codes as an array

AUTHOR

Nick Clemens <nick@bywatersolutions.com>

<<