Koha::Library::Group - Koha Library::Group object class
my $has_child = $group->has_child( $branchcode );
Return true if the given branchcode library is a child of this group.
my $library = $group->library();
Returns the library for this group if one exists
my $libraries = $group->libraries( { [invert => 1] } );
Returns the libraries set as direct children of this group.
If invert param is true, the returned list will be libraries that are *not* direct children of this group.
my @libraries = $group->all_libraries( { [invert => 1] } );
Returns the libraries set as children of this group or any subgroup.
my $libraries = $group->libraries_not_direct_children();
Returns the libraries *not* set as direct children of this group
Kyle M Hall <kyle@bywatersolutions.com>