openstamanager/modules/stampe/actions.php

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;
}