コード例 #1
0
function addVillage_service($sessionkey, $appcode, $Village_servicedata)
{
    $main_result = "<VPROFILERESULT>";
    $main_result .= "<AUTHSTATUS>0</AUTHSTATUS>";
    $userId = ValidateSession($sessionkey, $appcode);
    if ($userId > -1) {
        $main_result = "<AUTHSTATUS>1</AUTHSTATUS>";
        $obj_Village_service = new Village_service();
        foreach ($Userdata["[UPPERTEMPLATENAME"] as $key => $child) {
            switch ($key) {
                case "SERVICEID":
                    $obj_Village_service->ServiceId = $child;
                    break;
                case "VILLAGEID":
                    $obj_Village_service->VillageId = $child;
                    break;
                case "BUSINESSID":
                    $obj_Village_service->BusinessId = $child;
                    break;
                case "DESCRIPTION":
                    $obj_Village_service->Description = $child;
                    break;
            }
        }
        $obj_retResult_Village_service = DAL_manageVillage_service::addVillage_service($obj_Village_service);
        if ($obj_retResult_Village_service->type == 1) {
            $main_result .= "<RESULTSTATUS>1</RESULTSTATUS>";
            $main_result .= getVillage_serviceXml($obj_retResult_Village_service->data);
        } else {
            $main_result .= "<RESULTSTATUS>0</RESULTSTATUS>";
        }
    }
    $main_result .= "</VPROFILERESULT>";
    return $main_result;
}
コード例 #2
0
 public static function addVillage_service2($ServiceId, $VillageId, $BusinessId, $Description)
 {
     $obj_retResult = new returnResult();
     $obj_newVillage_service = new Village_service();
     $obj_newuser->setVillage_service($ServiceId, $VillageId, $BusinessId, $Description);
     // $isExist = BL_manageVillage_service::isExist($obj_newVillage_service->id);
     if (!$isExist) {
         $obj_retResult_Village_service = DAL_manageVillage_service::addVillage_service($obj_newVillage_service);
         if ($obj_retResult_Village_service->type == 1) {
             $obj_retResult->type = 1;
             $obj_retResult->msg = "Success";
             $obj_retResult->data = $obj_retResult_Village_service->data;
         } else {
             $obj_retResult->type = 0;
             $obj_retResult->msg = "Failed";
         }
     } else {
         $obj_retResult->type = 0;
         $obj_retResult->msg = "Sorry! Village_service already exist";
     }
     return $obj_retResult;
 }