X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fdatabase%2Fclass_BaseDatabaseBackend.php;h=e6c56765ae8eec963ea0cbf336ffc54aaad1d291;hb=ba393ad8425e00880c34f129980de3d4fd697b25;hp=b2f229652f6dbe484ad43645bed27a0c3761bb06;hpb=66e68715d3d5a5e7fd5a3046471914ef3f9dd4b4;p=core.git diff --git a/inc/classes/main/database/class_BaseDatabaseBackend.php b/inc/classes/main/database/class_BaseDatabaseBackend.php index b2f22965..e6c56765 100644 --- a/inc/classes/main/database/class_BaseDatabaseBackend.php +++ b/inc/classes/main/database/class_BaseDatabaseBackend.php @@ -2,10 +2,10 @@ /** * An abstract database access class for handling database I/O requests * - * @see DatabaseBackendInterface - An interface for database backends + * @see DatabaseBackend - An interface for database backends * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -22,7 +22,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -abstract class BaseDatabaseBackend extends BaseFrameworkSystem implements DatabaseBackendInterface { +abstract class BaseDatabaseBackend extends BaseFrameworkSystem implements DatabaseBackend { // Constants for exceptions const EXCEPTION_SQL_QUERY = 0x140; @@ -83,6 +83,14 @@ abstract class BaseDatabaseBackend extends BaseFrameworkSystem implements Databa protected final function resetLastException () { $this->lastException = NULL; } + + /** + * Removes non-public data from given array. + * + * @param $data An array with possible non-public data that needs to be removed. + * @return $data A cleaned up array with only public data. + */ + public abstract function removeNonPublicDataFromArray (array $data); } // [EOF]