add getRevisionDates method
This commit is contained in:
parent
6d6e5768ef
commit
a13fee07a0
1 changed files with 16 additions and 0 deletions
|
|
@ -245,6 +245,22 @@ sub getRevisionCount {
|
||||||
|
|
||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=head2 getRevisionDates ( [ status ] )
|
||||||
|
|
||||||
|
Return an arrayref of all the revision dates for this asset, sorted in
|
||||||
|
descending order (most recent first).
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
sub getRevisionDates {
|
||||||
|
my $self = shift;
|
||||||
|
return $self->session->db->buildArrayRef(
|
||||||
|
"select revisionDate from assetData where assetId=? order by revisionDate desc",
|
||||||
|
[$self->getId],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
=head2 getRevisions ( [ status ] )
|
=head2 getRevisions ( [ status ] )
|
||||||
|
|
||||||
Returns an array reference of the revision objects of this asset, sorted by revision date in descending
|
Returns an array reference of the revision objects of this asset, sorted by revision date in descending
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue