Skip to content

Instantly share code, notes, and snippets.

@paulchubatyy
Created May 14, 2010 21:25
Show Gist options
  • Save paulchubatyy/401697 to your computer and use it in GitHub Desktop.
Save paulchubatyy/401697 to your computer and use it in GitHub Desktop.
<?php
$category = Jelly::select('category', 2);
// виводим id бацьки
echo $category->parent->id;
// крутимо дітей на...
foreach ($category->children as $cat) {
echo $cat->title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment