31 lines
733 B
PHP
31 lines
733 B
PHP
<?php
|
|
|
|
namespace AutomateWoo;
|
|
|
|
use AutomateWoo\Frontend_Endpoints\Login_Redirect;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* @class Variable_Subscription_View_Order_Url
|
|
*/
|
|
class Variable_Subscription_View_Order_Url extends Variable {
|
|
|
|
/**
|
|
* Method to set description and other admin props
|
|
*/
|
|
public function load_admin_details() {
|
|
$this->description = __( 'Displays a URL to the subscription page in the My Account area.', 'automatewoo' );
|
|
}
|
|
|
|
/**
|
|
* @param \WC_Subscription $subscription
|
|
* @param array $parameters
|
|
* @return string
|
|
*/
|
|
public function get_value( $subscription, $parameters ) {
|
|
return ( new Login_Redirect() )->get_login_redirect_url( $subscription->get_view_order_url() );
|
|
}
|
|
}
|