openstamanager/modules/checklists/actions.php

66 lines
1.5 KiB
PHP
Raw Normal View History

2019-07-29 13:16:55 +02:00
<?php
include_once __DIR__.'/../../core.php';
use Modules\Checklists\Checklist;
use Modules\Checklists\ChecklistItem;
switch (post('op')) {
case 'add':
$record = Checklist::build(post('name'));
$record->id_module = post('module') ?: null;
$record->id_plugin = post('plugin') ?: null;
$record->save();
$id_record = $record->id;
flash()->info(tr('Nuova checklist creata!'));
break;
case 'update':
$record->name = post('name');
$record->id_module = post('module') ?: null;
$record->id_plugin = post('plugin') ?: null;
$record->save();
flash()->info(tr('Informazioni salvate correttamente!'));
break;
case 'delete':
$record->delete();
flash()->info(tr('Checklist eliminata!'));
break;
case 'add_item':
$content = post('content');
$parent_id = post('parent') ?: null;
$item = ChecklistItem::build($record, $content, $parent_id);
flash()->info(tr('Nuova riga della checklist creata!'));
break;
case 'delete_item':
$item = ChecklistItem::find(post('check_id'));
$item->delete();
flash()->info(tr('Riga della checklist eliminata!'));
2019-07-30 16:50:10 +02:00
break;
case 'update_position':
2020-08-06 11:34:32 +02:00
$order = explode(',', post('order', true));
2019-07-30 16:50:10 +02:00
2020-08-06 11:34:32 +02:00
foreach ($order as $i => $id_riga) {
$dbo->query('UPDATE `zz_checklist_items` SET `order` = '.prepare($i).' WHERE id='.prepare($id_riga));
2019-07-30 16:50:10 +02:00
}
2019-07-29 13:16:55 +02:00
break;
}