]> git.mxchange.org Git - city.git/commitdiff
Renamed more classes and interfaces to sections as they actually handled.
authorRoland Haeder <roland@mxchange.org>
Wed, 29 Jul 2015 20:04:14 +0000 (22:04 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 29 Jul 2015 20:04:14 +0000 (22:04 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
application/city/config.php
application/city/interfaces/manager/city_map/.htaccess [deleted file]
application/city/interfaces/manager/city_map/class_ManageableCityMap.php [deleted file]
application/city/interfaces/manager/city_sections/.htaccess [new file with mode: 0644]
application/city/interfaces/manager/city_sections/class_ManageableCitySections.php [new file with mode: 0644]
application/city/main/city_daemon/class_BaseCityDaemon.php
application/city/main/manager/city_map/.htaccess [deleted file]
application/city/main/manager/city_map/class_CityMapManager.php [deleted file]
application/city/main/manager/city_sections/.htaccess [new file with mode: 0644]
application/city/main/manager/city_sections/class_CitySectionsManager.php [new file with mode: 0644]

index aea8d54b5f6cbe556320987c1e0c79c6be3ecd3e..15a52667011d2324f8d3a9c65339d242d209dbcb 100644 (file)
@@ -482,8 +482,8 @@ $cfg->setConfigEntry('login_type', 'username');
 // CFG: CITY-MANAGER-CLASS
 $cfg->setConfigEntry('city_manager_class', 'CityManager');
 
-// CFG: CITY-MAP-MANAGER-CLASS
-$cfg->setConfigEntry('city_map_manager_class', 'CityMapManager');
+// CFG: CITY-SECTIONS-MANAGER-CLASS
+$cfg->setConfigEntry('city_sections_manager_class', 'CitySectionsManager');
 
 // CFG: REGION-MANAGER-CLASS
 $cfg->setConfigEntry('region_manager_class', 'RegionManager');
diff --git a/application/city/interfaces/manager/city_map/.htaccess b/application/city/interfaces/manager/city_map/.htaccess
deleted file mode 100644 (file)
index 3a42882..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Deny from all
diff --git a/application/city/interfaces/manager/city_map/class_ManageableCityMap.php b/application/city/interfaces/manager/city_map/class_ManageableCityMap.php
deleted file mode 100644 (file)
index dc7172c..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-/**
- * An interface map manager
- *
- * @author             Roland Haeder <webmaster@shipsimu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2015 City Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @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
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * 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 ManageableCityMap extends FrameworkInterface {
-       /**
-        * Checks whether at least one map requires expansion
-        *
-        * @return      $requiresExpansion      Whether a map requires expansion
-        */
-       function isMapPendingExpansion ();
-}
-
-// [EOF]
-?>
diff --git a/application/city/interfaces/manager/city_sections/.htaccess b/application/city/interfaces/manager/city_sections/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/city/interfaces/manager/city_sections/class_ManageableCitySections.php b/application/city/interfaces/manager/city_sections/class_ManageableCitySections.php
new file mode 100644 (file)
index 0000000..7251669
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+/**
+ * An interface sections manager
+ *
+ * @author             Roland Haeder <webmaster@shipsimu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2015 City Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * 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 ManageableCitySections extends FrameworkInterface {
+       /**
+        * Checks whether at least one map requires expansion
+        *
+        * @return      $requiresExpansion      Whether a map requires expansion
+        */
+       function isMapPendingExpansion ();
+}
+
+// [EOF]
+?>
index 46d666dd166da665369d0ee53d07e3aeed2d0306..f477a1ab4e14609aa615d6e699bf04be80f65375 100644 (file)
@@ -256,8 +256,8 @@ class BaseCityDaemon extends BaseCitySystem implements Updateable, AddableCriter
         * @return      $requiresExpansion      Whether a map requires expansion
         */
        public function isMapPendingExpansion () {
-               // Get map manager
-               $mapInstance = ManagerFactory::createManagerByType('city_map');
+               // Get sections manager
+               $mapInstance = ManagerFactory::createManagerByType('city_sections');
 
                // Call it's method and return value
                return $mapInstance->isMapPendingExpansion();
diff --git a/application/city/main/manager/city_map/.htaccess b/application/city/main/manager/city_map/.htaccess
deleted file mode 100644 (file)
index 3a42882..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Deny from all
diff --git a/application/city/main/manager/city_map/class_CityMapManager.php b/application/city/main/manager/city_map/class_CityMapManager.php
deleted file mode 100644 (file)
index 43f5438..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-<?php
-/**
- * A city map manager
- *
- * @author             Roland Haeder <webmaster@ship-simu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2015 City Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.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
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-class CityMapManager extends BaseFrameworkSystem implements ManageableCityMap, Registerable {
-       /**
-        * Protected constructor
-        *
-        * @return      void
-        */
-       protected function __construct () {
-               // Call parent constructor
-               parent::__construct(__CLASS__);
-       }
-
-       /**
-        * Creates an instance of this class
-        *
-        * @return      $managerInstance        An instance of a ManageableCityMap class
-        */
-       public final static function createCityMapManager () {
-               // Get new instance
-               $managerInstance = new CityMapManager();
-
-               // Get database wrapper
-               $wrapperInstance = DatabaseWrapperFactory::createWrapperByConfiguredName('city_sections_db_wrapper_class');
-
-               // And set it here
-               $managerInstance->setWrapperInstance($wrapperInstance);
-
-               // Return the prepared instance
-               return $managerInstance;
-       }
-
-       /**
-        * Checks whether at least one map requires expansion
-        *
-        * @return      $requiresExpansion      Whether a map requires expansion
-        * @todo        0% done
-        */
-       public function isMapPendingExpansion () {
-               $this->partialStub('Please implement this method.');
-       }
-}
-
-// [EOF]
-?>
diff --git a/application/city/main/manager/city_sections/.htaccess b/application/city/main/manager/city_sections/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/city/main/manager/city_sections/class_CitySectionsManager.php b/application/city/main/manager/city_sections/class_CitySectionsManager.php
new file mode 100644 (file)
index 0000000..fd1106d
--- /dev/null
@@ -0,0 +1,66 @@
+<?php
+/**
+ * A city sections manager
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2015 City Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+class CitySectionsManager extends BaseFrameworkSystem implements ManageableCitySections, Registerable {
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+       }
+
+       /**
+        * Creates an instance of this class
+        *
+        * @return      $managerInstance        An instance of a ManageableCitySections class
+        */
+       public final static function createCitySectionsManager () {
+               // Get new instance
+               $managerInstance = new CitySectionsManager();
+
+               // Get database wrapper
+               $wrapperInstance = DatabaseWrapperFactory::createWrapperByConfiguredName('city_sections_db_wrapper_class');
+
+               // And set it here
+               $managerInstance->setWrapperInstance($wrapperInstance);
+
+               // Return the prepared instance
+               return $managerInstance;
+       }
+
+       /**
+        * Checks whether at least one map requires expansion
+        *
+        * @return      $requiresExpansion      Whether a map requires expansion
+        * @todo        0% done
+        */
+       public function isMapPendingExpansion () {
+               $this->partialStub('Please implement this method.');
+       }
+}
+
+// [EOF]
+?>