1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Gateway.php
2019-09-05 22:42:26 +10:00

53 lines
949 B
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Omnipay\Omnipay;
class Gateway extends Model
{
/**
* @return mixed
*/
public function getFields()
{
if ($this->isCustom())
{
return [
'name' => '',
'text' => '',
];
} else
{
return Omnipay::create($this->provider)->getDefaultParameters();
}
}
/**
* Test if gateway is custom
* @return boolean TRUE|FALSE
*/
public function isCustom() :bool
{
return in_array($this->id, [62, 67, 68]); //static table ids of the custom gateways
}
}