$prevDepth = 1;
foreach($arr as $item) {
$currDepth = $item['DEPTH_LEVEL'];
if($prevDepth < $currDepth) {
// открываем вложенный список
} elseif($prevDepth > $currDepth) {
for($i = 0; $i < $prevDepth - $currDepth; $i++) {
// закрываем вложенный список
}
}
// рисуем элемент
$prevDepth = $currDepth;
}
$a = $_SESSION['logged_user']->login;
var_dump($a);
class Images extends ActiveRecord
{
// ...
public function getProduct()
{
return $this->hasOne(Products::className(), ['id' => 'product_id']);
}
}