Submit
Path:
~
/
/
proc
/
self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
plesk
/
background-tasks
/
src
/
Step
/
File Content:
StepMetaInfo.php
<?php // Copyright 1999-2024. WebPros International GmbH. All rights reserved. namespace BackgroundTasks\Step; class StepMetaInfo { /** * @var string */ private $code; /** * @var string */ private $title; /** * @var string Absolute public path */ private $icon; /** * @var string */ private $status; /** * @var int */ private $progress; /** * @var string */ private $hint; /** * @param StepInterface $step * @param string $status * @param int $progress * @param string $hint */ public function __construct(\BackgroundTasks\Step\StepInterface $step, $status, $progress, $hint) { $this->code = $step->getCode(); $this->title = $step->getTitle(); $this->icon = $step->getIcon(); $this->status = $status; $this->progress = $progress; $this->hint = $hint; } /** * @return string */ public function getCode() { return $this->code; } /** * @return string */ public function getTitle() { return $this->title; } /** * @return string */ public function getIcon() { return $this->icon; } /** * @return string */ public function getStatus() { return $this->status; } /** * @return int */ public function getProgress() { return $this->progress; } /** * @return string */ public function getHint() { return $this->hint; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
HiddenStepTrait.php
439 bytes
0644
RollbackableStepInterface.php
354 bytes
0644
StepInterface.php
1172 bytes
0644
StepMetaInfo.php
1613 bytes
0644
N4ST4R_ID | Naxtarrr