Give_Payments_Query::mode PHP Méthode

mode() public méthode

Payment Mode
Since: 1.0
public mode ( ) : void
Résultat void
    public function mode()
    {
        if (empty($this->args['mode']) || $this->args['mode'] == 'all') {
            $this->__unset('mode');
            return;
        }
        $this->__set('meta_query', array('key' => '_give_payment_mode', 'value' => $this->args['mode']));
    }