12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- namespace app\admin\controller\routine;
- use Throwable;
- use app\common\controller\Backend;
- use app\common\model\Attachment as AttachmentModel;
- class Attachment extends Backend
- {
- /**
- * @var object
- * @phpstan-var AttachmentModel
- */
- protected object $model;
- protected string|array $quickSearchField = 'name';
- protected array $withJoinTable = ['admin', 'user'];
- protected string|array $defaultSortField = 'last_upload_time,desc';
- public function initialize(): void
- {
- parent::initialize();
- $this->model = new AttachmentModel();
- }
- /**
- * 删除
- * @param array $ids
- * @throws Throwable
- */
- public function del(array $ids = []): void
- {
- if (!$this->request->isDelete() || !$ids) {
- $this->error(__('Parameter error'));
- }
- $where = [];
- $dataLimitAdminIds = $this->getDataLimitAdminIds();
- if ($dataLimitAdminIds) {
- $where[] = [$this->dataLimitField, 'in', $dataLimitAdminIds];
- }
- $pk = $this->model->getPk();
- $where[] = [$pk, 'in', $ids];
- $count = 0;
- $data = $this->model->where($where)->select();
- try {
- foreach ($data as $v) {
- $count += $v->delete();
- }
- } catch (Throwable $e) {
- $this->error(__('%d records and files have been deleted', [$count]) . $e->getMessage());
- }
- if ($count) {
- $this->success(__('%d records and files have been deleted', [$count]));
- } else {
- $this->error(__('No rows were deleted'));
- }
- }
- }
|