Extensions
Extensions are small add-ons that add new functionality to . They can add anything from a toolbar button to a completely new feature. They allow the application to be customized to fit the personal needs of each user if they need additional features, while keeping small to download .
Top Rated Extensions
Ratings are based on feedback from people who use these extensions.
-
= '$currentver' AND `Rating` > '0' AND `approved` = 'YES' GROUP BY `Name` ORDER BY `Rating` DESC, `Name` ASC, TV.Version DESC";
$sql_result = mysql_query($sql, $connection) or trigger_error("MySQL Error ".mysql_errno().": ".mysql_error()."", E_USER_NOTICE);
while ($row = mysql_fetch_array($sql_result)) {
$r++;
$s++;
$id = $row["ID"];
$name = $row["Name"];
$description = $row["Description"];
$rating = $row["Rating"];
echo"
- ";
echo"$name, $rating stars
"; echo"$description"; echo" \n";
if ($r >= "5") {
break;
}
}
unset($usednames, $usedversions, $r, $s, $i);
?>
Most Popular Extensions
The most popular downloads over the last week.
-
= '$currentver' AND (`OSName` = '$OS' OR `OSName` = 'ALL') AND `downloadcount` > '0' AND `approved` = 'YES' ORDER BY `downloadcount` DESC ";
$sql_result = mysql_query($sql, $connection) or trigger_error("MySQL Error ".mysql_errno().": ".mysql_error()."", E_USER_NOTICE);
if (mysql_num_rows($sql_result)=="0") {
echo"
- No Popular Extensions \n"; } while ($row = mysql_fetch_array($sql_result)) { $i++; $id = $row["ID"]; $vid = $row["vID"]; $name = $row["Name"]; $description = $row["Description"]; $downloadcount = $row["downloadcount"]; $totaldownloads = $row["TotalDownloads"]; $typename="extensions"; if ($lastname == $name) { $i--; continue; } echo"
- ";
echo"$name, $downloadcount downloads
"; echo"$description"; echo" \n";
$lastname = $name;
if ($i >= "5") {
break;
}
}
?>
Newest Extensions
New and updated extensions. Subscribe to &type=E&list=newest">our RSS feed to be notified when new extensions are added.
-
= '$currentver' AND (`OSName` = '$OS' OR `OSName` = 'ALL') AND `approved` = 'YES' ORDER BY `DateAdded` DESC ";
$sql_result = mysql_query($sql, $connection) or trigger_error("MySQL Error ".mysql_errno().": ".mysql_error()."", E_USER_NOTICE);
if (mysql_num_rows($sql_result)=="0") {
echo"
- Nothing Recently Added \n"; } while ($row = mysql_fetch_array($sql_result)) { $i++; $id = $row["ID"]; $type = $row["Type"]; $name = $row["Name"]; $description = $row["Description"]; $version = $row["Version"]; $dateadded = $row["DateAdded"]; $dateadded = gmdate("F d, Y", strtotime("$dateadded")); //$dateupdated = gmdate("F d, Y g:i:sa T", $timestamp); $typename = "extensions"; if ($lastname == $name) { $i--; continue; } echo"
- ";
echo"$name $version, $dateadded
"; echo"$description"; echo" \n";
$lastname = $name;
if ($i >= "8") {
break;
}
}
?>