예제 #1
0
파일: torrents.php 프로젝트: Kufirc/Gazelle
				<li>Torrent groups: <?php 
echo $NumGroups;
?>
</li>
				<li>Artists: <?php 
echo count($ArtistCount);
?>
</li>
			</ul>
		</div>
		<div class="box box_tags">
			<div class="head"><strong>Top Tags</strong></div>
			<div class="pad">
				<ol style="padding-left: 5px;">
<?php 
Tags::format_top(5);
?>
				</ol>
			</div>
		</div>
		<div class="box box_artists">
			<div class="head"><strong>Top Artists</strong></div>
			<div class="pad">
<?php 
$Indent = "\t\t\t\t";
if (count($ArtistCount) > 0) {
    echo "{$Indent}<ol style=\"padding-left: 5px;\">\n";
    uasort($ArtistCount, 'compare');
    $i = 0;
    foreach ($ArtistCount as $ID => $Artist) {
        $i++;
예제 #2
0
 user<?php 
echo count($UserAdditions) > 1 ? 's' : '';
?>
</li>
				<li>Last updated: <?php 
echo time_diff($Updated);
?>
</li>
			</ul>
		</div>
		<div class="box box_tags">
			<div class="head"><strong>Top Tags</strong></div>
			<div class="pad">
				<ol style="padding-left: 5px;">
<?php 
Tags::format_top(5, 'collages.php?action=search&amp;tags=');
?>
				</ol>
			</div>
		</div>
<?php 
if (!empty($TopArtists)) {
    ?>
		<div class="box box_artists">
			<div class="head"><strong>Top Artists</strong></div>
			<div class="pad">
				<ol style="padding-left: 5px;">
<?php 
    uasort($TopArtists, 'compare');
    $i = 0;
    foreach ($TopArtists as $ID => $Artist) {
예제 #3
0
파일: artist.php 프로젝트: Kufirc/Gazelle
    ?>
>Prefer Bonus Tracks</option>
					</select>
					<input type="submit" style="width: 210px;" value="Download" />
				</form>
			</div>
		</div>
<?php 
}
//if (check_perms('zip_downloader'))
?>
		<div class="box box_tags">
			<div class="head"><strong>Tags</strong></div>
			<ul class="stats nobullet">
<?php 
Tags::format_top(50, 'torrents.php?taglist=', $Name);
?>
			</ul>
		</div>
<?php 
// Stats
?>
		<div class="box box_info box_statistics_artist">
			<div class="head"><strong>Statistics</strong></div>
			<ul class="stats nobullet">
				<li>Number of groups: <?php 
echo number_format($NumGroups);
?>
</li>
				<li>Number of torrents: <?php 
echo number_format($NumTorrents);