Copyright updated, interface RenderableMenu added
[core.git] / inc / classes / main / images / class_BaseImage.php
index 0e7b00dd78eff27900ab1fa9124cec0eabd276cd..e15738f422be1b85f483a836bcf06baf48c01dc4 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -25,40 +25,40 @@ class BaseImage extends BaseFrameworkSystem implements Registerable {
        /**
         * Image type
         */
        /**
         * Image type
         */
-       private $imageType = "";
+       private $imageType = '';
 
        /**
         * Width of the image
         */
 
        /**
         * Width of the image
         */
-       private $width = "";
+       private $width = '';
 
        /**
         * Height of the image
         */
 
        /**
         * Height of the image
         */
-       private $height = "";
+       private $height = '';
 
        /**
         * Background color in RGB
         */
        private $backgroundColor = array(
 
        /**
         * Background color in RGB
         */
        private $backgroundColor = array(
-               'red'   => "",
-               'green' => "",
-               'blue'  => ""
+               'red'   => '',
+               'green' => '',
+               'blue'  => ''
        );
 
        /**
         * Foreground color in RGB
         */
        private $foregroundColor = array(
        );
 
        /**
         * Foreground color in RGB
         */
        private $foregroundColor = array(
-               'red'   => "",
-               'green' => "",
-               'blue'  => ""
+               'red'   => '',
+               'green' => '',
+               'blue'  => ''
        );
 
        /**
         * Current choosen color array
         */
        );
 
        /**
         * Current choosen color array
         */
-       private $colorMode = "";
+       private $colorMode = '';
 
        /**
         * Image resource
 
        /**
         * Image resource
@@ -68,12 +68,12 @@ class BaseImage extends BaseFrameworkSystem implements Registerable {
        /**
         * Image name
         */
        /**
         * Image name
         */
-       private $imageName = "";
+       private $imageName = '';
 
        /**
         * String name
         */
 
        /**
         * String name
         */
-       private $stringName = "";
+       private $stringName = '';
 
        /**
         * Groupable image strings?
 
        /**
         * Groupable image strings?