You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
373 B
27 lines
373 B
11 years ago
|
<?php
|
||
|
|
||
11 years ago
|
namespace yiiunit\data\ar\mongodb\file;
|
||
11 years ago
|
|
||
|
class CustomerFile extends ActiveRecord
|
||
|
{
|
||
|
public static function collectionName()
|
||
|
{
|
||
|
return 'customer_fs';
|
||
|
}
|
||
|
|
||
|
public function attributes()
|
||
|
{
|
||
|
return array_merge(
|
||
|
parent::attributes(),
|
||
|
[
|
||
|
'tag',
|
||
|
'status',
|
||
|
]
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public static function activeOnly($query)
|
||
|
{
|
||
|
$query->andWhere(['status' => 2]);
|
||
|
}
|
||
|
}
|