IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Symfony PHP Discussion :

Méthode qui checke l'existence dans une relation many to many [2.x]


Sujet :

Symfony PHP

  1. #1
    Membre du Club
    Homme Profil pro
    Chef de projet en SSII
    Inscrit en
    Janvier 2009
    Messages
    64
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Chef de projet en SSII
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Janvier 2009
    Messages : 64
    Points : 41
    Points
    41
    Par défaut Méthode qui checke l'existence dans une relation many to many
    Bonjour à tous,

    Actuellement , j'apprends Symfony2, ayant une bonne expérience de Symfony1... mais je bloque sur un point stupide...

    Je m'explique , pour mon petit plaisir, je code un bugtracker, et dans ce bugtracker, on peut bookmarker un bug.
    Cela signifie techniquement qu'on a une relation many-to-many avec attributs entre l'objet bug et l'objet user.

    Je souhaiterais, pouvoir créer une méthode "isBookMarkedByUser($user) dans mon entité bug qui me permettrait de vérifier si le bug a déjà été bookmarké ou non par le user connecté.
    Mais (parce qu'il y'a un mais...), pour vérifier l'existence du bookmark entre ce bug et ce user, je suis obligé de requeter vers ma BDD pour savoir. Or dans une entité, on ne peut pas appeller un repository extérieur ( je ne peux pas appeller mon repository bookmark dans mon entité bug)

    Comble de la prétention je souhaiterais pouvoir appeller cette méthode directement dans Twig pour modifier l'affichage en conséquence de la présence du bookmark ou non.

    Quelqu'un aurait il un moyen de faire ceci de manière propre ?

    Ps : je ne demande pas un code tout fait, je suis la pour apprendre

  2. #2
    Membre habitué
    Homme Profil pro
    Chef d'entreprise
    Inscrit en
    Mai 2011
    Messages
    122
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Chef d'entreprise
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Mai 2011
    Messages : 122
    Points : 169
    Points
    169
    Par défaut
    Bonjour,

    Tu as une relation many-to-many, donc à partir de ton bugRepository tu peux faire une requête qui va compter le nombre de fois qu'un utilisateur donné à signaler le bug (a priori 0 ou 1), ce qui sera la valeur retournée par ta méthode.

    Tu appelles cette méthode dans le controller et tu passes le résultat à ta vue (je ne vois pas l'intérêt de faire cet appel dans la vue). Dans la vue, tu n'as plus qu'à tester cette valeur pour afficher ou non le bookmark (pratique avec une variable qui vaut 0 ou 1).

  3. #3
    Membre du Club
    Homme Profil pro
    Chef de projet en SSII
    Inscrit en
    Janvier 2009
    Messages
    64
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Chef de projet en SSII
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Janvier 2009
    Messages : 64
    Points : 41
    Points
    41
    Par défaut
    Bonjour,

    Merci beaucoup pour cette réponse. En fait , j'aurais voulu pouvoir faire quelque chose du genre dans mon Twig.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
    {%if bug.isBookmarked(app.user)%}
    ...
    {% else %}
    ...
    {% endif %}
    L'intéret etait la. ( certainement une déformation de Symfony1 )

    Du coup, dans ma page ou j'affiche ma liste de bugs, je suis obligé de générer un tableau "parallèle" aux bugs. ici le tableau "id => is_bookmarked"

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    Array(
      '1' => 0,
      '2' => 1
    )
    et je dois aller vérifier si dans la case de mon tableau correspondante a mon bug, la valeur est 0 ou 1

    C'est bien ca ?

  4. #4
    Membre habitué
    Homme Profil pro
    Chef d'entreprise
    Inscrit en
    Mai 2011
    Messages
    122
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Chef d'entreprise
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Mai 2011
    Messages : 122
    Points : 169
    Points
    169
    Par défaut
    Tu as une liste de bug en fait, je n'avais pas vu les choses comme ça. Peux-tu poster ton controller et tes entités bug et bookmark pour bien voir ce que tu cherches à faire ?

  5. #5
    Membre du Club
    Homme Profil pro
    Chef de projet en SSII
    Inscrit en
    Janvier 2009
    Messages
    64
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Chef de projet en SSII
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Janvier 2009
    Messages : 64
    Points : 41
    Points
    41
    Par défaut
    Le controlleur:

    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
    /*
       * fonction permettant l'affichage d'une liste de bugs sur la page d'accueil
       */
     
      public function indexAction()
      {
        $user = $this->container->get( 'security.context' )->getToken()->getUser();
     
        if ( ! is_object( $user ) )
        {
          return $this->redirect( $this->generateUrl( "fos_user_security_login" ) );
        }
     
     
        $em              = $this->getDoctrine()->getEntityManager();
        $repository_bugs = $em->getRepository( 'McBugBundle:Bug' )->findAll();
     
        return $this->render( "McBugBundle:Bug:index.html.twig" , array( 'repository_bugs' => $repository_bugs ) );
      }
    L'entité bug:
    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
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    <?php
     
    namespace Mc\BugBundle\Entity;
     
    use Doctrine\ORM\Mapping as ORM;
    use Mc\UserBundle\Entity\User;
     
    /**
     * Mc\BugBundle\Entity\Bug
     *
     * @ORM\Table()
     * @ORM\Entity(repositoryClass="Mc\BugBundle\Entity\BugRepository")
     * @ORM\HasLifecycleCallbacks
     */
    class Bug
    {
     
      /**
       * @var integer $id
       *
       * @ORM\Column(name="id", type="integer")
       * @ORM\Id
       * @ORM\GeneratedValue(strategy="AUTO")
       */
      private $id;
     
      /**
       * @var string $title
       *
       * @ORM\Column(name="title", type="string", length=255)
       */
      private $title;
     
      /**
       * @var string $description
       *
       * @ORM\Column(name="description", type="text")
       */
      private $description;
     
      /**
       * @var int $progress
       *
       * @ORM\Column(name="progress", type="integer")
       */
      private $progress;
     
      /**
       * @var \DateTime $createdAt
       *
       * @ORM\Column(name="createdAt", type="datetime")
       */
      private $createdAt;
     
      /**
       * @var \DateTime $updatedAt
       *
       * @ORM\Column(name="updatedAt", type="datetime")
       */
      private $updatedAt;
     
      /**
       *  @ORM\OneToMany(targetEntity="Bookmark", mappedBy="bookmark", cascade={"remove", "persist"})
       */
      protected $bookmarks;
     
      /**
       * @ORM\OneToMany(targetEntity="BugComment", mappedBy="bug", cascade={"remove", "persist"})
       */
      protected $comments;
     
      /**
       * @ORM\ManyToOne(targetEntity="Mc\BugBundle\Entity\BugStatus")
       * @ORM\JoinColumn(nullable=false)
       */
      private $bugStatus;
     
      /**
       * @ORM\ManyToOne(targetEntity="Mc\BugBundle\Entity\BugSeverity")
       * @ORM\JoinColumn(nullable=false)
       */
      private $bugSeverity;
     
      /**
       * @ORM\ManyToOne(targetEntity="Mc\BugBundle\Entity\BugGenre")
       * @ORM\JoinColumn(nullable=false)
       */
      private $bugGenre;
     
      /**
       * @ORM\OneToMany(targetEntity="HistoricalStatus", mappedBy="bug", cascade={"all"})
       * @ORM\JoinColumn(name="bug_id", referencedColumnName="id")
       */
      protected $historicalStatus;
     
      /**
       * @var int $old_status
       *
       */
      private $oldStatus;
     
      /**
       * @var int $old_progress
       *
       */
      private $oldProgress;
     
      /**
       * Get id
       *
       * @return integer
       */
      public function getId()
      {
        return $this->id;
      }
     
      /**
       * Set title
       *
       * @param string $title
       * @return Problem
       */
      public function setTitle( $title )
      {
        $this->title = $title;
     
        return $this;
      }
     
      /**
       * Get title
       *
       * @return string 
       */
      public function getTitle()
      {
        return $this->title;
      }
     
      /**
       * Set description
       *
       * @param string $description
       * @return Problem
       */
      public function setDescription( $description )
      {
        $this->description = $description;
     
        return $this;
      }
     
      /**
       * Get description
       *
       * @return string 
       */
      public function getDescription()
      {
        return $this->description;
      }
     
      /**
       * Set progress
       *
       * @param int $progress
       * @return Problem
       */
      public function setProgress( $progress )
      {
        $this->progress = $progress;
     
        return $this;
      }
     
      /**
       * Get progress
       *
       * @return int 
       */
      public function getProgress()
      {
        return $this->progress;
      }
     
      /**
       * Set createdAt
       *
       * @param \DateTime $createdAt
       * @return Bug
       */
      public function setCreatedAt( $createdAt )
      {
        $this->createdAt = $createdAt;
     
        return $this;
      }
     
      /**
       * Get createdAt
       *
       * @return \DateTime 
       */
      public function getCreatedAt()
      {
        return $this->createdAt;
      }
     
      /**
       * Set updatedAt
       *
       * @param \DateTime $updatedAt
       * @return Problem
       */
      public function setUpdatedAt( $updatedAt )
      {
        $this->updatedAt = $updatedAt;
     
        return $this;
      }
     
      /**
       * Get updatedAt
       *
       * @return \DateTime 
       */
      public function getUpdatedAt()
      {
        return $this->updatedAt;
      }
     
      /**
       * Set Id
       *
       * @param Integer $id
       * @return Bug
       */
      public function setId( $id )
      {
        $this->id = $id;
        return $this;
      }
     
      /**
       * Set BugStatus
       *
       * @param Mc\BugBundle\Entity\BugStatus $bug
       * @return Commentaire
       */
      public function setBugStatus( \Mc\BugBundle\Entity\BugStatus $bugStatus )
      {
        $this->bugStatus = $bugStatus;
        return $this;
      }
     
      /**
       * Get BugStatus
       *
       * @return Sdz\BlogBundle\Entity\Article 
       */
      public function getBugStatus()
      {
        return $this->bugStatus;
      }
     
      /**
       * Set BugSeverity
       *
       * @param Mc\BugBundle\Entity\BugSeverity $bug
       * @return Bug
       */
      public function setBugSeverity( \Mc\BugBundle\Entity\BugSeverity $bugSeverity )
      {
        $this->bugSeverity = $bugSeverity;
        return $this;
      }
     
      /**
       * Get BugSeverity
       *
       * @return Mc\BugBundle\Entity\BugSeverity $bugSeverity
       */
      public function getBugSeverity()
      {
        return $this->bugSeverity;
      }
     
      /**
       * Set bugGenre
       *
       * @param Mc\BugBundle\Entity\bugGenre $bug
       * @return Bug
       */
      public function setBugGenre( \Mc\BugBundle\Entity\BugGenre $bugGenre )
      {
        $this->bugGenre = $bugGenre;
        return $this;
      }
     
      /**
       * Get BugGenre
       *
       * @return Mc\BugBundle\Entity\bugGenre $bugGenre
       */
      public function getBugGenre()
      {
        return $this->bugGenre;
      }
     
      /**
       * Get OldStatus 
       * @return integer $oldStatus
       */
      public function getOldStatus()
      {
        return $this->oldStatus;
      }
     
      /**
       * Sets the old Status at the loading of an object (done via Service)
       * @param Bug $bug
       */
      public function setOldStatus( $oldStatus )
      {
        $this->oldStatus = $oldStatus;
     
        return $this;
      }
     
      /**
       * Get OldProgress 
       * @return integer $oldProgress
       */
      public function getOldProgress()
      {
        return $this->oldProgress;
      }
     
      /**
       * Sets the old Progress at the loading of an object (done via Service)
       * @param Bug $bug
       */
      public function setOldProgress( $oldProgress )
      {
        $this->oldProgress = $oldProgress;
     
        return $this;
      }
     
      public function __construct()
      {
        $this->progress  = 0;
        $this->oldStatus = $this->getBugStatus();
     
        //setting the default state to
     
        $this->bugStatus = new BugStatus();
        $this->createdAt = new \DateTime();
        $this->updatedAt = new \DateTime();
      }
     
      /**
       * Add comments
       *
       * @param Mc\BugBundle\Entity\BugComment $comments
       * @return Bug
       */
      public function addComment( \Mc\BugBundle\Entity\BugComment $comments )
      {
        $this->comments[ ] = $comments;
     
        return $this;
      }
     
      /**
       * Remove comments
       *
       * @param Mc\BugBundle\Entity\BugComment $comments
       */
      public function removeComment( \Mc\BugBundle\Entity\BugComment $comments )
      {
        $this->comments->removeElement( $comments );
      }
     
      /**
       * Get comments
       *
       * @return Doctrine\Common\Collections\Collection 
       */
      public function getComments()
      {
        return $this->comments;
      }
     
      /**
       * Add historicalStatus
       *
       * @param Mc\BugBundle\Entity\HistoricalStatus $historicalStatus
       * @return Bug
       */
      public function addHistoricalStatu( \Mc\BugBundle\Entity\HistoricalStatus $historicalStatus )
      {
        $this->historicalStatus[ ] = $historicalStatus;
     
        return $this;
      }
     
      /**
       * Remove historicalStatus
       *
       * @param Mc\BugBundle\Entity\HistoricalStatus $historicalStatus
       */
      public function removeHistoricalStatu( \Mc\BugBundle\Entity\HistoricalStatus $historicalStatus )
      {
        $this->historicalStatus->removeElement( $historicalStatus );
      }
     
      /**
       * Get historicalStatus
       *
       * @return Doctrine\Common\Collections\Collection 
       */
      public function getHistoricalStatus()
      {
        return $this->historicalStatus;
      }
     
      /**
       * Add bookmarks
       *
       * @param Mc\BugBundle\Entity\Bookmark $bookmarks
       * @return Bug
       */
      public function addBookmark( \Mc\BugBundle\Entity\Bookmark $bookmarks )
      {
        $this->bookmarks[ ] = $bookmarks;
     
        return $this;
      }
     
      /**
       * Remove bookmarks
       *
       * @param Mc\BugBundle\Entity\Bookmark $bookmarks
       */
      public function removeBookmark( \Mc\BugBundle\Entity\Bookmark $bookmarks )
      {
        $this->bookmarks->removeElement( $bookmarks );
      }
     
      /**
       * Get bookmarks
       *
       * @return Doctrine\Common\Collections\Collection 
       */
      public function getBookmarks()
      {
        return $this->bookmarks;
      }
     
     
     
    }
    L'entité bookmark:
    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
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    <?php
     
    namespace Mc\BugBundle\Entity;
     
    use Doctrine\ORM\Mapping as ORM;
     
    /**
     * Mc\BugBundle\Entity\Bookmark
     *
     * @ORM\Table()
     * @ORM\Entity(repositoryClass="Mc\BugBundle\Entity\BookmarkRepository")
     * @ORM\Table(uniqueConstraints={@ORM\UniqueConstraint(name="idxUnique", columns={"bug_id", "user_id"})})
     */
    class Bookmark
    {
     
      /**
       * @var integer $id
       *
       * @ORM\Column(name="id", type="integer")
       * @ORM\Id
       * @ORM\GeneratedValue(strategy="AUTO")
       */
      private $id;
     
      /**
       * @var \DateTime $created_at
       *
       * @ORM\Column(name="created_at", type="datetime")
       */
      private $created_at;
     
      /**
       * @var \DateTime $updated_at
       *
       * @ORM\Column(name="updated_at", type="datetime")
       */
      private $updated_at;
     
      /**
       * @ORM\ManyToOne(targetEntity="Mc\UserBundle\Entity\User", inversedBy="user", cascade={"remove"})
       * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
       */
      protected $user;
     
      /**
       * @ORM\ManyToOne(targetEntity="Bug", inversedBy="bug", cascade={"remove"})
       * @ORM\JoinColumn(name="bug_id", referencedColumnName="id")
       */
      protected $bug;
     
      /**
       * Get id
       *
       * @return integer 
       */
      public function getId()
      {
        return $this->id;
      }
     
      /**
       * Set created_at
       *
       * @param \DateTime $createdAt
       * @return Bookmark
       */
      public function setCreatedAt( $createdAt )
      {
        $this->created_at = $createdAt;
     
        return $this;
      }
     
      /**
       * Get created_at
       *
       * @return \DateTime 
       */
      public function getCreatedAt()
      {
        return $this->created_at;
      }
     
      /**
       * Set updated_at
       *
       * @param \DateTime $updatedAt
       * @return Bookmark
       */
      public function setUpdatedAt( $updatedAt )
      {
        $this->updated_at = $updatedAt;
     
        return $this;
      }
     
      /**
       * Get updated_at
       *
       * @return \DateTime 
       */
      public function getUpdatedAt()
      {
        return $this->updated_at;
      }
     
      /**
       * Set user
       *
       * @param Mc\BugBundle\Entity\User $user
       * @return Bookmark
       */
      public function setUser( \Mc\UserBundle\Entity\User $user = null )
      {
        $this->user = $user;
     
        return $this;
      }
     
      /**
       * Get user
       *
       * @return Mc\BugBundle\Entity\User 
       */
      public function getUser()
      {
        return $this->user;
      }
     
      /**
       * Set bug
       *
       * @param Mc\BugBundle\Entity\Bug $bug
       * @return Bookmark
       */
      public function setBug( \Mc\BugBundle\Entity\Bug $bug = null )
      {
        $this->bug = $bug;
     
        return $this;
      }
     
      /**
       * Get bug
       *
       * @return Mc\BugBundle\Entity\Bug 
       */
      public function getBug()
      {
        return $this->bug;
      }
     
      /**
       * constructor
       */
      public function __construct()
      {
        $this->created_at = new \DateTime();
        $this->updated_at = new \DateTime();
      }
     
    }
    Dans le twig de l'action index

    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
     
    <tbody>
              {% for bug in repository_bugs %}
          <tr>
            <td><a href="{{path('bug_voir' , {'id': bug.id} )}}">{{ bug.id }}</a>
                {#% if bug.isPinned('user', app.user.id) %}{#passage de parametres a la méthode de l'entité
                oui
                {% else %}
                non
                {%endif%#}
              </td>
              <td><a class="popover_launcher" href="{{path('get_ajax_desc' , {'id' : bug.id }) }}">{{ bug.title }}</span></td>
              <td style="background-color:{{bug.bugStatus.color}}">{{ bug.bugStatus | capitalize}}</td>
              <td>{{ bug.createdAt|date("d/m/Y") }}</td>
              <td>{{ bug.updatedAt|date("d/m/Y") }}</td>
              <td>
                <a class='icon-no_underline' href='{{ path('bug_edit' , {id : bug.id}) }}' title="Modifier le bug">
                  <i class="icon-edit"></i>
                </a>
                <a class='icon-no_underline' href='{{ path('bug_edit' , {id : bug.id}) }}' title="Voir les commentaires">
                  <i class="icon-comments-alt"></i> 
                </a>
                <a class='icon-no_underline' href='{{ path('bug_edit' , {id : bug.id}) }}' title="Supprimer le rapport">
                  <i class="icon-remove"></i> 
                </a>
                <!-- c'est ici que je voudrais modifier l'affichage en fonction du fait que le bug soit bookmarké ou non -->
                <a class='icon-no_underline' href='{{ path('bug_set_as_bookmark' , {id : bug.id}) }}' title="Marquer en favori">
                  <i class="icon-bookmark"></i> 
                </a>
                <a class='icon-no_underline' href='{{ path('bug_edit' , {id : bug.id}) }}' title="Marquer résolu">
                  <i class="icon-check"></i> 
                </a>
              </td>
            </tr>
              {% else %}
            <tr>
              <td colspan="6">Aucun Bug enregistré</td>
            </tr>  
              {% endfor %}
          </tbody>
    C'est vrai que je n'avais pas évoqué l'affichage dans une liste. Je reste ouvert a toute proposition.

    En tous cas merci de t'interesser a mon probleme

  6. #6
    Membre habitué
    Homme Profil pro
    Chef d'entreprise
    Inscrit en
    Mai 2011
    Messages
    122
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Chef d'entreprise
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Mai 2011
    Messages : 122
    Points : 169
    Points
    169
    Par défaut
    Ok, je vois mieux.

    1 - Dans bugRepository, créer une requête qui récupère tous les bugs et les bookmarks liés de l'utilisateur (attention à utiliser la bonne jointure afin de récupérer tous les bugs).

    2 - Utilise cette méthode à la place de findAll() dans ton controller

    3 - Dans ta vue, test si bug.bookmarks est null et affiche le lien du bookmark si c'est le cas..

    En effet, si ta requête est correctement effectuée, tu auras tous les bugs enregistrés et l'attribut bookmark de ton objet bug sera un objet bookmark si une entrée correspondant à l'utilisateur courant existe et sera null si ce n'est pas le cas.

  7. #7
    Membre du Club
    Homme Profil pro
    Chef de projet en SSII
    Inscrit en
    Janvier 2009
    Messages
    64
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Chef de projet en SSII
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Janvier 2009
    Messages : 64
    Points : 41
    Points
    41
    Par défaut
    Alors j'ai tenté ta solution, sans grand succès a vrai dire

    Dans mon repository, j'ai mis en place une méthode
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    class BugRepository extends EntityRepository
    {
     
      public  function findAllWithBookmarksQuery(){
        $q = $this->createQueryBuilder('b')
                  ->leftJoin("b.Bookmark", "bo")
                  ->getQuery();
     
     
        return $q->getResult();
     
     
      }
    Or la , j'ai une bien triste erreur , qui ne me parle pas du tout:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    [Semantical Error] line 0, col 61 near 'bo': Error: Class Mc\BugBundle\Entity\Bug has no association named Bookmark
    J'ai bien tenté de suivre une certaine logique, mais la , ca me dépasse

    Une piste ?

  8. #8
    Membre habitué
    Homme Profil pro
    Chef d'entreprise
    Inscrit en
    Mai 2011
    Messages
    122
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Chef d'entreprise
    Secteur : Arts - Culture

    Informations forums :
    Inscription : Mai 2011
    Messages : 122
    Points : 169
    Points
    169
    Par défaut
    Class Mc\BugBundle\Entity\Bug has no association named Bookmark
    Dans ton entité bug, l'attribut qui te permet de faire le lien avec l'entité bookmark n'est pas Bookmark mais bookmarks.

  9. #9
    Membre du Club
    Homme Profil pro
    Chef de projet en SSII
    Inscrit en
    Janvier 2009
    Messages
    64
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Chef de projet en SSII
    Secteur : Administration - Collectivité locale

    Informations forums :
    Inscription : Janvier 2009
    Messages : 64
    Points : 41
    Points
    41
    Par défaut
    Comment dire ...

    J'ai honte , mais en tous cas merci pour tes réponses fort utiles.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Énumérer les web-part qui existent dans une ferme SharePoint
    Par nizar_grindi dans le forum Développement Sharepoint
    Réponses: 1
    Dernier message: 30/05/2011, 08h56
  2. Réponses: 3
    Dernier message: 09/10/2010, 18h09
  3. Réponses: 2
    Dernier message: 29/09/2009, 15h33
  4. Réponses: 1
    Dernier message: 28/07/2009, 18h13
  5. Réponses: 4
    Dernier message: 18/06/2007, 08h30

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo