mirror of
https://github.com/torrentpier/torrentpier.git
synced 2024-11-23 22:10:34 -08:00
22 lines
558 B
PHP
22 lines
558 B
PHP
<?php
|
||
/**
|
||
* TorrentPier – Bull-powered BitTorrent tracker engine
|
||
*
|
||
* @copyright Copyright (c) 2005-2024 TorrentPier (https://torrentpier.com)
|
||
* @link https://github.com/torrentpier/torrentpier for the canonical source repository
|
||
* @license https://github.com/torrentpier/torrentpier/blob/master/LICENSE MIT License
|
||
*/
|
||
|
||
if (!defined('BB_ROOT')) {
|
||
die(basename(__FILE__));
|
||
}
|
||
|
||
$sql = "SELECT * FROM " . BB_RANKS;
|
||
$ranks = [];
|
||
|
||
foreach (DB()->fetch_rowset($sql) as $row) {
|
||
$ranks[$row['rank_id']] = $row;
|
||
}
|
||
|
||
$this->store('ranks', $ranks);
|