-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadvertisement.cls.php
136 lines (107 loc) · 3.1 KB
/
advertisement.cls.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
class Advertisement
{
private $advertId;
private $advertDesc;
private $regDate;
private $expDate;
private $price;
private $title;
function __construct($advertDesc=null,$price=null,$title=null)
{
$this->advertDesc=$advertDesc;
$this->regDate=new DateTime();
$this->expDate=new DateTime();
$this->price=$price;
$this->title=$title;
}
/**
* @return mixed
*/
public function getAdvertId()
{
return $this->advertId;
}
/**
* @return mixed
*/
public function getAdvertDesc()
{
return $this->advertDesc;
}
/**
* @return mixed
*/
public function getRegDate()
{
return $this->regDate;
}
/**
* @return mixed
*/
public function getExpDate()
{
return $this->expDate;
}
/**
* @param mixed $advertId
*/
public function setAdvertId($advertId)
{
$this->advertId = $advertId;
}
/**
* @param mixed $advertDesc
*/
public function setAdvertDesc($advertDesc)
{
$this->advertDesc = $advertDesc;
}
/**
* @param mixed $regDate
*/
public function setRegDate($regDate)
{
$this->regDate = $regDate;
}
/**
* @param mixed $expDate
*/
public function setExpDate($expDate)
{
$this->expDate = $expDate;
}
public function postFreeAd($connection,$memberId,$subCaregoryId)
{
$advertDesc=$this->advertDesc;
$regDate=new DateTime('now');
$regTimeAsString = $regDate->format('Y-m-d H:i:s');
$expDate=$regDate->modify('+9 day');
$expTimeAsString = $expDate->format('Y-m-d H:i:s');
$price=$this->price;
$title=$this->title;
$sqlCmd="Insert into advertisement (MemberID,SubCategoryID,AdvertDesc,RegDate,ExpDate,Price,Title) values($memberId,$subCaregoryId,'$advertDesc', '$regTimeAsString','$expTimeAsString',$price,'$title')";
$result = $connection->exec($sqlCmd);
return $result;
}
public function postPaidAd($connection,$paymentId,$memberId,$subCaregoryId)
{
$advertDesc=$this->advertDesc;
$regDate=new DateTime('now');
$expDate=$regDate->modify('+9 day');
$regTimeAsString = $regDate->format('Y-m-d H:i:s');
$expTimeAsString = $expDate->format('Y-m-d H:i:s');
$price=$this->price;
$title=$this->title;
$sqlCmd="Insert into advertisement (MemberID,PaymentID,SubCategoryID,AdvertDesc,RegDate,ExpDate,Price,Title) values($memberId,$paymentId,$subCaregoryId,'$advertDesc', '$regTimeAsString','$expTimeAsString',$price,'$title')";
$result = $connection->exec($sqlCmd);
return $result;
}
public function deleteanAd($connection,$advertId)
{
$sqlCmd="Delete from advertisement where AdvertID=".$advertId;
$result = $connection->exec($sqlCmd);
return $result;
}
}
?>