X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fpersonell%2Fclass_SimulatorPersonell.php;h=2aabd8b328a1d1972c7a89b9ed2f5145e62f003c;hp=d5aa01e4c26329227d7df4d3b5485370b92b0191;hb=55b327a3f5f2fe1d244532e07be7444e94b2a768;hpb=1d128d8532290e84885d09d2d3f0060abd08e49e diff --git a/application/ship-simu/main/personell/class_SimulatorPersonell.php b/application/ship-simu/main/personell/class_SimulatorPersonell.php index d5aa01e..2aabd8b 100644 --- a/application/ship-simu/main/personell/class_SimulatorPersonell.php +++ b/application/ship-simu/main/personell/class_SimulatorPersonell.php @@ -6,7 +6,7 @@ * @version 0.0.0 * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @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 @@ -40,15 +40,11 @@ class SimulatorPersonell extends BasePersonell { // Call parent constructor parent::__construct(__CLASS__); - if (((defined('DEBUG_PERSONELL')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output(sprintf("[%s:] Konstruktor erreicht.
\n", - $this->__toString() - )); - // Set description $this->setObjectDescription("Simulationspersonal"); // Create unique ID - $this->createUniqueID(); + $this->generateUniqueId(); // Clean-up a little $this->removeSystemArray(); @@ -202,7 +198,7 @@ class SimulatorPersonell extends BasePersonell { __CLASS__, __LINE__ )); - $this->personellList = new FrameworkArrayObject(); + $this->personellList = new FrameworkArrayObject("FakedPersonellList"); } else { throw new PersonellListAlreadyCreatedException($this, self::EXCEPTION_DIMENSION_ARRAY_INVALID); } @@ -274,7 +270,7 @@ class SimulatorPersonell extends BasePersonell { $this->setCacheCond($serialized); // Create cached list - $this->setAllCacheList(new FrameworkArrayObject()); + $this->setAllCacheList(new FrameworkArrayObject("FakedCacheList")); // Search all unemployed personells for ($idx = $this->personellList->getIterator(); $idx->valid(); $idx->next()) {