| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/aecm.ihu.gr/wp-content/plugins/learnpress/inc/Models/steps/ |
Upload File : |
<?php
/**
* Class LP_Group_Step
*
* @author tungnnx
* @version 1.0.0
* @since 4.0.0
*/
class LP_Step extends LP_REST_Response {
/**
* Step Name
*
* @var string
*/
public $name = '';
/**
* Step label
*
* @var string
*/
public $label = '';
/**
* @var string
*/
public $description = '';
/**
* @var int .
*/
public $percent = 0;
/**
* LP_Step constructor.
*
* @param string $name .
* @param string $label .
* @param string $description .
* @param string $status .
*/
public function __construct( string $name, string $label, string $description = '', string $status = '' ) {
$this->name = $name;
$this->label = $label;
$this->description = $description;
$this->status = $status;
parent::__construct();
}
}