コード例 #1
0
ファイル: printers.php プロジェクト: mrjwc/printmaster
    $models = Model::getSimple($db);
    include 'views/printers/addedit.php';
}
/**
 * Edit a printer
 */
if ($action == 'edit') {
    // Get ID
    $id = fRequest::get('id', 'integer');
    try {
        // Get consumable via ID
        $p = new Printer($id);
        if (fRequest::isPost()) {
            // Update printer object from POST data and save
            $p->populate();
            $p->store();
            // Messaging
            fMessaging::create('affected', fURL::get(), $p->getId());
            fMessaging::create('success', fURL::get(), 'The printer ' . $p->getName() . ' was successfully updated.');
            fURL::redirect(fURL::get());
        }
    } catch (fNotFoundException $e) {
        fMessaging::create('error', fURL::get(), 'The consumable requested, ID ' . $id . ', could not be found.');
        fURL::redirect(fURL::get());
    } catch (fExpectedException $e) {
        fMessaging::create('error', fURL::get(), $e->getMessage());
    }
    // Get manufacturers also for drop-down box
    #$manufacturers = fRecordSet::build('Manufacturer', NULL, array('name' => 'asc'));
    // Get list of models
    $models = Model::getSimple($db);