'.__('You don\'t have enough privileges to access this area!').''); } /* RECORD OPERATION */ if (isset($_POST['saveData']) AND $can_read AND $can_write) { $publisherName = trim(strip_tags($_POST['publisherName'])); // check form validity if (empty($publisherName)) { utility::jsAlert(__('Publisher Name can\'t be empty')); //mfc exit(); } else { $data['publisher_name'] = $dbs->escape_string($publisherName); $data['input_date'] = date('Y-m-d'); $data['last_update'] = date('Y-m-d'); // create sql op object $sql_op = new simbio_dbop($dbs); if (isset($_POST['updateRecordID'])) { /* UPDATE RECORD MODE */ // remove input date unset($data['input_date']); // filter update record ID $updateRecordID = (integer)$_POST['updateRecordID']; // update the data $update = $sql_op->update('mst_publisher', $data, 'publisher_id='.$updateRecordID); if ($update) { utility::jsAlert(__('Publisher Data Successfully Updated')); echo ''; } else { utility::jsAlert(__('PUBLISHER Data FAILED to Updated. Please Contact System Administrator')."\nDEBUG : ".$sql_op->error); } exit(); } else { /* INSERT RECORD MODE */ // insert the data $insert = $sql_op->insert('mst_publisher', $data); if ($insert) { utility::jsAlert(__('New Publisher Data Successfully Saved')); echo ''; } else { utility::jsAlert(__('Publisher Data FAILED to Save. Please Contact System Administrator')."\nDEBUG : ".$sql_op->error); } exit(); } } exit(); } else if (isset($_POST['itemID']) AND !empty($_POST['itemID']) AND isset($_POST['itemAction'])) { if (!($can_read AND $can_write)) { die(); } /* DATA DELETION PROCESS */ $sql_op = new simbio_dbop($dbs); $failed_array = array(); $error_num = 0; if (!is_array($_POST['itemID'])) { // make an array $_POST['itemID'] = array((integer)$_POST['itemID']); } // loop array foreach ($_POST['itemID'] as $itemID) { $itemID = (integer)$itemID; if (!$sql_op->delete('mst_publisher', 'publisher_id='.$itemID)) { $error_num++; } } // error alerting if ($error_num == 0) { utility::jsAlert(__('All Data Successfully Deleted')); echo ''; } else { utility::jsAlert(__('Some or All Data NOT deleted successfully!\nPlease contact system administrator')); echo ''; } exit(); } /* RECORD OPERATION */ /* search form */ ?> '.__('You don\'t have enough privileges to access this area!').''); } /* RECORD FORM */ $itemID = (integer)isset($_POST['itemID'])?$_POST['itemID']:0; $rec_q = $dbs->query('SELECT * FROM mst_publisher WHERE publisher_id='.$itemID); $rec_d = $rec_q->fetch_assoc(); // create new instance $form = new simbio_form_table_AJAX('mainForm', $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'], 'post'); $form->submit_button_attr = 'name="saveData" value="'.__('Save').'" class="button"'; // form table attributes $form->table_attr = 'align="center" id="dataList" cellpadding="5" cellspacing="0"'; $form->table_header_attr = 'class="alterCell" style="font-weight: bold;"'; $form->table_content_attr = 'class="alterCell2"'; // edit mode flag set if ($rec_q->num_rows > 0) { $form->edit_mode = true; // record ID for delete process $form->record_id = $itemID; // form record title $form->record_title = $rec_d['publisher_name']; // submit button attribute $form->submit_button_attr = 'name="saveData" value="'.__('Update').'" class="button"'; } /* Form Element(s) */ // publisher name $form->addTextField('text', 'publisherName', __('Publisher Name').'*', $rec_d['publisher_name'], 'style="width: 60%;"'); // edit mode messagge if ($form->edit_mode) { echo '
'.__('You are going to edit publisher data').' : '.$rec_d['publisher_name'].'
'.__('Last Update').$rec_d['last_update'] //mfc .'
'."\n"; } // print out the form object echo $form->printOut(); } else { /* PUBLISHER LIST */ // table spec #$sql_criteria = 'b.publisher_id > 1'; if (isset($_GET['type']) && $_GET['type'] == 'orphaned') { $table_spec = 'mst_publisher AS p LEFT JOIN biblio AS b ON p.publisher_id = b.publisher_id'; $sql_criteria = 'b.publisher_id IS NULL'; } else { $table_spec = 'mst_publisher AS p'; } // create datagrid $datagrid = new simbio_datagrid(); if ($can_read AND $can_write) { $datagrid->setSQLColumn('p.publisher_id', 'p.publisher_name AS \''.__('Publisher Name').'\'', 'p.last_update AS \''.__('Last Update').'\''); } else { // TODO: publisher_place was dropped in stable7...? $datagrid->setSQLColumn('p.publisher_name AS \''.__('Publisher Name').'\'', 'p.publisher_place AS \''.lang_mod_masterfile_publisher_form_field_place.'\'', 'p.last_update AS \''.__('Last Update').'\''); } $datagrid->setSQLorder('publisher_name ASC'); // is there any search if (isset($_GET['keywords']) AND $_GET['keywords']) { $keywords = $dbs->escape_string($_GET['keywords']); if (isset($sql_criteria)) { $sql_criteria .= " AND p.publisher_name LIKE '%$keywords%'"; } else { $sql_criteria = " p.publisher_name LIKE '%$keywords%'"; } } if (isset($sql_criteria) AND $sql_criteria <> "") { $datagrid->setSQLCriteria($sql_criteria); } // set table and table header attributes $datagrid->table_attr = 'align="center" id="dataList" cellpadding="5" cellspacing="0"'; $datagrid->table_header_attr = 'class="dataListHeader" style="font-weight: bold;"'; // set delete proccess URL $datagrid->chbox_form_URL = $_SERVER['PHP_SELF']; // put the result into variable $datagrid_result = $datagrid->createDataGrid($dbs, $table_spec, 20, ($can_read AND $can_write)); if (isset($_GET['keywords']) AND $_GET['keywords']) { echo ''; $msg = str_replace('{result->num_rows}', $datagrid->num_rows, __('Found {result->num_rows} from your keywords')); //mfc echo ''; echo '
'.$msg.' : "'.$_GET['keywords'].'"
'; } echo $datagrid_result; } /* main content end */