mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:37:33 -05:00 
			
		
		
		
	* Add ability to remove group settings level company logo * Company Gateway Fees and Limits * Validation tests for FeesAndLimits * Working on company gateways * Working on transforming fees_and_limits in transformer * Implement fees and limits map for company gateways
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			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\Http\ValidationRules;
 | 
						|
 | 
						|
use App\Utils\Traits\CompanyGatewayFeesAndLimitsSaver;
 | 
						|
use Illuminate\Contracts\Validation\Rule;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class ValidCompanyGatewayFeesAndLimitsRule
 | 
						|
 * @package App\Http\ValidationRules
 | 
						|
 */
 | 
						|
class ValidCompanyGatewayFeesAndLimitsRule implements Rule
 | 
						|
{
 | 
						|
	use CompanyGatewayFeesAndLimitsSaver;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $attribute
 | 
						|
     * @param mixed $value
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    
 | 
						|
    public $return_data;
 | 
						|
 | 
						|
    public function passes($attribute, $value)
 | 
						|
    {
 | 
						|
        $data = $this->validateFeesAndLimits($value);
 | 
						|
 | 
						|
        if (is_array($data))
 | 
						|
        {
 | 
						|
            $this->return_data = $data;
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
        else
 | 
						|
            return true;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function message()
 | 
						|
    {
 | 
						|
 | 
						|
        return $this->return_data[0]." is not a valid ".$this->return_data[1];
 | 
						|
 | 
						|
    }
 | 
						|
}
 |