Welcome Guest, Not a member yet? Register   Sign In
need help with datamapper orm and nestedsets
#1

[eluser]kev[/eluser]
Hi all,

I just started using datamapper orm, which i found nice. I'm trying to use the nestedsets extenstion that comes with it. I have a categories table with the following field,

id
root_id
left_id
right_id
title

Below is the code im using to test it,

Code:
$tree = new Category();

  $tree->select_root(1);
  $tree->title = 'First Category';
  
  $tree->new_root();
  $tree->get_root();

  $tree->title = 'First Sub Category';

  $tree->new_first_child();

I get this in the table, see below :

id root_id left_id right_id
1 1 1 4
2 1 2 3

have the data been inserted correctly?

I have uploaded an attachment also.

Now that the data is in the database, I tried to ouput it using dump_tree, see code below :

Code:
echo $tree->dump_tree( array('title'), 'html' , FALSE );

But using this I get a blank screen.

This is my model :

Code:
<?php

class Category extends DataMapper {

var $table = 'categories';

    public $nestedsets = array(
        'name' => 'title'
    );
}

Can someome help me understand this? Sad


Messages In This Thread
need help with datamapper orm and nestedsets - by El Forum - 09-26-2013, 10:33 AM
need help with datamapper orm and nestedsets - by El Forum - 09-26-2013, 11:04 AM
need help with datamapper orm and nestedsets - by El Forum - 09-26-2013, 12:31 PM
need help with datamapper orm and nestedsets - by El Forum - 09-27-2013, 06:03 AM
need help with datamapper orm and nestedsets - by El Forum - 10-01-2013, 09:54 AM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 10:11 AM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 10:58 AM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 11:26 AM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 11:29 AM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 12:52 PM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 01:30 PM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 01:57 PM
need help with datamapper orm and nestedsets - by El Forum - 10-07-2013, 11:51 PM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 02:19 AM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 03:19 AM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 04:52 AM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 10:38 AM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 11:19 AM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 11:27 AM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 11:43 AM
need help with datamapper orm and nestedsets - by El Forum - 10-08-2013, 12:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB