Submit
Path:
~
/
home
/
getwphos
/
public_html
/
seasons-newtheme
/
wp-content
/
plugins
/
learnpress
/
inc
/
Models
/
steps
/
File Content:
class-lp-step.php
<?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(); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
class-lp-group-step.php
439 bytes
0644
class-lp-step.php
789 bytes
0644
N4ST4R_ID | Naxtarrr