banner_helper.php 280 B

1234567891011
  1. <?php
  2. class banner_helper {
  3. static function getBanners($zone='zone1') {
  4. $zone = Model::escapeString($zone);
  5. $result = Model::query("select * from kreatin_banners where banner_zone='".$zone."' and banner_status='1';");
  6. return $result;
  7. }
  8. }