Skip to content
Snippets Groups Projects
Commit e6167b5b authored by Stephen Keenan's avatar Stephen Keenan
Browse files

added get_all_DBLinks method

parent f871f1bb
No related branches found
No related tags found
No related merge requests found
......@@ -334,5 +334,29 @@ sub transform {
}
}
=head2 get_all_DBLinks
Arg [1] :
Example :
Description:
Returntype :
Exceptions :
Caller :
=cut
sub get_all_DBLinks {
my $self = shift;
if( !defined $self->{'_db_link'} ) {
$self->{'_db_link'} = [];
if( defined $self->adaptor ) {
$self->adaptor->db->get_DBEntryAdaptor->fetch_all_by_Translation($self);
}
}
return $self->{'_db_link'};
}
1;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment