Pane: Add setter for $name

refs #2901
This commit is contained in:
Johannes Meyer 2018-04-06 11:08:20 +02:00
parent 36716566b6
commit 72f0e809ae
1 changed files with 10 additions and 0 deletions

View File

@ -53,6 +53,16 @@ class Pane extends UserWidget
$this->title = $name;
}
/**
* Set the name of this pane
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* Returns the name of this pane
*