25 lines
474 B
PHP
25 lines
474 B
PHP
<?php
|
|
if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/*
|
|
* InvoicePlane
|
|
*
|
|
* @author InvoicePlane Developers & Contributors
|
|
* @copyright Copyright (c) 2012 - 2017 InvoicePlane.com
|
|
* @license https://invoiceplane.com/license.txt
|
|
* @link https://invoiceplane.com
|
|
*/
|
|
|
|
/**
|
|
* Class Welcome
|
|
*/
|
|
class Welcome extends CI_Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$this->load->helper('url');
|
|
|
|
$this->load->view('welcome');
|
|
}
|
|
}
|