Subversion-Projekte lars-tiefland.ci

Revision

Revision 529 | Revision 533 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<?php

/**
 *
 * @package WebanOS CI
 * @author Lars Tiefland <ltiefland@gmail.com> 
 * @copyright 2016
 * @version $Rev: 531 $
 */

/**
 * Login
 * 
 * @package WebanOS CI
 * @author Lars Tiefland
 * @copyright 2016
 * @version $Id: Login.php 531 2016-09-15 11:42:18Z lars $
 * @access public
 */
class Login extends CI_Controller
{
        /**
         * Login::__construct()
         * 
         * @return
         */
        public function __construct()
        {
                parent::__construct();
                $this->smarty->assign('aktiverTab', 3);
                $this->load->model('login_model', 'login');
        }

        public function index()
        {
                $this->smarty->view('login_center.tpl');
        }

        /**
         * Login::login()
         * 
         * @return
         */
        public function login()
        {

        }

        /**
         * Login::save()
         * 
         * @return
         */
        public function save()
        {
                $this->login->create();
        }
}

?>