make some methods public

This commit is contained in:
Uwe Steinmann 2022-07-29 21:40:32 +02:00
parent 8ceb8d1e6a
commit 718d922950

View File

@ -41,7 +41,7 @@ class SeedDMS_Controller_Common {
*/ */
protected $lasthookresult; protected $lasthookresult;
function __construct($params) { public function __construct($params) {
$this->params = $params; $this->params = $params;
$this->error = 0; $this->error = 0;
$this->errormsg = ''; $this->errormsg = '';
@ -59,7 +59,7 @@ class SeedDMS_Controller_Common {
* @params array $get $_GET or $_POST variables (since 5.1.27 this is no longer used) * @params array $get $_GET or $_POST variables (since 5.1.27 this is no longer used)
* @return mixed return value of called method * @return mixed return value of called method
*/ */
function __invoke($get=array()) { public function __invoke($get=array()) {
$action = null; $action = null;
$request = $this->getParam('request'); $request = $this->getParam('request');
if($request) { if($request) {
@ -82,11 +82,11 @@ class SeedDMS_Controller_Common {
$this->callHook('postRun', get_class($this), $action ? $action : 'run'); $this->callHook('postRun', get_class($this), $action ? $action : 'run');
} }
function setParams($params) { public function setParams($params) {
$this->params = $params; $this->params = $params;
} }
function setParam($name, $value) { public function setParam($name, $value) {
$this->params[$name] = $value; $this->params[$name] = $value;
} }
@ -100,7 +100,7 @@ class SeedDMS_Controller_Common {
* @param string $name name of parameter * @param string $name name of parameter
* @return mixed value of parameter or null if parameter does not exist * @return mixed value of parameter or null if parameter does not exist
*/ */
function getParam($name) { public function getParam($name) {
return isset($this->params[$name]) ? $this->params[$name] : null; return isset($this->params[$name]) ? $this->params[$name] : null;
} }
@ -110,7 +110,7 @@ class SeedDMS_Controller_Common {
* @param string $name name of parameter * @param string $name name of parameter
* @return boolean true if parameter exists otherwise false * @return boolean true if parameter exists otherwise false
*/ */
function hasParam($name) { public function hasParam($name) {
return isset($this->params[$name]) ? true : false; return isset($this->params[$name]) ? true : false;
} }
@ -119,12 +119,12 @@ class SeedDMS_Controller_Common {
* *
* @param string $name name of parameter * @param string $name name of parameter
*/ */
function unsetParam($name) { public function unsetParam($name) {
if(isset($this->params[$name])) if(isset($this->params[$name]))
unset($this->params[$name]); unset($this->params[$name]);
} }
function run() { public function run() {
} }
/** /**