mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 00:21:59 +01:00
39fc249596
Signed-off-by: Janos SUTO <sj@acts.hu>
17 lines
417 B
PHP
17 lines
417 B
PHP
<?php
|
|
|
|
class ModelAuditRemoval extends Model {
|
|
|
|
public function get_pending_removals($page = 0, $page_len = 0) {
|
|
$limit = '';
|
|
$from = (int)$page * (int)$page_len;
|
|
|
|
if($page_len > 0) { $limit = " LIMIT " . (int)$from . ", " . (int)$page_len; }
|
|
|
|
$query = $this->db->query("SELECT * FROM " . TABLE_DELETED . " WHERE deleted=-1 ORDER BY date1 DESC $limit");
|
|
|
|
return $query->rows;
|
|
}
|
|
|
|
}
|