<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * WooCommerce eCheck Payment Token. * * Representation of a payment token for eChecks. * * @class WC_Payment_Token_eCheck * @version 3.0.0 * @since 2.6.0 * @category PaymentTokens * @package WooCommerce/PaymentTokens * @author WooThemes */ class WC_Payment_Token_eCheck extends WC_Payment_Token { /** @protected string Token Type String. */ protected $type = 'eCheck'; /** * Stores eCheck payment token data. * * @var array */ protected $extra_data = array( 'last4' => '', ); /** * Get type to display to user. * * @since 2.6.0 * @param string $deprecated Deprecated since WooCommerce 3.0 * @return string */ public function get_display_name( $deprecated = '' ) { return __( 'eCheck', 'woocommerce' ); } /** * Hook prefix * * @since 3.0.0 */ protected function get_hook_prefix() { return 'woocommerce_payment_token_echeck_get_'; } /** * Validate eCheck payment tokens. * * These fields are required by all eCheck payment tokens: * last4 - string Last 4 digits of the check * * @since 2.6.0 * @return boolean True if the passed data is valid */ public function validate() { if ( false === parent::validate() ) { return false; } if ( ! $this->get_last4( 'edit' ) ) { return false; } return true; } /** * Returns the last four digits. * * @since 2.6.0 * @param string $context * @return string Last 4 digits */ public function get_last4( $context = 'view' ) { return $this->get_prop( 'last4', $context ); } /** * Set the last four digits. * @since 2.6.0 * @param string $last4 */ public function set_last4( $last4 ) { $this->set_prop( 'last4', $last4 ); } }