Subversion-Projekte lars-tiefland.ci

Revision

Revision 528 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<?php

/**
 * Produktfinder
 * 
 * ermöglicht das Finden von Produkten anhand von Suchkriterien
 * 
 * @package WebanOS CI
 * @author Lars Tiefland
 * @copyright 2016
 * @version $Id: Produktfinder.php 528 2016-09-15 11:20:18Z lars $
 * @access public
 */
class Produktfinder extends CI_Controller
{
        /**
         * Produktfinder::__construct()
         * 
         * @return
         */
        public function __construct()
        {
                parent::__construct();
                        $this->smarty->template_dir = array(
                                APPPATH."views/templates/module",
                                $this->smarty->template_dir,
                                );
        }

        /**
         * Produktfinder::index()
         * 
         * @return
         */
        public function index()
        {
                $this->smarty->view('produktfinder.tpl');
        }

        /**
         * Produktfinder::view()
         * 
         * @param mixed $h_id
         * @return
         */
        public function view($h_id)
        {
        }
}