Added missing method.
[core.git] / inc / classes / interfaces / database / middleware / class_DatabaseConnector.php
index bb507ffa8f6a0e4a55af5cff0260ea27df0ab6f6..4620df82e33e75cecd5e9150fed11166b60a8a39 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for middleware database classes
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-interface DatabaseConnector extends FrameworkDatabaseInterface {
+interface DatabaseConnector extends FrameworkDatabase {
+       /**
+        * 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.
+        */
+       function removeNonPublicDataFromArray (array $data);
 }
 
 // [EOF]