1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-19 11:45:25 +01:00
openstamanager/modules/stampe/actions.php
2020-02-24 15:37:27 +01:00

16 lines
321 B
PHP
Executable File

<?php
include_once __DIR__.'/../../core.php';
switch (post('op')) {
case 'update':
$print->title = post('title');
$print->filename = post('filename');
$print->options = post('options');
$print->save();
flash()->info(tr('Modifiche salvate correttamente'));
break;
}