Файл: concrete5.7.5.6/concrete/src/Workflow/Description.php
Строк: 42
<?php
namespace ConcreteCoreWorkflow;
use ConcreteCoreFoundationObject;
class Description extends Object
{
public function getDescription()
{
return $this->text;
}
public function setDescription($text)
{
$this->text = $text;
}
public function getEmailDescription()
{
return $this->emailtext;
}
public function setEmailDescription($text)
{
$this->emailtext = $text;
}
public function setInContextDescription($html)
{
$this->incontext = $html;
}
public function getInContextDescription()
{
return $this->incontext;
}
public function setShortStatus($status)
{
$this->status = $status;
}
public function getShortStatus()
{
return $this->status;
}
}