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

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11635 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-12-22 16:31:03 +00:00
parent 9c42712cb8
commit 1f7c5e246b
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;
}
}