Bonjour,

Je vous présente mon problème :
Je génère mon schéma à partir d'une BDD et je le corrige à la main. Mais voilà, il y a une chose qui ne fonctionne pas.
Quand j'ai plusieurs liens vers une même table, Doctrine ne récupère que le dernier objet. Par exemple :

sfGuardUserProfile -> Node
node_id -> id
sfGuardUserProfile -> Node
node_leading_id -> id

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
sfGuardUserProfile:
  actAs:
    Timestampable: ~
  columns:
#...
    node_id:
      type: integer
#...
    node_leading_id:
      type: integer
#...
  relations:
#...
    Node:
      class: Node
      local: node_id
      foreign: id
      foreignAlias: Persons
    NodeLeading:
      class: Node
      local: node_leading_id
      foreign: id
      foreignAlias: Leaders
      onDelete: SET NULL
#...
Node:
  connection: doctrine
  tableName: node
  columns:
    id:
      type: integer
      primary: true
      autoincrement: true
    num:
      type: integer
      unsigned: true
      notnull: true
    name:
      type: string(60)
      notnull: true
    url:
      type: string(150)
      default: 'http://'
  relations:
    Pdsnodes:
      class: Pdsnode
      local: node_id
      foreign: pdsnode_id
      foreignAlias: Nodes
      refClass: NodePdsnode
    Sciencecases:
      class: Sciencecase
      local: node_id
      foreign: sciencecase_id
      foreignAlias: Nodes
      refClass: NodeSciencecase
    Resources:
      class: Resource
      local: node_id
      foreign: resource_id
      refClass: ResourceNode
      foreignAlias: Nodes
Quand je génère les classes, j'ai bien les deux propriétés et les deux getter/setter en commentaire de la classe BasesfGuardUserProfile mais lors de l'affichage dans un module admin generator, la colonne Node ne s'affiche pas alors que la colonne NodeLeading s'affiche correctement.
Donc j'ai décidé de faire un getter dans la classe sfGuardUserProfile :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
    public function getNode()
    {
        return $this->Node->name;
    }
Mais il m'affiche dans la colonne :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
Notice: Undefined property: sfGuardUserProfile::$Node in /home/lvielle/workspace/test/lib/model/doctrine/sfForkedDoctrineApplyPlugin/sfGuardUserProfile.class.php on line 27 Call Stack: 0.0001 322212 1. {main}() /home/lvielle/workspace/test/web/main_dev.php:0 0.0768 2759632 2. sfContext->dispatch() /home/lvielle/workspace/test/web/main_dev.php:13 0.0768 2759660 3. sfFrontWebController->dispatch() /home/lvielle/workspace/symfony14/lib/util/sfContext.class.php:170 0.0769 2766244 4. sfController->forward() /home/lvielle/workspace/symfony14/lib/controller/sfFrontWebController.class.php:48 0.0811 2922484 5. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/controller/sfController.class.php:238 0.0814 2923292 6. sfRenderingFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.0814 2923292 7. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/filter/sfRenderingFilter.class.php:33 0.0816 2924072 8. sfExecutionFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.1526 5590692 9. sfExecutionFilter->handleView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:47 0.1526 5590692 10. sfExecutionFilter->executeView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:116 0.1542 5621252 11. sfPHPView->render() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:155 0.1543 5621504 12. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:185 0.1571 5788700 13. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.3712 6718084 14. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php:19 0.3712 6718084 15. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.3717 6721396 16. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.3718 6722364 17. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.3731 6770276 18. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4843 6996448 19. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php:31 0.4843 6996448 20. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.4848 6999400 21. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.4849 7000392 22. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.4859 7049264 23. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4917 7055852 24. sfOutputEscaperIteratorDecorator->getNode() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php:20 0.4917 7055996 25. sfOutputEscaperObjectDecorator->__call() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056228 26. call_user_func_array() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:64 0.4917 7056360 27. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056468 28. Doctrine_Access->__get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:0 0.4917 7056468 29. Doctrine_Record->get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:72 0.4918 7056864 30. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Record.php:1347 Notice: Trying to get property of non-object in /home/lvielle/workspace/test/lib/model/doctrine/sfForkedDoctrineApplyPlugin/sfGuardUserProfile.class.php on line 27 Call Stack: 0.0001 322212 1. {main}() /home/lvielle/workspace/test/web/main_dev.php:0 0.0768 2759632 2. sfContext->dispatch() /home/lvielle/workspace/test/web/main_dev.php:13 0.0768 2759660 3. sfFrontWebController->dispatch() /home/lvielle/workspace/symfony14/lib/util/sfContext.class.php:170 0.0769 2766244 4. sfController->forward() /home/lvielle/workspace/symfony14/lib/controller/sfFrontWebController.class.php:48 0.0811 2922484 5. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/controller/sfController.class.php:238 0.0814 2923292 6. sfRenderingFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.0814 2923292 7. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/filter/sfRenderingFilter.class.php:33 0.0816 2924072 8. sfExecutionFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.1526 5590692 9. sfExecutionFilter->handleView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:47 0.1526 5590692 10. sfExecutionFilter->executeView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:116 0.1542 5621252 11. sfPHPView->render() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:155 0.1543 5621504 12. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:185 0.1571 5788700 13. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.3712 6718084 14. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php:19 0.3712 6718084 15. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.3717 6721396 16. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.3718 6722364 17. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.3731 6770276 18. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4843 6996448 19. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php:31 0.4843 6996448 20. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.4848 6999400 21. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.4849 7000392 22. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.4859 7049264 23. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4917 7055852 24. sfOutputEscaperIteratorDecorator->getNode() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php:20 0.4917 7055996 25. sfOutputEscaperObjectDecorator->__call() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056228 26. call_user_func_array() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:64 0.4917 7056360 27. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056468 28. Doctrine_Access->__get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:0 0.4917 7056468 29. Doctrine_Record->get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:72 0.4918 7056864 30. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Record.php:1347 Notice: Trying to get property of non-object in /home/lvielle/workspace/test/lib/model/doctrine/sfForkedDoctrineApplyPlugin/sfGuardUserProfile.class.php on line 27 Call Stack: 0.0001 322212 1. {main}() /home/lvielle/workspace/test/web/main_dev.php:0 0.0768 2759632 2. sfContext->dispatch() /home/lvielle/workspace/test/web/main_dev.php:13 0.0768 2759660 3. sfFrontWebController->dispatch() /home/lvielle/workspace/symfony14/lib/util/sfContext.class.php:170 0.0769 2766244 4. sfController->forward() /home/lvielle/workspace/symfony14/lib/controller/sfFrontWebController.class.php:48 0.0811 2922484 5. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/controller/sfController.class.php:238 0.0814 2923292 6. sfRenderingFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.0814 2923292 7. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/filter/sfRenderingFilter.class.php:33 0.0816 2924072 8. sfExecutionFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.1526 5590692 9. sfExecutionFilter->handleView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:47 0.1526 5590692 10. sfExecutionFilter->executeView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:116 0.1542 5621252 11. sfPHPView->render() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:155 0.1543 5621504 12. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:185 0.1571 5788700 13. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.3712 6718084 14. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php:19 0.3712 6718084 15. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.3717 6721396 16. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.3718 6722364 17. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.3731 6770276 18. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4843 6996448 19. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php:31 0.4843 6996448 20. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.4848 6999400 21. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.4849 7000392 22. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.4859 7049264 23. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4917 7055852 24. sfOutputEscaperIteratorDecorator->getNode() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php:20 0.4917 7055996 25. sfOutputEscaperObjectDecorator->__call() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056228 26. call_user_func_array() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:64 0.4917 7056360 27. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 	Notice: Undefined property: sfGuardUserProfile::$Node in /home/lvielle/workspace/test/lib/model/doctrine/sfForkedDoctrineApplyPlugin/sfGuardUserProfile.class.php on line 27 Call Stack: 0.0001 322212 1. {main}() /home/lvielle/workspace/test/web/main_dev.php:0 0.0768 2759632 2. sfContext->dispatch() /home/lvielle/workspace/test/web/main_dev.php:13 0.0768 2759660 3. sfFrontWebController->dispatch() /home/lvielle/workspace/symfony14/lib/util/sfContext.class.php:170 0.0769 2766244 4. sfController->forward() /home/lvielle/workspace/symfony14/lib/controller/sfFrontWebController.class.php:48 0.0811 2922484 5. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/controller/sfController.class.php:238 0.0814 2923292 6. sfRenderingFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.0814 2923292 7. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/filter/sfRenderingFilter.class.php:33 0.0816 2924072 8. sfExecutionFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.1526 5590692 9. sfExecutionFilter->handleView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:47 0.1526 5590692 10. sfExecutionFilter->executeView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:116 0.1542 5621252 11. sfPHPView->render() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:155 0.1543 5621504 12. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:185 0.1571 5788700 13. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.3712 6718084 14. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php:19 0.3712 6718084 15. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.3717 6721396 16. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.3718 6722364 17. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.3731 6770276 18. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4843 6996448 19. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php:31 0.4843 6996448 20. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.4848 6999400 21. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.4849 7000392 22. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.4859 7049264 23. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4917 7055852 24. sfOutputEscaperIteratorDecorator->getNode() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php:20 0.4917 7055996 25. sfOutputEscaperObjectDecorator->__call() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056228 26. call_user_func_array() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:64 0.4917 7056360 27. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056468 28. Doctrine_Access->__get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:0 0.4917 7056468 29. Doctrine_Record->get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:72 0.4918 7056864 30. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Record.php:1347 Notice: Trying to get property of non-object in /home/lvielle/workspace/test/lib/model/doctrine/sfForkedDoctrineApplyPlugin/sfGuardUserProfile.class.php on line 27 Call Stack: 0.0001 322212 1. {main}() /home/lvielle/workspace/test/web/main_dev.php:0 0.0768 2759632 2. sfContext->dispatch() /home/lvielle/workspace/test/web/main_dev.php:13 0.0768 2759660 3. sfFrontWebController->dispatch() /home/lvielle/workspace/symfony14/lib/util/sfContext.class.php:170 0.0769 2766244 4. sfController->forward() /home/lvielle/workspace/symfony14/lib/controller/sfFrontWebController.class.php:48 0.0811 2922484 5. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/controller/sfController.class.php:238 0.0814 2923292 6. sfRenderingFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.0814 2923292 7. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/filter/sfRenderingFilter.class.php:33 0.0816 2924072 8. sfExecutionFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.1526 5590692 9. sfExecutionFilter->handleView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:47 0.1526 5590692 10. sfExecutionFilter->executeView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:116 0.1542 5621252 11. sfPHPView->render() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:155 0.1543 5621504 12. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:185 0.1571 5788700 13. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.3712 6718084 14. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php:19 0.3712 6718084 15. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.3717 6721396 16. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.3718 6722364 17. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.3731 6770276 18. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4843 6996448 19. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php:31 0.4843 6996448 20. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.4848 6999400 21. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.4849 7000392 22. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.4859 7049264 23. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4917 7055852 24. sfOutputEscaperIteratorDecorator->getNode() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php:20 0.4917 7055996 25. sfOutputEscaperObjectDecorator->__call() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056228 26. call_user_func_array() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:64 0.4917 7056360 27. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056468 28. Doctrine_Access->__get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:0 0.4917 7056468 29. Doctrine_Record->get() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php:72 0.4918 7056864 30. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Record.php:1347 Notice: Trying to get property of non-object in /home/lvielle/workspace/test/lib/model/doctrine/sfForkedDoctrineApplyPlugin/sfGuardUserProfile.class.php on line 27 Call Stack: 0.0001 322212 1. {main}() /home/lvielle/workspace/test/web/main_dev.php:0 0.0768 2759632 2. sfContext->dispatch() /home/lvielle/workspace/test/web/main_dev.php:13 0.0768 2759660 3. sfFrontWebController->dispatch() /home/lvielle/workspace/symfony14/lib/util/sfContext.class.php:170 0.0769 2766244 4. sfController->forward() /home/lvielle/workspace/symfony14/lib/controller/sfFrontWebController.class.php:48 0.0811 2922484 5. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/controller/sfController.class.php:238 0.0814 2923292 6. sfRenderingFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.0814 2923292 7. sfFilterChain->execute() /home/lvielle/workspace/symfony14/lib/filter/sfRenderingFilter.class.php:33 0.0816 2924072 8. sfExecutionFilter->execute() /home/lvielle/workspace/symfony14/lib/filter/sfFilterChain.class.php:53 0.1526 5590692 9. sfExecutionFilter->handleView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:47 0.1526 5590692 10. sfExecutionFilter->executeView() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:116 0.1542 5621252 11. sfPHPView->render() /home/lvielle/workspace/symfony14/lib/filter/sfExecutionFilter.class.php:155 0.1543 5621504 12. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:185 0.1571 5788700 13. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.3712 6718084 14. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/indexSuccess.php:19 0.3712 6718084 15. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.3717 6721396 16. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.3718 6722364 17. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.3731 6770276 18. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4843 6996448 19. include_partial() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list.php:31 0.4843 6996448 20. get_partial() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:180 0.4848 6999400 21. sfPartialView->render() /home/lvielle/workspace/symfony14/lib/helper/PartialHelper.php:218 0.4849 7000392 22. sfPHPView->renderFile() /home/lvielle/workspace/symfony14/lib/view/sfPartialView.class.php:124 0.4859 7049264 23. require('/home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php') /home/lvielle/workspace/symfony14/lib/view/sfPHPView.class.php:75 0.4917 7055852 24. sfOutputEscaperIteratorDecorator->getNode() /home/lvielle/workspace/test/cache/main/dev/modules/autoProfile/templates/_list_td_tabular.php:20 0.4917 7055996 25. sfOutputEscaperObjectDecorator->__call() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0 0.4917 7056228 26. call_user_func_array() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:64 0.4917 7056360 27. sfGuardUserProfile->getNode() /home/lvielle/workspace/symfony14/lib/escaper/sfOutputEscaperObjectDecorator.class.php:0
J'en est déduit que Doctrine ne récupérait pas l'objet Node. Que faire ?