Covivo/mobicoop

View on GitHub
api/src/Article/Entity/Iframe.php

Summary

Maintainability
B
5 hrs
Test Coverage
<?php
/**
 * Copyright (c) 2021, MOBICOOP. All rights reserved.
 * This project is dual licensed under AGPL and proprietary licence.
 ***************************
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU Affero General Public License as
 *    published by the Free Software Foundation, either version 3 of the
 *    License, or (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <gnu.org/licenses>.
 ***************************
 *    Licence MOBICOOP described in the file
 *    LICENSE
 **************************/

namespace App\Article\Entity;

/**
* An iframe
* @author Maxime Bardot <maxime.bardot@mobicoop.org>
*/
class Iframe
{
    /**
     * @var string title of the iframe
     */
    private $title;

    /**
     * @var string Src of the iframe
     */
    private $src;

    /**
     * @var int Width of the iframe
     */
    private $width;

    /**
     * @var int Height of the iframe
     */
    private $height;

    /**
     * @var string Allow field of the iframe
     */
    private $allow;

    public function getTitle(): ?string
    {
        return $this->title;
    }
    
    public function setTitle(string $title): self
    {
        $this->title = $title;

        return $this;
    }

    public function getSrc(): ?string
    {
        return $this->src;
    }
    
    public function setSrc(string $src): self
    {
        $this->src = $src;
        
        return $this;
    }
    
    public function getWidth(): ?int
    {
        return $this->width;
    }
    
    public function setWidth(int $width): self
    {
        $this->width = $width;
        
        return $this;
    }
    
    public function getHeight(): ?int
    {
        return $this->height;
    }
    
    public function setHeight(int $height): self
    {
        $this->height = $height;
        
        return $this;
    }
    
    public function getAllow(): ?string
    {
        return $this->allow;
    }
    
    public function setAllow(string $allow): self
    {
        $this->allow = $allow;
        
        return $this;
    }
}