11 lines
174 B
PHP
Executable File
11 lines
174 B
PHP
Executable File
<?php
|
|
if ($model->payment_system == 'payme') {
|
|
$amount = $amount / 100;
|
|
}
|
|
|
|
if ($model->amount == $amount) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|