yii2-nested-sets icon indicating copy to clipboard operation
yii2-nested-sets copied to clipboard

Код из документации не работает

Open alexweb-zz opened this issue 10 years ago • 1 comments

//To get all the parents of a node
$countries = Menu::findOne(['name' => 'Countries']);
$parents = $countries->parents()->all();
//To get the first parent of a node
$countries = Menu::findOne(['name' => 'Countries']);
$parent = $countries->parents(1)->one();

alexweb-zz avatar Oct 15 '15 09:10 alexweb-zz

Код отлично работает, просто у Countries нет родителей, поэтому вернется пустой результат. Документация будет поправлена в ближайшее время.

creocoder avatar Oct 25 '15 21:10 creocoder