Exemple #1
0
 $band_break_up_date = WEB::_post('band_break_up_date');
 $band_cover = $msg['file_path'];
 $band_bio = WEB::_post('band_bio');
 $label_id = WEB::_post('label_id');
 // array($band_name, $band_formed_date, $band_break_up_date, $band_cover, $band_bio)
 $form_error = $bd->validateParams(array($band_name, $band_formed_date, $band_break_up_date, $band_cover, $band_bio, $label_id));
 $updateStatus = true;
 if (is_null($form_error)) {
     if (!is_null($band_name)) {
         $updateStatus = $bd->updateBandName($band_name);
     }
     if ($updateStatus && !is_null($band_formed_date)) {
         $updateStatus = $bd->updateBandFormedDate($band_formed_date);
     }
     if ($updateStatus) {
         $updateStatus = $bd->updateBandBreakUpDate($band_break_up_date);
     }
     if ($updateStatus && !is_null($band_cover)) {
         $updateStatus = $bd->updateBandCover($band_cover);
     }
     if ($updateStatus) {
         $updateStatus = $bd->updateBandBio($band_bio);
     }
     if ($updateStatus) {
         $updateStatus = $bd->updateLabelId($label_id);
     }
     if ($updateStatus) {
         $bd->refresh();
         $status_message = WEB::_success('Band Successfully updated!');
     } else {
         $status_message = WEB::_error('There is an error when you were updating the Band.', null);