Example #1
0
function edit_subject_area($sas)
{
    $sa = retrieve_first_checked_record($sas);
    if ($sp === NULL) {
        infomsg("Please tick the record you want to edit");
    } else {
        addedit_subject_area($sa);
    }
}
Example #2
0
function edit_travel_course($fcs)
{
    $tc = retrieve_first_checked_record($fcs);
    if ($tc === NULL) {
        infomsg("Please tick the record you want to edit");
    } else {
        addedit_travel_course($tc);
    }
}
Example #3
0
function edit_study_program($sps)
{
    $sp = retrieve_first_checked_record($sps);
    if ($sp === NULL) {
        infomsg("Please tick the record you want to edit");
    } else {
        addedit_study_program($sp);
    }
}
Example #4
0
function edit_university($agg)
{
    $aggr = retrieve_first_checked_record($agg);
    if ($aggr === NULL) {
        infomsg("Please tick the record you want to edit");
    } else {
        addedit_university($aggr);
    }
}
Example #5
0
function edit_travel($ts)
{
    $tv = retrieve_first_checked_record($ts);
    if ($tv === NULL) {
        infomsg("Please tick the record you want to edit");
    } else {
        addedit_travel($tv);
    }
}
Example #6
0
function edit_student($sts)
{
    $st = retrieve_first_checked_record($sts);
    if ($st === NULL) {
        infomsg("Please tick the record you want to edit");
    } else {
        addedit_student($st);
    }
}