From: Roland Haeder Date: Sun, 5 Apr 2015 19:31:24 +0000 (+0200) Subject: Proper naming + 'core' updated. X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=commitdiff_plain;h=af6065c02c363b52ce0faaaf02cfac4a679d24d1 Proper naming + 'core' updated. Signed-off-by: Roland Haeder --- diff --git a/application/selector/class_ApplicationSelector.php b/application/selector/class_ApplicationSelector.php index 01bfb4b..f8e080a 100644 --- a/application/selector/class_ApplicationSelector.php +++ b/application/selector/class_ApplicationSelector.php @@ -189,15 +189,15 @@ class ApplicationSelector extends BaseFrameworkSystem { */ public function loadApplicationTemplates () { // Iterate through all applications - for ($idx = $this->foundApps->getIterator(); $idx->valid(); $idx->next()) { + for ($iteratorInstance = $this->foundApps->getIterator(); $iteratorInstance->valid(); $iteratorInstance->next()) { // Get current application - $appInstance = $idx->current(); + $appInstance = $iteratorInstance->current(); // Prepare the template engine for the current template $templateInstance = $this->prepareTemplateInstance($appInstance); // Try to load the web template - $templateInstance->loadWebTemplate(sprintf("%s_%s", + $templateInstance->loadWebTemplate(sprintf('%s_%s', $this->getConfigInstance()->getConfigEntry('tpl_selector_prefix'), strtolower($appInstance->getAppShortName()) )); @@ -258,10 +258,10 @@ class ApplicationSelector extends BaseFrameworkSystem { $templateInstance->loadCodeTemplate($this->getConfigInstance()->getConfigEntry('selector_apps_tpl')); // Add all loaded application templates together - $dummy = ""; - for ($idx = $this->getLoadedTemplates()->getIterator(); $idx->valid(); $idx->next()) { + $dummy = ''; + for ($iteratorInstance = $this->getLoadedTemplates()->getIterator(); $iteratorInstance->valid(); $iteratorInstance->next()) { // Get current item from array object - $curr = $idx->current(); + $curr = $iteratorInstance->current(); // Do some sanity checks on the loaded item if (!is_array($curr)) { @@ -269,14 +269,14 @@ class ApplicationSelector extends BaseFrameworkSystem { throw new NoArrayException($curr, self::EXCEPTION_IS_NO_ARRAY); } elseif (count($curr) != 2) { // Not expected count of entries - throw new InvalidArrayCountException(array($this, "curr", count($curr), 2), self::EXCEPTION_ARRAY_HAS_INVALID_COUNT); + throw new InvalidArrayCountException(array($this, 'curr', count($curr), 2), self::EXCEPTION_ARRAY_HAS_INVALID_COUNT); } elseif (!isset($curr['web_template_class']) || (!isset($curr['app_instance']))) { // Expected entries missing - throw new MissingArrayElementsException(array($this, "curr", array("template_class", "app_instance")), self::EXCEPTION_ARRAY_ELEMENTS_MISSING); + throw new MissingArrayElementsException(array($this, 'curr', array('template_class', 'app_instance')), self::EXCEPTION_ARRAY_ELEMENTS_MISSING); } // Debug output - die(__METHOD__."()
".print_r($curr, true)."
"); + die(__METHOD__.'()
'.print_r($curr, true).'
'); } // END - for } } diff --git a/core b/core index b84edaf..6a1f1d3 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit b84edaf9f45857dea7078c230cea0290089c0770 +Subproject commit 6a1f1d3ccf79613ad0792e206fd2c1932dbb291e