예제 #1
0
 } elseif ($_POST['me_action'] == 'UPDATEDESIGN') {
     $type = tep_db_prepare_input($_POST['type']);
     $cat = tep_db_prepare_input($_POST['cat']);
     $procat = tep_db_prepare_input($_POST['procat']);
     $probra = tep_db_prepare_input($_POST['probra']);
     $name = tep_db_prepare_input($_POST['name']);
     $price = tep_db_prepare_input($_POST['price']);
     $products_id = tep_db_prepare_input($_POST['products_id']);
     $styles_id_L = tep_db_prepare_input($_POST['styles_id_L']);
     $styles_id_F = tep_db_prepare_input($_POST['styles_id_F']);
     $structure_id = tep_db_prepare_input($_POST['structure_id']);
     $content_id = tep_db_prepare_input($_POST['content_id']);
     if ($products_id == '') {
         $products_id = null;
     }
     $design->update($type, $cat, $procat, $probra, $name, $price, $products_id, $styles_id_L, $styles_id_F, $structure_id, $content_id);
     $messagebox->add('Updated Design detail data is successfully saved', 'green');
     $rowListReload = true;
     header("Location: ?open=designs-detail&id={$design->id}" . ($hidemenuscript == '' ? '' : '&hidemenu=true'));
 } elseif ($_POST['me_action'] == 'UPDATESOURCEOFIDEAS') {
     $notes = tep_db_prepare_input($_POST['notes']);
     tep_db_perform('designs', array('source_of_ideas' => $notes), 'update', "designs_id='{$design->id}'");
     $result = array();
     $result['notes'] = $notes;
     ajaxReturn($result);
     exit;
 } elseif ($_POST['me_action'] == 'UPDATEDESIGNSDESCRIPTION') {
     $notes2 = tep_db_prepare_input($_POST['notes2']);
     tep_db_perform('designs', array('designs_description' => $notes2), 'update', "designs_id='{$design->id}'");
     $result = array();
     $result['notes2'] = $notes2;