Subversion-Projekte lars-tiefland.ci

Revision

Revision 397 | Revision 520 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<?php

class Produktfinder extends CI_Controller
{
        public function __construct()
        {
                parent::__construct();
                        $this->smarty->template_dir = array(
                                APPPATH."views/templates/module",
                                $this->smarty->template_dir,
                                );
        }

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

        public function view($h_id)
        {
        }
}