public function level($depth, $column)
    {
        $single = (!is_array($column)) ? $column : false;
        $level = array();
        if ($stmt = $this->db->query('SELECT '.$this->id.', '.implode(', ', (array) $column).' FROM '.$this->table.' WHERE level = ? ORDER BY lft', $depth, 'assoc')) {