Package Data | |
---|---|
Maintainer Username: | dwightwatson |
Maintainer Contact: | dwight@studiousapp.com (Dwight Watson) |
Package Create Date: | 2014-07-06 |
Package Last Update: | 2017-09-07 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-09 15:02:39 |
Package Statistics | |
---|---|
Total Downloads: | 1,361 |
Monthly Downloads: | 1 |
Daily Downloads: | 1 |
Total Stars: | 6 |
Total Watchers: | 2 |
Total Forks: | 5 |
Total Open Issues: | 1 |
Taggly is a modern port of the old CodeIgniter Taggly library by Gavin Vickery. Packaged with a service provider and facade for Laravel, this package is totally framework agnostic and will help you to generate tag clouds just like the cool kids. Note, styling the cloud is up to you!
Simply add the package to your composer.json
file and run composer update
.
"watson/taggly": "1.0.*"
If you're using Laravel, be sure to register the service provider and facade if you would like to use those.
Under providers:
'Watson\Taggly\TagglyServiceProvider',
And under aliases:
'Tag' => 'Watson\Taggly\TagFacade',
First, let's look at what makes up a tag in Taggly. A tag is made up of 3 things:
You can either use an associative array or a Watson\Taggly\Tag
object to represent a single tag. Here is how you represent a tag as an associative array:
$tag = array('tag' => 'Laravel', 'count' => 4, 'url' => 'https://www.laravel.com');
Simply passing this array to a new Tag object to use an object instead.
$tag = new Watson\Taggly\Tag($tag);
Once you have a collection of tags, you can pass them to Taggly and generate a cloud.
$taggly = new Watson\Taggly\Taggly;
$taggly->setTags([$tag1, $tag2, ...]);
echo $taggly->cloud();
You can also just pass the tags to the cloud()
method, which is great if you're using the facade too.
Tag::cloud($tags);