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.
18 lines
334 B
18 lines
334 B
<?php |
|
|
|
namespace yii\db\ar; |
|
|
|
class Relation extends ActiveQuery |
|
{ |
|
public $parentClass; |
|
|
|
public function findWith(&$parentRecords) |
|
{ |
|
$this->andWhere(array('in', $links, $keys)); |
|
$records = $this->find(); |
|
foreach ($records as $record) { |
|
// find the matching parent record(s) |
|
// insert into the parent records(s) |
|
} |
|
} |
|
}
|
|
|