aissel-astro/public/assets/images/mobile/welcome.php

23 lines
328 B
PHP
Raw Normal View History

2024-11-07 05:21:11 +00:00
<?php
/**
*
*@author
*@since
*@package application.controllers
*@created on
*/
class Welcome extends Controller {
function Welcome()
{
parent::Controller();
}
function index()
{
$this->load->view('welcome_message');
}
}
/* End of file welcome.php */
/* Location: ./system/application/controllers/welcome.php */