#3551: Make default colors changeable from inside an inherited class so that colors could be changed via an plugin.

This commit is contained in:
Yannick Herzog
2017-11-17 14:37:56 +01:00
committed by fguillot
parent 2de5b22951
commit 3b786e05e0

View File

@@ -15,10 +15,10 @@ class ColorModel extends Base
/** /**
* Default colors * Default colors
* *
* @access private * @access protected
* @var array * @var array
*/ */
private $default_colors = array( protected $default_colors = array(
'yellow' => array( 'yellow' => array(
'name' => 'Yellow', 'name' => 'Yellow',
'background' => 'rgb(245, 247, 196)', 'background' => 'rgb(245, 247, 196)',