HTML::TagCloud::Sortable - A sortable HTML tag cloud
my $cloud = HTML::TagCloud::Sortable->new;
# old HTML::TagCloud style
$cloud->add( 'foo', $url, 10 );
# new HTML::TagCloud::Sortable style
$cloud->add( { name => 'foo', url => $url, count => 10, bar => 'baz' } );
# old style
print $cloud->html( 4 );
# new style
print $cloud->html( { limit => 4, sort_field => 'count', sort_type => 'numeric' } );
HTML::TagCloud::Sortable is an API-compatible subclass of the HTML::TagCloud manpage. However, by using a different API, you can gain two features:
An overridden construtor. Takes the same arguments as the HTML::TagCloud manpage.
Adds the hashref of data to the list of tags. NB: Insertion order is
maintained. At the minimum, you will need to supply name, url and
count key-value pairs.
This method is used by html to get the relevant list of tags for display.
Options include:
The default sort order is alphabetically by tag name. You can pass a sub reference
to sort_field to do custom sorting. Example:
$cloud->html( { sort_field =>
sub { $_[ 1 ]->{ count } <=> $_[ 0 ]->{ count }; }
} );
Passing undef to sort_field will maintain insertion order.
Brian Cassidy <bricas@cpan.org>
Copyright 2007 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.