Init
This commit is contained in:
56
simpla/CallbacksAdmin.php
Normal file
56
simpla/CallbacksAdmin.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?PHP
|
||||
|
||||
require_once('api/Simpla.php');
|
||||
|
||||
########################################
|
||||
class CallbacksAdmin extends Simpla
|
||||
{
|
||||
|
||||
|
||||
function fetch()
|
||||
{
|
||||
|
||||
|
||||
// Обработка действий
|
||||
if($this->request->method('post'))
|
||||
{
|
||||
// Действия с выбранными
|
||||
$ids = $this->request->post('check');
|
||||
if(!empty($ids))
|
||||
switch($this->request->post('action'))
|
||||
{
|
||||
case 'delete':
|
||||
{
|
||||
foreach($ids as $id)
|
||||
$this->callbacks->delete_callback($id);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Отображение
|
||||
$filter = array();
|
||||
$filter['page'] = max(1, $this->request->get('page', 'integer'));
|
||||
$filter['limit'] = 40;
|
||||
|
||||
|
||||
//$callbacks_count = $this->callbacks->count_callbacks($filter);
|
||||
// Показать все страницы сразу
|
||||
if($this->request->get('page') == 'all')
|
||||
$filter['limit'] = $callbacks_count;
|
||||
|
||||
$callbacks = $this->callbacks->get_callbacks($filter, true);
|
||||
|
||||
$this->design->assign('pages_count', ceil($callbacks_count/$filter['limit']));
|
||||
$this->design->assign('current_page', $filter['page']);
|
||||
|
||||
$this->design->assign('callbacks', $callbacks);
|
||||
$this->design->assign('callbacks_count', $callbacks_count);
|
||||
|
||||
return $this->design->fetch('callbacks.tpl');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user