mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-08 20:46:05 +00:00
Merge branch 'seeddms-4.3.x' into seeddms-5.0.x
This commit is contained in:
commit
78b39a24c5
|
@ -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