]> git.mxchange.org Git - shipsimu.git/blobdiff - application/selector/init.php
Dev mode deactivated
[shipsimu.git] / application / selector / init.php
index cf84d6876a5d124d25ff887ce048e2a380ff8072..faba5c4c78fc710ed9422a495d41a3c0c86b7e89 100644 (file)
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-//
-//
-// Get an instance of the initializer
-$eval = sprintf("\$app = %s::getInstance();",
-       FrameworkConfiguration::getInstance()->readConfig("app_helper_class")
-);
-eval($eval);
-
-// Set application name and version
-$app->setAppName("Applikationsausw&auml;hler");
-$app->setAppVersion("0.1a");
-$app->setAppShortName(FrameworkConfiguration::getInstance()->readConfig("selector_name"));
 
 // Initialize output system
 require(PATH . 'inc/output.php');
@@ -46,5 +34,22 @@ require(PATH . 'inc/file_io.php');
 // Include the language sub-system
 require(PATH . 'inc/language.php');
 
+// Generate call-back function
+$callback = sprintf("%s::getInstance",
+       FrameworkConfiguration::getInstance()->readConfig('app_helper_class')
+);
+
+// Get an instance of the helper
+$app = call_user_func_array($callback, array());
+
+// Set application name and version
+$app->setAppName("Applikationsausw&auml;hler");
+$app->setAppVersion("0.1a");
+$app->setAppShortName(FrameworkConfiguration::getInstance()->readConfig('selector_name'));
+
+// Set instances
+$app->setFileIoInstance($io);
+$app->setLanguageInstance($lang);
+
 // [EOF]
 ?>