model() public static method

Returns the static model of the specified AR class.
public static model ( string $className = __CLASS__ ) : ProductFilter
$className string active record class name.
return ProductFilter the static model class
コード例 #1
0
ファイル: Product.php プロジェクト: damnpoet/yiicart
 public function clearAllFiltersRelations()
 {
     ProductFilter::model()->deleteAllByAttributes(array('product_id' => $this->product_id));
 }