blob: 06d98f8e30c4aaa777edc904a2bdafc14f526a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<?php
/* Foursquare Community Site
*
* Copyright (C) 2011 Foursquare Church.
*
* Developers: Jesse Morgan <jmorgan@foursquarestaff.com>
*
*/
require_once "base.inc.php";
class ModerationExceptions implements Iterator {
private $exceptions;
private $expos;
public function __construct() {
$this->exceptions = array();
}
// Iterator methods
public function rewind() {
$this->expos = 0;
}
public function current() {
return User::getById($this->exceptions[$this->expos]['user_id']);
}
public function key() {
$year = $this->exceptions[$this->expos]['year'];
$week = $this->exceptions[$this->expos]['week'] + 0;
return strtotime($year . 'W' .
($week < 10 ? '0' : '') . $week);
}
public function next() {
$this->expos++;
}
public function valid() {
return $this->expos < count($this->exceptions);
}
public function query() {
$db = getDatabase();
// Get the exceptions
$year = date('o');
$week = date('W');
$query = "SELECT * FROM moderator_exceptions"
. " WHERE year >= $year AND week >= $week"
. " ORDER BY year, week";
$this->exceptions = $db->fetchAssocRows($query);
$this->rewind();
}
}
?>
|