33 lines
601 B
PHP
33 lines
601 B
PHP
<?php
|
|
|
|
namespace AutomateWoo;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* @class Variable_Sensei_Quiz_URL
|
|
*
|
|
* @since 5.6.10
|
|
*/
|
|
class Variable_Sensei_Quiz_URL extends Variable {
|
|
|
|
/**
|
|
* Set description and other admin props
|
|
*/
|
|
public function load_admin_details() {
|
|
$this->description = __( "Displays the quiz's URL.", 'automatewoo' );
|
|
}
|
|
|
|
/**
|
|
* Get Variable Value.
|
|
*
|
|
* @param \WP_Post $quiz \WP_Post Object
|
|
* @param array $parameters Variable parameters
|
|
* @return string
|
|
*/
|
|
public function get_value( $quiz, $parameters ) {
|
|
return get_permalink( $quiz );
|
|
}
|
|
}
|