<?php
/**
* Tags value
*
*/
class TagsConfig {
static public $tagsValue = array(
'test1' => "<b>this is a first tag</b>",
'test2' => "<b>this is a second tag</b>",
'test3' => "<b>this is a third tag</b>",
'users' => '<b>usertag</b>',
);
}
?>