]> git.mxchange.org Git - core.git/commit - inc/config.php
Renamed some paths and a class for better understanding them:
authorRoland Haeder <roland@mxchange.org>
Fri, 6 Mar 2015 23:19:12 +0000 (00:19 +0100)
committerRoland Haeder <roland@mxchange.org>
Fri, 6 Mar 2015 23:22:12 +0000 (00:22 +0100)
commit5b0d513d846a787285baa062db26da2879077df6
treea3f8ae804099fb0516ca5428d595c6de8fee0a02
parent1a91dabdfed365947d1ce11675aacae9d424edff
Renamed some paths and a class for better understanding them:
- Classes in 'databases' were backend classes (doing the hard work) so it got renamed to 'backend'
- Classes in 'wrapper' were frontend classes (which classes from e.g. the "business logic" may use) so it got renamed to 'frontend'
- To both above renames there are already proper "base" classes
- Renamed 'LocalFileDatabase' to 'CachedLocalFileDatabase' as the entire (!) result is stored in $resultData. This is maybe fine for small tables but never good for tables with a lot rows (I don't want to name a number here).
- TODOs.txt updated

Signed-off-by: Roland Häder <roland@mxchange.org>
16 files changed:
docs/TODOs.txt
inc/classes/main/database/backend/.htaccess [new file with mode: 0644]
inc/classes/main/database/backend/class_CachedLocalFileDatabase.php [new file with mode: 0644]
inc/classes/main/database/databases/.htaccess [deleted file]
inc/classes/main/database/databases/class_LocalFileDatabase.php [deleted file]
inc/classes/main/database/frontend/.htaccess [new file with mode: 0644]
inc/classes/main/database/frontend/class_NewsDatabaseWrapper.php [new file with mode: 0644]
inc/classes/main/database/frontend/class_PaymentsDatabaseWrapper.php [new file with mode: 0644]
inc/classes/main/database/frontend/class_UserDatabaseWrapper.php [new file with mode: 0644]
inc/classes/main/database/frontend/class_UserPointsDatabaseWrapper.php [new file with mode: 0644]
inc/classes/main/database/wrapper/.htaccess [deleted file]
inc/classes/main/database/wrapper/class_NewsDatabaseWrapper.php [deleted file]
inc/classes/main/database/wrapper/class_PaymentsDatabaseWrapper.php [deleted file]
inc/classes/main/database/wrapper/class_UserDatabaseWrapper.php [deleted file]
inc/classes/main/database/wrapper/class_UserPointsDatabaseWrapper.php [deleted file]
inc/config.php