Order.php 235 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <?php class Order extends CI_Driver_Library { public function __construct () { $this->valid_drivers = ['ordersource']; } public function ordersource($id) { return $this->ordersource->all($id); } }