1<?php defined('SYSPATH') OR die('No direct access allowed.');
2/**
3 * Debug controller.
4 *
5 * @package    PNP4Nagios
6 * @author     Joerg Linge
7 * @license    GPL
8 */
9class Color_Controller extends System_Controller  {
10
11
12    public function __construct()
13    {
14        parent::__construct();
15        $this->template          = $this->add_view('template');
16        $this->template->color   = $this->add_view('color');
17	$this->template->color->color_box   = $this->add_view('color_box');
18        $this->template->color->logo_box    = $this->add_view('logo_box');
19    }
20
21    public function index()
22    {
23        $this->scheme    = $this->config->scheme;
24
25    }
26}
27