This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
May be pretty much anything here, flash, image with link, google adsense, anything..... | |
You may set the contents of this block on administrative area. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$category = Jelly::select('category', 2); | |
// виводим id бацьки | |
echo $category->parent->id; | |
// крутимо дітей на... | |
foreach ($category->children as $cat) { | |
echo $cat->title; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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( |
NewerOlder