File indexing completed on 2024-12-22 05:33:23
0001 <?php 0002 0003 class ReportsModel extends EModel 0004 { 0005 public function __construct() 0006 { 0007 parent::__construct("reports"); 0008 } 0009 0010 public function add() 0011 { 0012 $this->insert(array("target")); 0013 } 0014 } 0015 0016 ?>