1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-17 20:01:47 +02:00

admin UI: more improvements

This commit is contained in:
secretr
2009-11-16 12:23:07 +00:00
parent 6276128b98
commit ab85df618d
2 changed files with 83 additions and 49 deletions

View File

@@ -9,8 +9,8 @@
* e107 Base Model
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/model_class.php,v $
* $Revision: 1.36 $
* $Date: 2009-11-10 19:13:06 $
* $Revision: 1.37 $
* $Date: 2009-11-16 12:23:07 $
* $Author: secretr $
*/
@@ -902,6 +902,17 @@ class e_model
return $this;
}
/**
* Update parameter array
* @param array $params
* @return e_model
*/
public function updateParams(array $params)
{
$this->_params = array_merge($this->_params, $params);
return $this;
}
/**
* Get parameter array
*