144 lines
2.6 KiB
PHP
144 lines
2.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* @file
|
|
* Contains message entity class.
|
|
*/
|
|
|
|
/**
|
|
* Entity class for the tmgmt_message entity.
|
|
*
|
|
* @ingroup tmgmt_job
|
|
*/
|
|
class TMGMTMessage extends Entity {
|
|
|
|
/**
|
|
* The ID of the message..
|
|
*
|
|
* @var integer
|
|
*/
|
|
public $mid;
|
|
|
|
/**
|
|
* The ID of the job.
|
|
*
|
|
* @var integer
|
|
*/
|
|
public $tjid;
|
|
|
|
/**
|
|
* The ID of the job item.
|
|
*
|
|
* @var integer
|
|
*/
|
|
public $tjiid;
|
|
|
|
/**
|
|
* User uid.
|
|
*
|
|
* @var integer
|
|
*/
|
|
public $uid;
|
|
|
|
/**
|
|
* The message text.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $message;
|
|
|
|
/**
|
|
* An array of string replacement arguments as used by t().
|
|
*
|
|
* @var array
|
|
*/
|
|
public $variables;
|
|
|
|
/**
|
|
* The time when the message object was created as a timestamp.
|
|
*
|
|
* @var integer
|
|
*/
|
|
public $created;
|
|
|
|
/**
|
|
* Type of the message (debug, status, warning or error).
|
|
*
|
|
* @var string
|
|
*/
|
|
public $type;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function __construct(array $values = array()) {
|
|
parent::__construct($values, 'tmgmt_message');
|
|
if (empty($this->created)) {
|
|
$this->created = REQUEST_TIME;
|
|
}
|
|
if (empty($this->type)) {
|
|
$this->type = 'status';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function defaultLabel() {
|
|
$created = format_date($this->created);
|
|
switch ($this->type) {
|
|
case 'error':
|
|
return t('Error message from @time', array('@time' => $created));
|
|
case 'status':
|
|
return t('Status message from @time', array('@time' => $created));
|
|
case 'warning':
|
|
return t('Warning message from @time', array('@time' => $created));
|
|
case 'debug':
|
|
return t('Debug message from @time', array('@time' => $created));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the translated message.
|
|
*
|
|
* @return
|
|
* The translated message.
|
|
*/
|
|
public function getMessage() {
|
|
$text = $this->message;
|
|
if (is_array($this->variables) && !empty($this->variables)) {
|
|
$text = t($text, $this->variables);
|
|
}
|
|
return $text;
|
|
}
|
|
|
|
/**
|
|
* Loads the job entity that this job message is attached to.
|
|
*
|
|
* @return TMGMTJob
|
|
* The job entity that this job message is attached to or FALSE if there was
|
|
* a problem.
|
|
*/
|
|
public function getJob() {
|
|
if (!empty($this->tjid)) {
|
|
return tmgmt_job_load($this->tjid);
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
/**
|
|
* Loads the job entity that this job message is attached to.
|
|
*
|
|
* @return TMGMTJobItem
|
|
* The job item entity that this job message is attached to or FALSE if
|
|
* there was a problem.
|
|
*/
|
|
public function getJobItem() {
|
|
if (!empty($this->tjiid)) {
|
|
return tmgmt_job_item_load($this->tjiid);
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
}
|