2021-11-16 13:59:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Class for creating testable tasks.
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Admin\Tests\OnboardingTasks
|
|
|
|
*/
|
|
|
|
|
|
|
|
use Automattic\WooCommerce\Admin\Features\OnboardingTasks\Task;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TestTask class.
|
|
|
|
*/
|
|
|
|
class TestTask extends Task {
|
|
|
|
/**
|
|
|
|
* ID.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $id = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Snoozeable.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public $is_snoozeable = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dismissable.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public $is_dismissable = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
2022-03-01 12:34:18 +00:00
|
|
|
* @param TaskList|null $task_list Parent task list.
|
|
|
|
* @param array $args Array of task args.
|
2021-11-16 13:59:55 +00:00
|
|
|
*/
|
2022-03-01 12:34:18 +00:00
|
|
|
public function __construct( $task_list, $args ) {
|
|
|
|
parent::__construct( $task_list );
|
2021-11-16 13:59:55 +00:00
|
|
|
$task_args = wp_parse_args(
|
|
|
|
$args,
|
|
|
|
array(
|
|
|
|
'id' => null,
|
|
|
|
'is_dismissable' => false,
|
|
|
|
'is_snoozeable' => false,
|
|
|
|
'is_snoozeable' => false,
|
|
|
|
'can_view' => true,
|
|
|
|
'level' => 3,
|
|
|
|
'additional_info' => null,
|
|
|
|
'content' => '',
|
|
|
|
'title' => '',
|
|
|
|
'is_complete' => false,
|
|
|
|
'time' => null,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->id = $task_args['id'];
|
|
|
|
$this->additional_info = $task_args['additional_info'];
|
|
|
|
$this->content = $task_args['content'];
|
|
|
|
$this->is_complete = $task_args['is_complete'];
|
|
|
|
$this->is_dismissable = $task_args['is_dismissable'];
|
|
|
|
$this->is_snoozeable = $task_args['is_snoozeable'];
|
|
|
|
$this->can_view = $task_args['can_view'];
|
|
|
|
$this->level = $task_args['level'];
|
|
|
|
$this->time = $task_args['time'];
|
|
|
|
$this->title = $task_args['title'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ID.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_id() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Additonal info.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_additional_info() {
|
|
|
|
return $this->additional_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_content() {
|
|
|
|
return $this->content;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parent ID.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_parent_id() {
|
|
|
|
return 'extended';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Level.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function get_level() {
|
|
|
|
return $this->level;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Title
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_title() {
|
|
|
|
return $this->title;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Time
|
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
*/
|
|
|
|
public function get_time() {
|
|
|
|
return $this->time;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a task is snoozeable.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function is_snoozeable() {
|
|
|
|
return $this->is_snoozeable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a task is dismissable.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function is_dismissable() {
|
|
|
|
return $this->is_dismissable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a task is dismissable.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function is_complete() {
|
|
|
|
return $this->is_complete;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a task is dismissable.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function can_view() {
|
|
|
|
return $this->can_view;
|
|
|
|
}
|
|
|
|
}
|