Subversion-Projekte lars-tiefland.ci

Revision

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

Revision Autor Zeilennr. Zeile
397 lars 1
<?php
2
 
520 lars 3
/**
4
 * Produktfinder
5
 *
6
 * ermöglicht das Finden von Produkten anhand von Suchkriterien
7
 *
525 lars 8
 * @package WebanOS CI
9
 * @author Lars Tiefland
10
 * @copyright 2016
11
 * @version $Id: Produktfinder.php 528 2016-09-15 11:20:18Z lars $
520 lars 12
 * @access public
13
 */
397 lars 14
class Produktfinder extends CI_Controller
15
{
520 lars 16
	/**
17
	 * Produktfinder::__construct()
18
	 *
19
	 * @return
20
	 */
397 lars 21
	public function __construct()
22
	{
23
		parent::__construct();
399 lars 24
			$this->smarty->template_dir = array(
25
				APPPATH."views/templates/module",
26
				$this->smarty->template_dir,
27
				);
397 lars 28
	}
29
 
520 lars 30
	/**
31
	 * Produktfinder::index()
32
	 *
33
	 * @return
34
	 */
397 lars 35
	public function index()
36
	{
399 lars 37
		$this->smarty->view('produktfinder.tpl');
397 lars 38
	}
39
 
520 lars 40
	/**
41
	 * Produktfinder::view()
42
	 *
43
	 * @param mixed $h_id
44
	 * @return
45
	 */
397 lars 46
	public function view($h_id)
47
	{
48
	}
49
}