Welcome Guest, Not a member yet? Register   Sign In
Taggly, a tag-cloud library
#1

[eluser]Gavin Vickery[/eluser]
Hey Everybody,

I've been working on one of my first libraries for CI called Taggly. Taggly is used to easily create tag-clouds. You can also control how your tag-cloud is created by setting configuration options.

You can download Taggly, along with its user guide here:
Download Taggly

============================================

What is a Tag-Cloud?
A tag-cloud is a collection of text links with varying size (and sometimes color) based on their popularity. Sites such as Flickr, Delicious and Tag-A-Cloud use this concept.

What does it look like?
See Taggly in action

What is the syntax?
The syntax in its very basic form is this:
Code:
$myArray = array (
    array(10, 'PHP', 'http://php.com'),
    array(32, 'MySQL', 'http://mysql.com'),
    array(5, 'CSS', 'http://css.com')
);

echo $this->taggly->cloud($myArray);

You can get more complex by passing configuration parameters:
Code:
$configArray = array (
    'min_font' => 20,
    'max_font' => 60,
    'html_start' => '<li>',
    'html_end' => '</li>',
    'shuffle' => TRUE,
    'class' => 'my_css_class'
);

echo $this->taggly->cloud($myArray, $configArray);

Taggly Output
Taggly creates and returns links with defined sizes based on the data given in your array.

An example output:
Code:
<a style="font-size: 21px" class="taggly" href="http://example.com" title="Hue">Hue</a>
<a style="font-size: 18px" class="taggly" href="http://example.com" title="Image Ready">Image Ready</a>
<a style="font-size: 33px" class="taggly" href="http://example.com" title="Background">Background</a>
<a style="font-size: 33px" class="taggly" href="http://example.com" title="CodeIgniter">CodeIgniter</a>
<a style="font-size: 16px" class="taggly" href="http://example.com" title="Encode">Encode</a>
<a style="font-size: 23px" class="taggly" href="http://example.com" title="Depth">Depth</a>
<a style="font-size: 29px" class="taggly" href="http://example.com" title="Grafix">Grafix</a>
<a style="font-size: 18px" class="taggly" href="http://example.com" title="Adobe">Adobe</a>

You can find more information in the User Guide included in the Taggly download package.


Messages In This Thread
Taggly, a tag-cloud library - by El Forum - 11-06-2007, 04:45 PM
Taggly, a tag-cloud library - by El Forum - 11-06-2007, 05:27 PM
Taggly, a tag-cloud library - by El Forum - 11-06-2007, 10:09 PM
Taggly, a tag-cloud library - by El Forum - 11-06-2007, 10:54 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 05:09 AM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 09:48 AM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 10:21 AM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 03:32 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 03:34 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 04:30 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 04:37 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 05:16 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 05:50 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 11:25 PM
Taggly, a tag-cloud library - by El Forum - 11-07-2007, 11:48 PM
Taggly, a tag-cloud library - by El Forum - 11-08-2007, 09:58 AM
Taggly, a tag-cloud library - by El Forum - 11-08-2007, 10:23 AM
Taggly, a tag-cloud library - by El Forum - 11-08-2007, 10:36 AM
Taggly, a tag-cloud library - by El Forum - 01-25-2008, 12:18 PM
Taggly, a tag-cloud library - by El Forum - 01-25-2008, 02:36 PM
Taggly, a tag-cloud library - by El Forum - 01-26-2008, 03:04 AM
Taggly, a tag-cloud library - by El Forum - 01-26-2008, 06:39 AM
Taggly, a tag-cloud library - by El Forum - 01-26-2008, 10:32 AM
Taggly, a tag-cloud library - by El Forum - 01-26-2008, 12:49 PM
Taggly, a tag-cloud library - by El Forum - 01-26-2008, 01:45 PM
Taggly, a tag-cloud library - by El Forum - 01-26-2008, 02:01 PM
Taggly, a tag-cloud library - by El Forum - 01-26-2008, 09:41 PM
Taggly, a tag-cloud library - by El Forum - 01-28-2008, 03:12 PM
Taggly, a tag-cloud library - by El Forum - 01-28-2008, 04:27 PM
Taggly, a tag-cloud library - by El Forum - 01-28-2008, 04:56 PM
Taggly, a tag-cloud library - by El Forum - 04-23-2008, 03:43 AM
Taggly, a tag-cloud library - by El Forum - 11-28-2008, 10:26 AM
Taggly, a tag-cloud library - by El Forum - 11-28-2008, 10:29 AM
Taggly, a tag-cloud library - by El Forum - 06-09-2010, 04:24 AM
Taggly, a tag-cloud library - by El Forum - 06-09-2010, 05:05 AM
Taggly, a tag-cloud library - by El Forum - 06-09-2010, 08:06 AM
Taggly, a tag-cloud library - by El Forum - 08-05-2010, 10:54 AM
Taggly, a tag-cloud library - by El Forum - 11-29-2010, 04:28 AM



Theme © iAndrew 2016 - Forum software by © MyBB