-
Notifications
You must be signed in to change notification settings - Fork 0
davidsalazar/tagcloud
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Sample Usage: $options = array( // these values are all optional 'min_font_em' => 1, 'max_font_em' => 3, 'base_url' => '/tag/' ); $tagger = new Tag_Cloud($options); // First two values for each array must follow this format. [0] = tag count, [1] = tag name $tags = array( array(20, 'star trek'), array(10, 'stern'), array(1, 'star wars'), array(10, 'conan') ); $tagger->cloud($tags); // This returns links with font-sizes ranging from the min and max font em specified. Sample Ouput: <a href="base_url/tag_name" style="font-size: 1.2em;">tag_name</a>
About
A class for creating tag clouds in php.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published