X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fimages%2Fclass_BaseImage.php;h=3c44ef604dc369122a8c94c2e0d179b230ca3835;hb=7980aa7bf59674ca147546749d9aa3c7ee5ebff0;hp=578cee0fa740c6be425d078eb1d0b8bd1e274de1;hpb=9d784ac73affc06d5a6d06b5e588b71d30bf144c;p=core.git diff --git a/inc/classes/main/images/class_BaseImage.php b/inc/classes/main/images/class_BaseImage.php index 578cee0f..3c44ef60 100644 --- a/inc/classes/main/images/class_BaseImage.php +++ b/inc/classes/main/images/class_BaseImage.php @@ -2,11 +2,11 @@ /** * A general image class * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @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 @@ -37,6 +37,22 @@ class BaseImage extends BaseFrameworkSystem implements Registerable { */ private $height = ''; + /** + * X/Y + */ + private $x = ''; + private $y = ''; + + /** + * Font size + */ + private $fontSize = ''; + + /** + * Image string + */ + private $imageString = ''; + /** * Background color in RGB */ @@ -505,7 +521,7 @@ class BaseImage extends BaseFrameworkSystem implements Registerable { // Walk through all groups foreach ($templateInstance->getVariableGroups() as $group => $set) { // Set the group - $templateInstance->setVariableGroup($group, false); + $templateInstance->setVariableGroup($group, FALSE); // Compile image string $imageString = $templateInstance->compileRawCode($this->getString());