src/Entity/Blog.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BlogRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=BlogRepository::class)
  7.  */
  8. class Blog
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $titulo;
  20.     /**
  21.      * @ORM\Column(type="text", nullable=true)
  22.      */
  23.     private $resumen;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $imagen_grande;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $imagen_listado;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $imagen_home;
  36.     /**
  37.      * @ORM\Column(type="boolean")
  38.      */
  39.     private $destacado;
  40.     /**
  41.      * @ORM\Column(type="date")
  42.      */
  43.     private $fecha;
  44.     /**
  45.      * @ORM\Column(type="boolean")
  46.      */
  47.     private $visible;
  48.     /**
  49.      * @ORM\Column(type="text")
  50.      */
  51.     private $contenido;
  52.     /**
  53.      * @ORM\Column(type="datetime_immutable")
  54.      */
  55.     private $created_at;
  56.     /**
  57.      * @ORM\ManyToOne(targetEntity=CategoriaBlog::class)
  58.      */
  59.     private $categoria;
  60.     public function __toString()
  61.     {
  62.         return $this->getTitulo();
  63.     }
  64.     public function __construct()
  65.     {
  66.         $this->created_at = new \DateTimeImmutable();
  67.     }
  68.     public function getId(): ?int
  69.     {
  70.         return $this->id;
  71.     }
  72.     public function getTitulo(): ?string
  73.     {
  74.         return $this->titulo;
  75.     }
  76.     public function setTitulo(string $titulo): self
  77.     {
  78.         $this->titulo $titulo;
  79.         return $this;
  80.     }
  81.     public function getResumen(): ?string
  82.     {
  83.         return $this->resumen;
  84.     }
  85.     public function setResumen(?string $resumen): self
  86.     {
  87.         $this->resumen $resumen;
  88.         return $this;
  89.     }
  90.     public function getImagenGrande(): ?string
  91.     {
  92.         return $this->imagen_grande;
  93.     }
  94.     public function setImagenGrande(string $imagen_grande): self
  95.     {
  96.         $this->imagen_grande $imagen_grande;
  97.         return $this;
  98.     }
  99.     public function getImagenListado(): ?string
  100.     {
  101.         return $this->imagen_listado;
  102.     }
  103.     public function setImagenListado(?string $imagen_listado): self
  104.     {
  105.         $this->imagen_listado $imagen_listado;
  106.         return $this;
  107.     }
  108.     public function getImagenHome(): ?string
  109.     {
  110.         return $this->imagen_home;
  111.     }
  112.     public function setImagenHome(?string $imagen_home): self
  113.     {
  114.         $this->imagen_home $imagen_home;
  115.         return $this;
  116.     }
  117.     public function getDestacado(): ?bool
  118.     {
  119.         return $this->destacado;
  120.     }
  121.     public function setDestacado(bool $destacado): self
  122.     {
  123.         $this->destacado $destacado;
  124.         return $this;
  125.     }
  126.     public function getFecha(): ?\DateTimeInterface
  127.     {
  128.         return $this->fecha;
  129.     }
  130.     public function setFecha(\DateTimeInterface $fecha): self
  131.     {
  132.         $this->fecha $fecha;
  133.         return $this;
  134.     }
  135.     public function getVisible(): ?bool
  136.     {
  137.         return $this->visible;
  138.     }
  139.     public function setVisible(bool $visible): self
  140.     {
  141.         $this->visible $visible;
  142.         return $this;
  143.     }
  144.     public function getContenido(): ?string
  145.     {
  146.         return $this->contenido;
  147.     }
  148.     public function setContenido(string $contenido): self
  149.     {
  150.         $this->contenido $contenido;
  151.         return $this;
  152.     }
  153.     public function getCreatedAt(): ?\DateTimeImmutable
  154.     {
  155.         return $this->created_at;
  156.     }
  157.     public function setCreatedAt(\DateTimeImmutable $created_at): self
  158.     {
  159.         $this->created_at $created_at;
  160.         return $this;
  161.     }
  162.     public function getCategoria(): ?CategoriaBlog
  163.     {
  164.         return $this->categoria;
  165.     }
  166.     public function setCategoria(?CategoriaBlog $categoria): self
  167.     {
  168.         $this->categoria $categoria;
  169.         return $this;
  170.     }
  171. }