3 namespace Org\Mxchange\CoreFramework\Database\Frontend\News;
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Database\Frontend\BaseDatabaseWrapper;
7 use Org\Mxchange\CoreFramework\Registry\Registerable;
10 * A database wrapper for news classes
12 * @author Roland Haeder <webmaster@shipsimu.org>
14 <<<<<<< HEAD:framework/main/classes/database/frontend/class_NewsDatabaseWrapper.php
15 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
17 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
18 >>>>>>> Some updates::inc/main/classes/database/frontend/class_NewsDatabaseWrapper.php
19 * @license GNU GPL 3.0 or any newer version
20 * @link http://www.shipsimu.org
21 * @todo Add missing own interface for public methods
23 * This program is free software: you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation, either version 3 of the License, or
26 * (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
33 * You should have received a copy of the GNU General Public License
34 * along with this program. If not, see <http://www.gnu.org/licenses/>.
36 class NewsDatabaseWrapper extends BaseDatabaseWrapper implements Registerable {
37 // Constants for database table names
38 const DB_TABLE_NEWS = 'news';
41 * Protected constructor
45 protected function __construct () {
46 // Call parent constructor
47 parent::__construct(__CLASS__);
51 * Creates an instance of this database wrapper by a provided user class
53 * @return $wrapperInstance An instance of the created wrapper class
55 public static final function createNewsDatabaseWrapper () {
57 $wrapperInstance = new NewsDatabaseWrapper();
59 // Set (primary!) table name
60 $wrapperInstance->setTableName(self::DB_TABLE_NEWS);
62 // Return the instance
63 return $wrapperInstance;