File size: 575B
<?php
$plugins->add_hook("index","textmaker_add");
function textmaker_info(){
return array(
"name" => "Make Change Text Style",
"author" => "kopilakash",
"author_site" => "http://feniwap.com",
"description" => "Its Kind of make Change Your Text in many style .",
);
}
function textmaker_add($value){
global $dir,$set;
// here you can edit the html code
if(!$dir)
$value .="<div class='content'><a href='".$set->url."/textmaker'><img src='$set->url/".MAI_TPL."style/images/gdir.gif' alt='.'/> Make Change Text Style</a></div>";
return $value;
}
?>