mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 13:11:31 +00:00
add method unsetParam()
This commit is contained in:
parent
97d98137ca
commit
aafec75e76
|
@ -44,6 +44,11 @@ class SeedDMS_View_Common {
|
||||||
$this->params[$name] = $value;
|
$this->params[$name] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function unsetParam($name) {
|
||||||
|
if(isset($this->params[$name]))
|
||||||
|
unset($this->params[$name]);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
function setConfiguration($conf) {
|
function setConfiguration($conf) {
|
||||||
$this->settings = $conf;
|
$this->settings = $conf;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user