src/AppBundle/AdminBundle/Entity/Admin_Access_Role_Master.php line 192

Open in your IDE?
  1. <?php
  2. namespace App\AppBundle\AdminBundle\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use JsonSerializable;
  7. /**
  8.  * AddOns
  9.  *
  10.  * @ORM\Entity
  11.  * @ORM\Table(name="admin_access_role_master")
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class Admin_Access_Role_Master implements JsonSerializable
  15. {
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\Column(type="string", nullable=false)
  24.      * @Assert\NotBlank()
  25.      */
  26.     private $name;
  27.     /**
  28.      * @ORM\Column(type="boolean", nullable=true, options={"default" : 1})
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $active;
  32.     /**
  33.      * One user has many tokens. This is the inverse side.
  34.      * @ORM\OneToMany(targetEntity="Admin_Access_Role_Sub", mappedBy="admin_access_role_master")
  35.      */
  36.     private $admin_access_role_subs;
  37.     /**
  38.      * @return mixed
  39.      */
  40.     public function getId()
  41.     {
  42.         return $this->id;
  43.     }
  44.     /**
  45.      * @return mixed
  46.      */
  47.     public function getName()
  48.     {
  49.         return $this->name;
  50.     }
  51.     /**
  52.      * @param mixed $name
  53.      */
  54.     public function setName($name)
  55.     {
  56.         $this->name $name;
  57.     }
  58.     /**
  59.      * @return mixed
  60.      */
  61.     public function getActive()
  62.     {
  63.         return $this->active;
  64.     }
  65.     /**
  66.      * @param mixed $active
  67.      */
  68.     public function setActive($active)
  69.     {
  70.         $this->active $active;
  71.     }
  72.     /**
  73.      * @return mixed
  74.      */
  75.     public function getAdminAccessRoleSubs()
  76.     {
  77.         return $this->admin_access_role_subs;
  78.     }
  79.     /**
  80.      * @param mixed $admin_access_role_subs
  81.      */
  82.     public function setAdminAccessRoleSubs($admin_access_role_subs)
  83.     {
  84.         $this->admin_access_role_subs $admin_access_role_subs;
  85.     }
  86.     public function getAdminAccessRoleSubsDetails() {
  87.         $adminRoleSubs = array();
  88.         foreach ($this->admin_access_role_subs as $admin_access_role_sub) {
  89.             array_push($adminRoleSubs$admin_access_role_sub);
  90.         }
  91.         return $adminRoleSubs;
  92.     }
  93.     /**
  94.      * @var string $created
  95.      *
  96.      * @ORM\Column(name="created_at", type="string", nullable=false)
  97.      */
  98.     protected $createdAt;
  99.     /**
  100.      * @var string $updated
  101.      *
  102.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  103.      */
  104.     protected $updatedAt;
  105.     public function getCreatedAt()
  106.     {
  107.         return $this->createdAt;
  108.     }
  109.     public function setCreatedAt($createdAt)
  110.     {
  111.         $this->createdAt $createdAt;
  112.         return $this;
  113.     }
  114.     public function getUpdatedAt()
  115.     {
  116.         return $this->updatedAt;
  117.     }
  118.     public function setUpdatedAt($updatedAt)
  119.     {
  120.         $this->updatedAt $updatedAt;
  121.         return $this;
  122.     }
  123.     /**
  124.      * @ORM\PrePersist
  125.      * @ORM\PreUpdate
  126.      */
  127.     public function updatedTimestamps()
  128.     {
  129.         $this->setUpdatedAt(round(microtime(true) * 1000));
  130.         if ($this->getCreatedAt() === null) {
  131.             $this->setCreatedAt(round(microtime(true) * 1000));
  132.         }
  133.     }
  134.     public function __construct() {
  135.         $this->admin_access_role_subs = new ArrayCollection();
  136.         $this->setCreatedAt(round(microtime(true) * 1000));
  137.     }
  138.     public function jsonSerialize()
  139.     {
  140.         return array(
  141.             'id' => $this->id,
  142.             'active' => $this->active,
  143.             'name' => $this->name,
  144.             'admin_access_role_subs' => $this->getAdminAccessRoleSubsDetails(),
  145.         );
  146.     }
  147. }