REFACTORING: new autoloading functionallity, the modules are now structured for a better overview and module and visibility. Now the modules can also be used for bigger systems, but still are light weight.

This commit is contained in:
Stephan Kasdorf
2019-11-09 18:08:35 +01:00
parent 7e79b83767
commit 417c6c9013
7 changed files with 38 additions and 61 deletions

View File

@@ -20,6 +20,7 @@ interface IDb
* @desc inserts a rowset into the table, by the given nextInsertIndex return
* value for the table
* @param bool $id
* @param array $rowset
* @return mixed
*/
public function insertRowsetById( $rowset = array(), $id = false );

View File

@@ -43,7 +43,7 @@ interface IForm
/**
* @desc loads the current Form element to the form
* @param $element
* @param $attributes
* @return mixed
*/
public function loadElement( $attributes );