Skip to content

Instantly share code, notes, and snippets.

View paulchubatyy's full-sized avatar
🤍
Evaporating

Paul (xobb) Chubatyy paulchubatyy

🤍
Evaporating
View GitHub Profile
May be pretty much anything here, flash, image with link, google adsense, anything.....
You may set the contents of this block on administrative area.
<?php
$category = Jelly::select('category', 2);
// виводим id бацьки
echo $category->parent->id;
// крутимо дітей на...
foreach ($category->children as $cat) {
echo $cat->title;
<?php
class Model_Category extends Model_Abstract {
protected static $_path;
public static function initialize(Jelly_Meta $meta)
{
$meta->table('categories')
->name_key('title')
->sorting(array('materialized_path' => 'asc'))
->fields(array(