mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-12 11:27:53 -05:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
14 lines
166 B
PHP
14 lines
166 B
PHP
<?php
|
|
class Barcode extends CI_Controller
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
function index()
|
|
{
|
|
$this->load->view('barcode');
|
|
}
|
|
}
|
|
?>
|