src/AppBundle/Entity/ComponenteBanner.php line 15
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* Componente.
*
* @ORM\Table(name="componente")
* @ORM\Entity(repositoryClass="AppBundle\Repository\ComponenteRepository")
* @ORM\HasLifecycleCallbacks()
*/
class ComponenteBanner extends Componente
{
/**
* @Assert\NotBlank
*/
private $titulo;
/**
* @Assert\NotBlank
*/
private $bloqueBannerId;
/**
* Get the value of titulo
*/
public function getTitulo()
{
return $this->titulo;
}
/**
* Set the value of titulo
*
* @return self
*/
public function setTitulo($titulo)
{
$this->titulo = $titulo;
return $this;
}
/**
* Get the value of bloqueBannerId
*/
public function getBloqueBannerId()
{
return $this->bloqueBannerId;
}
/**
* Set the value of bloqueBannerId
*
* @return self
*/
public function setBloqueBannerId($bloqueBannerId)
{
$this->bloqueBannerId = $bloqueBannerId;
return $this;
}
public function _toComponente()
{
$componente = new Componente();
$componente
->setId($this->id)
->setOrden($this->orden)
->setVisibilidad($this->visibilidad)
->setFullWidth($this->fullWidth)
->setDescripcion($this->descripcion)
->setTipoId($this->tipoId)
->setTipo($this->tipo)
->setMobile($this->isMobile())
->setConfiguracion(
json_encode(
[
'titulo' => $this->titulo,
'bloqueBannerId' => $this->bloqueBannerId->getId(),
]
)
);
return $componente;
}
}