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.

19 lines
334 B

12 years ago
<?php
namespace yii\db\ar;
class Relation extends ActiveQuery
{
public $parentClass;
12 years ago
public function findWith(&$parentRecords)
12 years ago
{
12 years ago
$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)
}
12 years ago
}
}