79 lines
1.3 KiB
PHP
79 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace AutomateWoo\DataTypes;
|
|
|
|
use AutomateWoo\Clean;
|
|
use AutomateWoo\Integrations;
|
|
use WC_Subscription;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Subscription data type class.
|
|
*/
|
|
class Subscription extends AbstractDataType {
|
|
|
|
|
|
/**
|
|
* @param WC_Subscription $item
|
|
* @return bool
|
|
*/
|
|
public function validate( $item ) {
|
|
return $item instanceof WC_Subscription;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param WC_Subscription $item
|
|
* @return mixed
|
|
*/
|
|
public function compress( $item ) {
|
|
return $item->get_id();
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string|int $compressed_item
|
|
* @param array|false $compressed_data_layer
|
|
* @return WC_Subscription|false
|
|
*/
|
|
public function decompress( $compressed_item, $compressed_data_layer ) {
|
|
$id = Clean::id( $compressed_item );
|
|
|
|
if ( ! Integrations::is_subscriptions_active() || ! $id ) {
|
|
return false;
|
|
}
|
|
|
|
$subscription = wcs_get_subscription( $id );
|
|
|
|
if ( ! $subscription || $subscription->get_status() === 'trash' ) {
|
|
return false;
|
|
}
|
|
|
|
return $subscription;
|
|
}
|
|
|
|
/**
|
|
* Get singular name for data type.
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_singular_name() {
|
|
return __( 'Subscription', 'automatewoo' );
|
|
}
|
|
|
|
/**
|
|
* Get plural name for data type.
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_plural_name() {
|
|
return __( 'Subscriptions', 'automatewoo' );
|
|
}
|
|
}
|