X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fpayment%2Fmoney.inc.php;h=83b21db207b06acae3f459d7326b35dda2f0a6a0;hb=5cfb3dd10421468779a740595b3e5e68aba9838e;hp=5f64865809d95996ff0d698c8fc1ab5954af7553;hpb=fb813fb52d5ab65ca9a5b92b5cb9089523380d79;p=platal.git diff --git a/modules/payment/money.inc.php b/modules/payment/money.inc.php index 5f64865..83b21db 100644 --- a/modules/payment/money.inc.php +++ b/modules/payment/money.inc.php @@ -1,6 +1,6 @@ money->mpay_def_id : $ref; - $res = XDB::query("SELECT id, text, url, flags, mail, montant_min, montant_max, montant_def, asso_id - FROM {$globals->money->mpay_tprefix}paiements WHERE id={?}", $r); + $res = XDB::query("SELECT id, text, url, flags, mail, amount_min, amount_max, amount_def, asso_id + FROM payments WHERE id={?}", $r); list($this->id, $this->text, $this->url, $flags, $this->mail, - $this->montant_min, $this->montant_max, $this->montant_def, $this->asso_id) = $res->fetchOneRow(); + $this->amount_min, $this->amount_max, $this->amount_def, $this->asso_id) = $res->fetchOneRow(); - $this->montant_min = (float)$this->montant_min; - $this->montant_max = (float)$this->montant_max; + $this->amount_min = (float)$this->amount_min; + $this->amount_max = (float)$this->amount_max; $this->flags = new PlFlagSet($flags); } @@ -58,10 +58,10 @@ class Payment function check($value) { $v = (float)strtr($value, ',', '.'); - if ($this->montant_min > $v) { - return "Montant inférieur au minimum autorisé ({$this->montant_min})."; - } elseif ($v > $this->montant_max) { - return "Montant supérieur au maximum autorisé ({$this->montant_max})."; + if ($this->amount_min > $v) { + return "Montant inférieur au minimum autorisé ({$this->amount_min})."; + } elseif ($v > $this->amount_max) { + return "Montant supérieur au maximum autorisé ({$this->amount_max})."; } else { return true; } @@ -70,7 +70,7 @@ class Payment // }}} // {{{ function init() - function init($val, &$meth) + function init($val, $meth) { require_once dirname(__FILE__).'/money/'.$meth->inc; $this->api = new $api($val); @@ -118,7 +118,7 @@ class PayMethod { global $globals; $i = $id==-1 ? $globals->money->mpay_def_meth : $id; - $res = XDB::query("SELECT id,text,include FROM {$globals->money->mpay_tprefix}methodes WHERE id={?}", $i); + $res = XDB::query("SELECT id,text,include FROM payment_methods WHERE id={?}", $i); list($this->id, $this->text, $this->inc) = $res->fetchOneRow(); }