product.php 384 B

12345678910111213141516171819202122232425
  1. <?php
  2. !defined('BASEPATH') && exit('No direct script access allowed');
  3. class Product extends MY_Main_Controller
  4. {
  5. public function __construct()
  6. {
  7. parent::__construct();
  8. }
  9. public function index()
  10. {
  11. $this->load_view();
  12. }
  13. public function detail()
  14. {
  15. $this->action_name = __FUNCTION__;
  16. $this->load_view();
  17. }
  18. }
  19. ?>