<?php 
 /**
  * Controller for Welcome
  *
  * This is the controller used to Welcome section.
  *
  * @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 Welcome - Controller
  *
  * Controller for Welcome section.
  */
class Welcome extends MY_Controller
{
	/** @var string This is the model associated to the controller. */
	var $model = '';

	/**
	  * Constructor
	  */
	function __construct()
    {
        parent::__construct();

		$this->icon			= 'fa fa-home';
		$this->main_title	= lang('menu_dashboard');
		$this->main_tip		= lang('dashboard_tip');
	}

	/**
	  * Show view clients into template
	  *
	  */
	public function index()
	{
		$this->show_template('clients');
	}
}
