add method unsetParam()

This commit is contained in:
Uwe Steinmann 2013-06-18 18:14:14 +02:00
parent 97d98137ca
commit aafec75e76

View File

@ -44,6 +44,11 @@ class SeedDMS_View_Common {
$this->params[$name] = $value;
}
function unsetParam($name) {
if(isset($this->params[$name]))
unset($this->params[$name]);
}
/*
function setConfiguration($conf) {
$this->settings = $conf;