/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

  1. <?php
  2. if (!defined('BB_ROOT')) die(basename(__FILE__));
  3. $ranks = array();
  4. $sql = "SELECT rank_id, rank_title, rank_image, rank_style FROM ". BB_RANKS;
  5. foreach (DB()->fetch_rowset($sql) as $row)
  6. {
  7. $ranks[$row['rank_id']] = $row;
  8. }
  9. $this->store('ranks', $ranks);