Пример #1
0
 function _mkObj($array)
 {
     $dm = new Dm();
     $dm->setCode($array["code"]);
     $dm->setDescription($array["description"]);
     $dm->setDefaultFlg($array["default_flg"]);
     if ($this->_tableNm == "collection_dm") {
         $dm->setDaysDueBack($array["days_due_back"]);
         $dm->setDailyLateFee($array["daily_late_fee"]);
     }
     if (isset($array['checkout_limit'])) {
         $dm->setCheckoutLimit($array["checkout_limit"]);
     }
     if (isset($array['renewal_limit'])) {
         $dm->setRenewalLimit($array["renewal_limit"]);
     }
     if (isset($array["image_file"])) {
         $dm->setImageFile($array["image_file"]);
     }
     if (isset($array["max_fines"])) {
         $dm->setMaxFines($array["max_fines"]);
     }
     if (isset($array["row_count"])) {
         $dm->setCount($array["row_count"]);
     }
     return $dm;
 }
Пример #2
0
#****************************************************************************
if (count($_POST) == 0) {
    header("Location: ../admin/collections_list.php");
    exit;
}
#****************************************************************************
#*  Validate data
#****************************************************************************
$dm = new Dm();
$dm->setCode($_POST["code"]);
$_POST["code"] = $dm->getCode();
$dm->setDescription($_POST["description"]);
$_POST["description"] = $dm->getDescription();
$dm->setDaysDueBack($_POST["daysDueBack"]);
$_POST["daysDueBack"] = $dm->getDaysDueBack();
$dm->setDailyLateFee($_POST["dailyLateFee"]);
$_POST["dailyLateFee"] = $dm->getDailyLateFee();
if (!$dm->validateData()) {
    $pageErrors["description"] = $dm->getDescriptionError();
    $pageErrors["daysDueBack"] = $dm->getDaysDueBackError();
    $pageErrors["dailyLateFee"] = $dm->getDailyLateFeeError();
    $_SESSION["postVars"] = $_POST;
    $_SESSION["pageErrors"] = $pageErrors;
    header("Location: ../admin/collections_edit_form.php");
    exit;
}
#**************************************************************************
#*  Update domain table row
#**************************************************************************
$dmQ = new DmQuery();
$dmQ->connect();