예제 #1
0
 public function current()
 {
     $instance = parent::current();
     ActiveRecord::removeFromPool($instance);
     return $instance;
 }
예제 #2
0
파일: ShipmentFeed.php 프로젝트: saiber/www
 public function __construct(ARSelectFilter $filter, $referencedRecords = array())
 {
     parent::__construct($filter, 'Shipment', array_merge($referencedRecords, array('CustomerOrder')));
 }
예제 #3
0
 public function __construct(ARSelectFilter $filter)
 {
     parent::__construct($filter, 'CustomerOrder', array('User'));
 }
예제 #4
0
파일: ProductFeed.php 프로젝트: saiber/www
 public function __construct(ProductFilter $filter)
 {
     $this->productFilter = $filter;
     parent::__construct($filter->getSelectFilter(), 'Product', array('Category', 'ProductImage', 'Manufacturer'));
 }