<?php
 /**
  * Controller to returns unstable svg
  *
  * This is the controller to returns unstable svg.
  *
  * @author Innoxess Spain, S.L. <hola@innoxess.es>
  * @copyright 2015-2018 Innoxess Spain, S.L.
  * @package  Application
  * @subpackage Controllers
  *
  */
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
 /**
  * Class Unstable - Controller
  *
  * Controller for Unstable svg.
  */
class Unstable extends CI_Controller
{
	/**
	  * Constructor
	  */
	function __construct()
	{
		parent::__construct();
	}

	/**
	  * Return layout view for table section of crud.
	  */
	function index()
	{
		header('Content-type: image/svg+xml');

		$this->config->load('version');

		$this->load->view('svgs/unstable', [
			'version'			=> $this->config->item('version')
		]);
	}
}
