support params for status messages

This commit is contained in:
Roland Gruber 2010-09-20 17:36:42 +00:00
parent e3d96cf92f
commit 210dcf08cf
1 changed files with 4 additions and 2 deletions

View File

@ -1366,6 +1366,7 @@ class htmlStatusMessage extends htmlElement {
private $type; private $type;
private $title; private $title;
private $text; private $text;
private $params;
/** /**
* Constructor. * Constructor.
@ -1374,10 +1375,11 @@ class htmlStatusMessage extends htmlElement {
* @param String $title message title * @param String $title message title
* @param String $text message (optional) * @param String $text message (optional)
*/ */
function __construct($type, $title, $text = null) { function __construct($type, $title, $text = null, $params = null) {
$this->type = $type; $this->type = $type;
$this->title = $title; $this->title = $title;
$this->text = $text; $this->text = $text;
$this->params = $params;
} }
/** /**
@ -1392,7 +1394,7 @@ class htmlStatusMessage extends htmlElement {
* @return array List of input field names and their type (name => type) * @return array List of input field names and their type (name => type)
*/ */
function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) { function generateHTML($module, $input, $values, $restricted, &$tabindex, $scope) {
StatusMessage($this->type, $this->title, $this->text); StatusMessage($this->type, $this->title, $this->text, $this->params);
return array(); return array();
} }