<?php
namespace Plugin\CMBlogPro42\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
if (!class_exists('\Plugin\CMBlogPro42\Entity\Blog')) {
/**
* Blog
*
* @ORM\Table(name="plg_blog_data")
* @ORM\InheritanceType("SINGLE_TABLE")
* @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255)
* @ORM\HasLifecycleCallbacks()
* @ORM\Entity(repositoryClass="Plugin\CMBlogPro42\Repository\BlogRepository")
* @UniqueEntity("slug")
*/
class Blog extends \Eccube\Entity\AbstractEntity
{
/**
* @return string
*/
public function __toString()
{
return (string) $this->getTitle();
}
/**
* Is Enable
*
* @return bool
*
* @deprecated
*/
public function isEnable()
{
return $this->getStatus()->getId() === \Plugin\CMBlogPro42\Entity\BlogStatus::DISPLAY_SHOW ? true : false;
}
public function getMainListImage()
{
$BlogImages = $this->getBlogImage();
return empty($BlogImages) ? null : $BlogImages[0];
}
public function getMainFileName()
{
if (count($this->BlogImage) > 0) {
return $this->BlogImage[0];
} else {
return null;
}
}
/**
* @var int
*
* @ORM\Column(name="id", type="integer", options={"unsigned":true})
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="title", type="string", length=200)
*/
private $title;
/**
* @var int
*
* @ORM\Column(name="members", type="integer" , nullable=true)
*/
private $members;
/**
* @var text
*
* @ORM\Column(name="linkurl", type="text" , nullable=true)
*/
private $linkurl;
/**
* @var string
*
* @ORM\Column(type="string", length=255, nullable=true, unique=true)
*/
private $slug;
/**
* @var \Doctrine\Common\Collections\Collection
*
* @ORM\OneToMany(targetEntity="Plugin\CMBlogPro42\Entity\BlogCategory", mappedBy="Blog", cascade={"persist","remove"})
*/
private $BlogCategories;
/**
* @var \Doctrine\Common\Collections\Collection
*
* @ORM\OneToMany(targetEntity="Plugin\CMBlogPro42\Entity\BlogShare", mappedBy="Blog", cascade={"persist","remove"})
*/
private $BlogShares;
/**
* @var \Doctrine\Common\Collections\Collection
*
* @ORM\OneToMany(targetEntity="Plugin\CMBlogPro42\Entity\BlogImage", mappedBy="Blog", cascade={"remove"})
* @ORM\OrderBy({
* "sort_no"="ASC"
* })
*/
private $BlogImage;
/**
* @var \Doctrine\Common\Collections\Collection
*
* @ORM\OneToMany(targetEntity="Plugin\CMBlogPro42\Entity\BlogProduct", mappedBy="Blog", cascade={"persist","remove"})
*/
private $BlogProduct;
/**
* @var string|null
*
* @ORM\Column(name="fig_caption", type="string", length=255, nullable=true)
*/
private $fig_caption;
/**
* @var text|null
*
* @ORM\Column(name="body", type="text", nullable=true)
*/
private $body;
/**
* @var string|null
*
* @ORM\Column(name="author", type="string", length=255, nullable=true)
*/
private $author;
/**
* @var string|null
*
* @ORM\Column(name="description", type="string", length=255, nullable=true)
*/
private $description;
/**
* @var string|null
*
* @ORM\Column(name="keyword", type="string", length=255, nullable=true)
*/
private $keyword;
/**
* @var string|null
*
* @ORM\Column(name="meta_robots", type="string", length=255, nullable=true)
*/
private $robot;
/**
* @var string|null
*
* @ORM\Column(name="meta_tags", type="text", nullable=true)
*/
private $metatag;
/**
* @var \DateTime
*
* @ORM\Column(name="release_date", type="datetime", nullable=true)
*/
private $release_date;
/**
* @var \DateTime
*
* @ORM\Column(name="create_date", type="datetime")
*/
private $create_date;
/**
* @var \DateTime
*
* @ORM\Column(name="update_date", type="datetime")
*/
private $update_date;
/**
* @var \Eccube\Entity\Member
*
* @ORM\ManyToOne(targetEntity="Eccube\Entity\Member")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="creator_id", referencedColumnName="id")
* })
*/
private $Creator;
/**
* @var \Plugin\CMBlogPro42\Entity\BlogStatus
*
* @ORM\ManyToOne(targetEntity="Plugin\CMBlogPro42\Entity\BlogStatus")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="blog_status_id", referencedColumnName="id")
* })
*/
private $Status;
/**
* @var tag|null
*
* @ORM\Column(name="tag", type="text", nullable=true)
*/
private $tag;
/**
* Constructor
*/
public function __construct()
{
$this->BlogCategories = new \Doctrine\Common\Collections\ArrayCollection();
$this->BlogShares = new \Doctrine\Common\Collections\ArrayCollection();
$this->BlogProduct = new \Doctrine\Common\Collections\ArrayCollection();
$this->BlogImage = new \Doctrine\Common\Collections\ArrayCollection();
}
public function __clone()
{
$this->id = null;
}
public function copy()
{
// コピー対象外
$Categories = $this->getBlogCategories();
$this->BlogCategories = new ArrayCollection();
foreach ($Categories as $Category) {
$CopyCategory = clone $Category;
$this->addBlogCategory($CopyCategory);
$CopyCategory->setBlog($this);
}
$Shares = $this->getBlogShares();
$this->BlogShares = new ArrayCollection();
foreach ($Shares as $Share) {
$CopyShare = clone $Share;
$this->addBlogShare($CopyShare);
$CopyShare->setBlog($this);
}
$Products = $this->getBlogProduct();
$this->BlogProduct = new ArrayCollection();
foreach ($Products as $Product) {
$CopyProduct = clone $Product;
$this->addBlogProduct($CopyProduct);
$CopyProduct->setBlog($this);
}
$Images = $this->getBlogImage();
$this->BlogImage = new ArrayCollection();
foreach ($Images as $Image) {
$CloneImage = clone $Image;
$this->addBlogImage($CloneImage);
$CloneImage->setBlog($this);
}
return $this;
}
/**
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* @param string $title
*
* @return Blog;
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* @return boolean
*/
public function getMembers()
{
return $this->members;
}
/**
* @param text $members
*
* @return Blog;
*/
public function setMembers($members)
{
$this->members = $members;
return $this;
}
/**
* @return text
*/
public function getLinkurl()
{
return $this->linkurl;
}
/**
* @param text $linkurl
*
* @return Blog;
*/
public function setLinkurl($linkurl)
{
$this->linkurl = $linkurl;
return $this;
}
/**
* @return string
*/
public function getSlug()
{
return $this->slug;
}
/**
* @param string $slug
*
* @return Blog;
*/
public function setSlug($slug)
{
$this->slug = $slug;
return $this;
}
/**
* Add blogCategory.
*
* @param \Plugin\CMBlogPro42\Entity\BlogCategory $blogCategory
*
* @return Blog
*/
public function addBlogCategory(\Plugin\CMBlogPro42\Entity\BlogCategory $blogCategory)
{
$this->BlogCategories[] = $blogCategory;
return $this;
}
/**
* Add blogShare.
*
* @param \Plugin\CMBlogPro42\Entity\BlogShare $blogShare
*
* @return Blog
*/
public function addBlogShare(\Plugin\CMBlogPro42\Entity\blogShare $blogShare)
{
$this->BlogShares[] = $blogShare;
return $this;
}
/**
* Remove blogCategory.
*
* @param \Plugin\CMBlogPro42\Entity\BlogCategory $blogCategory
*
* @return boolean TRUE if this collection contained the specified element, FALSE otherwise.
*/
public function removeBlogCategory(\Plugin\CMBlogPro42\Entity\BlogCategory $blogCategory)
{
return $this->BlogCategories->removeElement($blogCategory);
}
/**
* Remove blogShare.
*
* @param \Plugin\CMBlogPro42\Entity\blogShare $blogShare
*
* @return boolean TRUE if this collection contained the specified element, FALSE otherwise.
*/
public function removeBlogShare(\Plugin\CMBlogPro42\Entity\BlogShare $blogShare)
{
return $this->BlogShares->removeElement($blogShare);
}
/**
* Get blogCategories.
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getBlogCategories()
{
return $this->BlogCategories;
}
/**
* Get blogShares.
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getBlogShares()
{
return $this->BlogShares;
}
/**
* Add blogProduct.
*
* @param \Plugin\CMBlogPro42\Entity\BlogProduct $blogProduct
*
* @return Blog
*/
public function addBlogProduct(\Plugin\CMBlogPro42\Entity\BlogProduct $blogProduct)
{
$this->BlogProduct[] = $blogProduct;
return $this;
}
/**
* Remove blogProduct.
*
* @param \Plugin\CMBlogPro42\Entity\BlogProduct $blogProduct
*
* @return boolean TRUE if this collection contained the specified element, FALSE otherwise.
*/
public function removeBlogProduct(\Plugin\CMBlogPro42\Entity\BlogProduct $blogProduct)
{
return $this->BlogProduct->removeElement($blogProduct);
}
/**
* Get blogProduct.
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getBlogProduct()
{
return $this->BlogProduct;
}
/**
* Add blogImage.
*
* @param \Plugin\CMBlogPro42\Entity\BlogImage $blogImage
*
* @return Blog
*/
public function addBlogImage(\Plugin\CMBlogPro42\Entity\BlogImage $blogImage)
{
$this->BlogImage[] = $blogImage;
return $this;
}
/**
* Remove blogImage.
*
* @param \Plugin\CMBlogPro42\Entity\BlogImage $blogImage
*
* @return boolean TRUE if this collection contained the specified element, FALSE otherwise.
*/
public function removeBlogImage(\Plugin\CMBlogPro42\Entity\BlogImage $blogImage)
{
return $this->BlogImage->removeElement($blogImage);
}
/**
* Get blogImage.
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getBlogImage()
{
return $this->BlogImage;
}
/**
* @return string
*/
public function getBody()
{
return $this->body;
}
/**
* @param string $body
*
* @return Blog;
*/
public function setBody($body)
{
$this->body = $body;
return $this;
}
/**
* @return string
*/
public function getAuthor()
{
return $this->author;
}
/**
* @param string $author
*
* @return Blog;
*/
public function setAuthor($author)
{
$this->author = $author;
return $this;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @param string $description
*
* @return Blog;
*/
public function setDescription($description)
{
$this->description = $description;
return $this;
}
/**
* @return string
*/
public function getKeyword()
{
return $this->keyword;
}
/**
* @param string $keyword
*
* @return Blog;
*/
public function setKeyword($keyword)
{
$this->keyword = $keyword;
return $this;
}
/**
* @return string
*/
public function getRobot()
{
return $this->robot;
}
/**
* @param string $robot
*
* @return Blog;
*/
public function setRobot($robot)
{
$this->robot = $robot;
return $this;
}
/**
* @return string
*/
public function getMetatag()
{
return $this->metatag;
}
/**
* @param string $metatag
*
* @return Blog;
*/
public function setMetatag($metatag)
{
$this->metatag = $metatag;
return $this;
}
/**
* Set releaseDate.
*
* @param \DateTime $releaseDate
*
* @return Blog
*/
public function setReleaseDate($releaseDate)
{
$this->release_date = $releaseDate;
return $this;
}
/**
* Get releaseDate.
*
* @return \DateTime
*/
public function getReleaseDate()
{
return $this->release_date;
}
/**
* Set createDate.
*
* @param \DateTime $createDate
*
* @return Blog
*/
public function setCreateDate($createDate)
{
$this->create_date = $createDate;
return $this;
}
/**
* Get createDate.
*
* @return \DateTime
*/
public function getCreateDate()
{
return $this->create_date;
}
/**
* Set updateDate.
*
* @param \DateTime $updateDate
*
* @return Blog
*/
public function setUpdateDate($updateDate)
{
$this->update_date = $updateDate;
return $this;
}
/**
* Get updateDate.
*
* @return \DateTime
*/
public function getUpdateDate()
{
return $this->update_date;
}
/**
* Set creator.
*
* @param \Eccube\Entity\Member|null $creator
*
* @return Blog
*/
public function setCreator(\Eccube\Entity\Member $creator = null)
{
$this->Creator = $creator;
return $this;
}
/**
* Get creator.
*
* @return \Eccube\Entity\Member|null
*/
public function getCreator()
{
return $this->Creator;
}
/**
* Set status.
*
* @param \Plugin\CMBlogPro42\Entity\BlogStatus|null $status
*
* @return Blog
*/
public function setStatus(\Plugin\CMBlogPro42\Entity\BlogStatus $status = null)
{
$this->Status = $status;
return $this;
}
/**
* Get status.
*
* @return \Plugin\CMBlogPro42\Entity\BlogStatus|null
*/
public function getStatus()
{
return $this->Status;
}
/**
* @return string
*/
public function getTag()
{
return $this->tag;
}
/**
* @param string $tag
*
* @return Blog;
*/
public function setTag($tag)
{
$this->tag = $tag;
return $this;
}
/**
* Set figCaption.
*
* @param \DateTime $figCaption
*
* @return Blog
*/
public function setFigCaption($figCaption)
{
$this->fig_caption = $figCaption;
return $this;
}
/**
* Get figCaption.
*
* @return string
*/
public function getFigCaption()
{
return $this->fig_caption;
}
}
}