alexander-suter / yii2-tag-cloud
Tagcloud for Yii2
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 4 736
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 5
Type:yii2-extension
Requires
- yiisoft/yii2: 2.0.*
This package is not auto-updated.
Last update: 2020-08-07 19:58:24 UTC
README
Yii2 extension. Tag Cloud.
Installation
The preferred way to install this extension is through composer.
To install, either run
$ php composer.phar require alexander-suter/yii2-tag-cloud "*"
or add
"alexander-suter/yii2-tag-cloud": "*"
to the require
section of your composer.json
file.
Usage
echo TagCloud::widget([
'beginColor' => '00089A',
'endColor' => 'A3AEFF',
'minFontSize' => 8,
'maxFontSize' => 15,
'displayWeight' => false,
'tags' => [
"MVC" => ['weight' => 2],
"PHP" => ['weight' => 9, 'url' => 'http://php.net'],
"MySQL" => ['weight' => 8, 'url' => 'http://mysql.com'],
"jQuery" => ['weight' => 6, 'url' => 'http://jquery.com'],
"SQL" => ['weight' => 9],
"C#" => ['weight' => 2)],
],
'options' => ['style' => 'word-wrap: break-word;']
]);