/upload/includes/datastore/build_ranks.php
http://torrentpier2.googlecode.com/ · PHP · 14 lines · 9 code · 5 blank · 0 comment · 1 complexity · cc04a4e533ccb6473786e65cde841a5a MD5 · raw file
- <?php
- if (!defined('BB_ROOT')) die(basename(__FILE__));
- $ranks = array();
- $sql = "SELECT rank_id, rank_title, rank_image, rank_style FROM ". BB_RANKS;
- foreach (DB()->fetch_rowset($sql) as $row)
- {
- $ranks[$row['rank_id']] = $row;
- }
- $this->store('ranks', $ranks);