'.__('You don\'t have enough privileges to access this area!').''); } /* RECORD OPERATION */ if (isset($_POST['saveData']) AND $can_read AND $can_write) { $authorName = trim(strip_tags($_POST['authorName'])); // check form validity if (empty($authorName)) { utility::jsAlert(__('Author name can\'t be empty')); exit(); } else { $data['author_name'] = $dbs->escape_string($authorName); $author_year = $dbs->escape_string(trim($_POST['authorYear'])); if ($author_year) { $data['author_year'] = $author_year; } $data['authority_type'] = trim($dbs->escape_string(strip_tags($_POST['authorityType']))); $data['auth_list'] = trim($dbs->escape_string(strip_tags($_POST['authList']))); $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_author', $data, 'author_id='.$updateRecordID); if ($update) { utility::jsAlert(__('Author Data Successfully Updated')); echo ''; } else { utility::jsAlert(__('Author 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_author', $data); if ($insert) { utility::jsAlert(__('New Author Data Successfully Saved')); echo ''; } else { utility::jsAlert(__('Author 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_author', 'author_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 END */ /* 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_author WHERE author_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['author_name']; // submit button attribute $form->submit_button_attr = 'name="saveData" value="'.__('Update').'" class="button"'; } /* Form Element(s) */ // author name $form->addTextField('text', 'authorName', __('Author Name').'*', $rec_d['author_name'], 'style="width: 60%;"'); // author year $form->addTextField('text', 'authorYear', __('Author Birth Year'), $rec_d['author_year'], 'style="width: 60%;"'); // authority type foreach ($sysconf['authority_type'] as $auth_type_id => $auth_type) { $auth_type_options[] = array($auth_type_id, $auth_type); } $form->addSelectList('authorityType', __('Authority Type'), $auth_type_options, $rec_d['authority_type']); // authority list $form->addTextField('text', 'authList', __('Authority Files'), $rec_d['auth_list'], 'style="width: 30%;"'); // edit mode messagge if ($form->edit_mode) { echo '
'.__('You are going to edit author data').' : '.$rec_d['author_name'].'
'.__('Last Update').$rec_d['last_update'].'
'; //mfc } // print out the form object echo $form->printOut(); } else { /* AUTHOR LIST */ // table spec $sql_criteria = 'a.author_id > 1'; if (isset($_GET['type']) && $_GET['type'] == 'orphaned') { $table_spec = 'mst_author AS a LEFT JOIN biblio_author AS ba ON a.author_id=ba.author_id'; $sql_criteria = 'ba.biblio_id IS NULL OR ba.author_id IS NULL'; } else { $table_spec = 'mst_author AS a'; } // authority field num $auth_type_fld = 2; // create datagrid $datagrid = new simbio_datagrid(); if ($can_read AND $can_write) { $auth_type_fld = 3; $datagrid->setSQLColumn('a.author_id', 'a.author_name AS \''.__('Author Name').'\'', 'a.author_year AS \''.__('Author Year').'\'', 'a.authority_type AS \''.__('Authority Type').'\'', 'a.auth_list AS \''.__('Authority Files').'\'', 'a.last_update AS \''.__('Last Update').'\''); } else { $datagrid->setSQLColumn('a.author_name AS \''.__('Author Name').'\'', 'a.author_year AS \''.__('Author Year').'\'', 'a.authority_type AS \''.__('Authority Type').'\'', 'a.auth_list AS \''.__('Authority Files').'\'', 'a.last_update AS \''.__('Last Update').'\''); } $datagrid->setSQLorder('author_name ASC'); // change the record order if (isset($_GET['fld']) AND isset($_GET['dir'])) { $datagrid->setSQLorder("'".urldecode($_GET['fld'])."' ".$dbs->escape_string($_GET['dir'])); } // is there any search if (isset($_GET['keywords']) AND $_GET['keywords']) { $keywords = $dbs->escape_string($_GET['keywords']); $sql_criteria .= " AND a.author_name LIKE '%$keywords%'"; } $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']; // callback function to change value of authority type function callbackAuthorType($obj_db, $rec_d) { global $sysconf, $auth_type_fld; return $sysconf['authority_type'][$rec_d[$auth_type_fld]]; } // modify column content $datagrid->modifyColumnContent($auth_type_fld, 'callback{callbackAuthorType}'); // 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']) { $msg = str_replace('{result->num_rows}', $datagrid->num_rows, __('Found {result->num_rows} from your keywords')); //mfc echo '
'.$msg.' : "'.$_GET['keywords'].'"
'; } echo $datagrid_result; } /* main content end */