..index page for the suite. It's very easy because the only thing you need to do is change the content of default.php. I don't want to create something like hello world or something..
THC xConverter is a tool that makes use of (php) functions in order to calculate, fetch, convert and encrypt data
<?php
/* RSS FEED: YOUTUBE */
if(!defined('IN_SCRIPT')){
exit;
}
${$_RSS[$sKey]['template_var']} .= " <div class=\"cc_summary emboss borderr5 border1pxtrans pad5 edgeglow\">\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"embosshdrnocenter border1pxtrans pad5\">".$_RSS[$sKey]['title']."</div>\n";
for($x=0;$x<$_RSS[$sKey]['limit'];$x++){
// no data then move along
if(!isset($rs['items'][$x])){
continue;
}
// extract image from description
$aImage = array();
@preg_match('/http:\/\/[a-z0-9\-\.\/]+\.jpg/Ui',$rs['items'][$x]['description'],$aImage);
// template title
${$_RSS[$sKey]['template_var']} .= " <div class=\"cc_record\">\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"flt pad3\"><a href=\"".$rs['items'][$x]['link']."\"><img src=\"".$aImage[0]."\" border=\"0\" class=\"pad10\" width=\"100\" /></a></div>\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"flt pad3 w375\"><a href=\"".$rs['items'][$x]['link']."\">".$rs['items'][$x]['title']."</a><br />".substr(strip_tags(str_replace("&#39;","'",str_replace("<","<",str_replace(">",">",str_replace($rs['items'][$x]['title'],"",$rs['items'][$x]['description']))))),0,150)."...<div><b>source: <a href=\"http://www.youtube.com\">youtube</a></b></div></div>\n";
${$_RSS[$sKey]['template_var']} .= " </div>\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"clear\"></div>\n";
}
${$_RSS[$sKey]['template_var']} .= " </div>\n";
?>