]> Raphaƫl G. Git Repositories - userbundle/blobdiff - Entity/Group.php
Add doctrine preUpdate lifecycleCallbacks on civility and group
[userbundle] / Entity / Group.php
index d7ca3c7e0c56651406fa793711ced9bfa040f61e..188e1bce5c188e851047706041cb81285040687d 100644 (file)
@@ -12,6 +12,7 @@
 namespace Rapsys\UserBundle\Entity;
 
 use Doctrine\Common\Collections\ArrayCollection;
+use Doctrine\ORM\Event\PreUpdateEventArgs;
 
 use Rapsys\UserBundle\Entity\User;
 
@@ -160,6 +161,17 @@ class Group {
                return $this->users;
        }
 
+       /**
+        * {@inheritdoc}
+        */
+       public function preUpdate(PreUpdateEventArgs $eventArgs) {
+               //Check that we have a group instance
+               if (($user = $eventArgs->getEntity()) instanceof Group) {
+                       //Set updated value
+                       $user->setUpdated(new \DateTime('now'));
+               }
+       }
+
        /**
         * Returns a string representation of the group
         *