芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/app/controllers/admin/AdminCodes.php
set_default_order_by('code_id', $this->user->preferences->default_order_type ?? settings()->main->default_order_type); $filters->set_default_results_per_page($this->user->preferences->default_results_per_page ?? settings()->main->default_results_per_page); /* Prepare the paginator */ $total_rows = database()->query("SELECT COUNT(*) AS `total` FROM `codes` WHERE 1 = 1 {$filters->get_sql_where()}")->fetch_object()->total ?? 0; $paginator = (new \Altum\Paginator($total_rows, $filters->get_results_per_page(), $_GET['page'] ?? 1, url('admin/codes?' . $filters->get_get() . '&page=%d'))); /* Get the data */ $codes = []; $codes_result = database()->query(" SELECT * FROM `codes` WHERE 1 = 1 {$filters->get_sql_where()} {$filters->get_sql_order_by()} {$paginator->get_sql_limit()} "); while($row = $codes_result->fetch_object()) { $codes[] = $row; } /* Export handler */ process_export_json($codes, 'include', ['code_id', 'name', 'type', 'days', 'code', 'discount', 'quantity', 'redeemed', 'datetime']); process_export_csv($codes, 'include', ['code_id', 'name', 'type', 'days', 'code', 'discount', 'quantity', 'redeemed', 'datetime']); /* Prepare the pagination view */ $pagination = (new \Altum\View('partials/admin_pagination', (array) $this))->run(['paginator' => $paginator]); /* Main View */ $data = [ 'codes' => $codes, 'paginator' => $paginator, 'pagination' => $pagination, 'filters' => $filters ]; $view = new \Altum\View('admin/codes/index', (array) $this); $this->add_view_content('content', $view->run($data)); } public function bulk() { /* Check for any errors */ if(empty($_POST)) { redirect('admin/codes'); } if(empty($_POST['selected'])) { redirect('admin/codes'); } if(!isset($_POST['type'])) { redirect('admin/codes'); } //ALTUMCODE:DEMO if(DEMO) Alerts::add_error('This command is blocked on the demo.'); if(!\Altum\Csrf::check()) { Alerts::add_error(l('global.error_message.invalid_csrf_token')); } if(!Alerts::has_field_errors() && !Alerts::has_errors()) { set_time_limit(0); switch($_POST['type']) { case 'delete': foreach($_POST['selected'] as $id) { db()->where('code_id', $id)->delete('codes'); } break; } /* Set a nice success message */ Alerts::add_success(l('bulk_delete_modal.success_message')); } redirect('admin/codes'); } public function delete() { $code_id = isset($this->params[0]) ? (int) $this->params[0] : null; //ALTUMCODE:DEMO if(DEMO) Alerts::add_error('This command is blocked on the demo.'); if(!\Altum\Csrf::check('global_token')) { Alerts::add_error(l('global.error_message.invalid_csrf_token')); } if(!$code = db()->where('code_id', $code_id)->getOne('codes', ['code_id', 'code'])) { redirect('admin/codes'); } if(!Alerts::has_field_errors() && !Alerts::has_errors()) { /* Delete the code */ db()->where('code_id', $code_id)->delete('codes'); /* Set a nice success message */ Alerts::add_success(sprintf(l('global.success_message.delete1'), '
' . $code->code . '
')); } redirect('admin/codes'); } }