set balance expire date on new deposit
This commit is contained in:
@@ -8,6 +8,9 @@ class user_kid extends user_parent {
|
||||
private $user_name;
|
||||
private $user_is_active;
|
||||
private $user_balance;
|
||||
private $user_balance_expires;
|
||||
private $user_balance_expire_date;
|
||||
private $user_last_deposit;
|
||||
private $user_last_name;
|
||||
private $user_first_name;
|
||||
private $user_password;
|
||||
@@ -285,6 +288,24 @@ class user_kid extends user_parent {
|
||||
public function get_uk_balance() {
|
||||
return $this->user_balance;
|
||||
}
|
||||
public function set_uk_balance_expires($_balance_expires) {
|
||||
$this->user_balance_expires = $_balance_expires;
|
||||
}
|
||||
public function get_uk_balance_expires() {
|
||||
return $this->user_balance_expires;
|
||||
}
|
||||
public function set_uk_balance_expire_date($_balance_expire_date) {
|
||||
$this->user_balance_expire_date = $_balance_expire_date;
|
||||
}
|
||||
public function get_uk_balance_expire_date() {
|
||||
return $this->user_balance_expire_date;
|
||||
}
|
||||
public function set_uk_last_deposit($_last_deposit) {
|
||||
$this->user_last_deposit = $_last_deposit;
|
||||
}
|
||||
public function get_uk_last_deposit() {
|
||||
return $this->user_last_deposit;
|
||||
}
|
||||
public function set_uk_balance_transfer($_balance_transfer) {
|
||||
$this->user_balance_transfer = $_balance_transfer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user