Revision 5 | Revision 9 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** @author Lars Tiefland* @copyright 2016*/class Artikel_model extends CI_Controller{public function __construct(){parent::__construct();$this->load->model('artikel_model', 'artikel');}public function view($id){$data = $this->artikel->get_artikel($id);$this->load->view('templates/single_artikel', $data);}}?>