mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-19 08:01:39 +00:00
Merge branch 'seeddms-5.0.x' into develop
This commit is contained in:
commit
397c5ee9d8
|
@ -53,6 +53,12 @@ class SeedDMS_View_Common {
|
||||||
$this->params[$name] = $value;
|
$this->params[$name] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getParam($name) {
|
||||||
|
if(isset($this->params[$name]))
|
||||||
|
return $this->params[$name];
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
function unsetParam($name) {
|
function unsetParam($name) {
|
||||||
if(isset($this->params[$name]))
|
if(isset($this->params[$name]))
|
||||||
unset($this->params[$name]);
|
unset($this->params[$name]);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user