[+] MO: Add Module controller, Cheque and Bankwire modules use it

This commit is contained in:
rMalie
2011-12-22 16:31:03 +00:00
parent e78adabdb7
commit eefa793840
12 changed files with 311 additions and 165 deletions

View File

@@ -1588,16 +1588,35 @@ abstract class ModuleCore
/**
* Get module errors
*
* @since 1.5.0
* @return array errors
*/
public function getErrors() { return $this->_errors; }
public function getErrors()
{
return $this->_errors;
}
/**
* Get module messages confirmation
* @since 1.5.1
*
* @since 1.5.0
* @return array conf
*/
public function getConfirmations() { return $this->_confirmations; }
public function getConfirmations()
{
return $this->_confirmations;
}
/**
* Get uri path for module
*
* @since 1.5.0
* @return string
*/
public function getPathUri()
{
return $this->_path;
}
}