michalhisim/hierarchy

Tree data hierarchy

0.1.0 2013-06-09 00:50 UTC

This package is not auto-updated.

Last update: 2024-06-03 09:51:46 UTC


README

Usage

Nette forum model

use \Nette\Diagnostics\Debugger,
    \Nette\Database\Connection;

class ForumModel extends Nette\Object {

    /** @var \Nette\Database\Connection */
    private $database;    

    public function __construct(Connection $db) {
        $this->database = $db;
    }

    /**
     * Load forums from database.
     * @return Hierarchy 
     */
    public function getForums() {

        $forums = $this->database->query('SELECT *
                                          FROM forums
                                          ORDER BY root_id'); // No need to be ordered but it's faster
            
                                         
        /*$forums = $this->database->query('SELECT f.*,
                                                t.changed,
                                                COUNT(t.id) AS topics
                                         FROM forums f
                                         LEFT JOIN (SELECT * 
                                                    FROM topics
                                                    ORDER BY changed DESC) t ON t.forum_id=f.id
                                         GROUP BY f.id
                                         ORDER BY root_id, f.order'); */

        return new Tree\Hierarchy($forums, 'ForumNode');
    }
}