wallabag/src/Wallabag/CoreBundle/Entity/Entries.php

418 lines
7 KiB
PHP
Raw Normal View History

2015-01-22 16:18:56 +00:00
<?php
namespace Wallabag\CoreBundle\Entity;
2015-01-22 16:18:56 +00:00
use Doctrine\ORM\Mapping as ORM;
2015-01-23 13:58:17 +00:00
use Symfony\Component\Validator\Constraints as Assert;
2015-01-22 16:18:56 +00:00
/**
* Entries
*
* @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\EntriesRepository")
2015-01-22 16:18:56 +00:00
* @ORM\Table(name="entries")
2015-02-04 21:25:44 +00:00
* @ORM\HasLifecycleCallbacks()
2015-01-31 14:14:10 +00:00
*
2015-01-22 16:18:56 +00:00
*/
class Entries
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=true)
* @ORM\Id
2015-02-04 21:25:44 +00:00
* @ORM\GeneratedValue(strategy="AUTO")
2015-01-22 16:18:56 +00:00
*/
2015-02-04 21:25:44 +00:00
private $id = null;
2015-01-22 16:18:56 +00:00
/**
* @var string
*
* @ORM\Column(name="title", type="text", nullable=true)
*/
private $title;
/**
* @var string
*
2015-01-23 13:58:17 +00:00
* @Assert\NotBlank()
2015-01-22 16:18:56 +00:00
* @ORM\Column(name="url", type="text", nullable=true)
*/
private $url;
/**
* @var boolean
2015-01-22 16:18:56 +00:00
*
2015-02-05 21:33:36 +00:00
* @ORM\Column(name="is_archived", type="boolean", nullable=true, options={"default" = false})
2015-01-22 16:18:56 +00:00
*/
2015-02-05 21:33:36 +00:00
private $isArchived = false;
2015-01-22 16:18:56 +00:00
/**
* @var boolean
2015-01-22 16:18:56 +00:00
*
2015-02-05 21:33:36 +00:00
* @ORM\Column(name="is_starred", type="boolean", nullable=true, options={"default" = false})
2015-01-22 16:18:56 +00:00
*/
2015-02-05 21:33:36 +00:00
private $isStarred = false;
2015-01-22 16:18:56 +00:00
/**
* @var boolean
2015-01-22 16:18:56 +00:00
*
2015-02-04 21:25:44 +00:00
* @ORM\Column(name="is_deleted", type="boolean", nullable=true, options={"default" = false})
2015-01-22 16:18:56 +00:00
*/
2015-02-04 21:25:44 +00:00
private $isDeleted = false;
2015-01-22 16:18:56 +00:00
/**
* @var string
*
* @ORM\Column(name="content", type="text", nullable=true)
2015-01-22 16:18:56 +00:00
*/
private $content;
2015-01-22 16:18:56 +00:00
2015-02-04 21:25:44 +00:00
/**
* @var date
*
* @ORM\Column(name="created_at", type="datetime", nullable=true)
*/
private $createdAt;
/**
* @var date
*
* @ORM\Column(name="updated_at", type="datetime", nullable=true)
*/
private $updatedAt;
2015-02-04 16:54:23 +00:00
/**
* @var string
*
* @ORM\Column(name="user_id", type="decimal", precision=10, scale=0, nullable=true)
2015-02-04 16:54:23 +00:00
*/
private $userId;
2015-02-04 16:54:23 +00:00
2015-02-04 21:25:44 +00:00
/**
* @var string
*
* @ORM\Column(name="comments", type="text", nullable=true)
*/
private $comments;
/**
* @var string
*
* @ORM\Column(name="mimetype", type="text", nullable=true)
*/
private $mimetype;
/**
* @var integer
*
* @ORM\Column(name="reading_type", type="integer", nullable=true)
*/
private $readingTime;
/**
* @var string
*
* @ORM\Column(name="domain_name", type="text", nullable=true)
*/
private $domainName;
/**
* @var boolean
*
* @ORM\Column(name="is_public", type="boolean", nullable=true, options={"default" = false})
*/
private $isPublic;
2015-01-22 16:18:56 +00:00
/**
* Get id
*
2015-01-31 18:09:34 +00:00
* @return integer
2015-01-22 16:18:56 +00:00
*/
public function getId()
{
return $this->id;
}
/**
* Set title
*
2015-01-31 18:09:34 +00:00
* @param string $title
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Get title
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getTitle()
{
return $this->title;
}
/**
* Set url
*
2015-01-31 18:09:34 +00:00
* @param string $url
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setUrl($url)
{
$this->url = $url;
return $this;
}
/**
* Get url
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getUrl()
{
return $this->url;
}
/**
2015-02-05 21:33:36 +00:00
* Set isArchived
2015-01-22 16:18:56 +00:00
*
2015-02-05 21:33:36 +00:00
* @param string $isArchived
2015-01-22 16:18:56 +00:00
* @return Entries
*/
2015-02-05 21:33:36 +00:00
public function setArchived($isArchived)
2015-01-22 16:18:56 +00:00
{
2015-02-05 21:33:36 +00:00
$this->isArchived = $isArchived;
2015-01-22 16:18:56 +00:00
return $this;
}
/**
2015-02-05 21:33:36 +00:00
* Get isArchived
2015-01-22 16:18:56 +00:00
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
2015-02-05 21:33:36 +00:00
public function isArchived()
2015-01-22 16:18:56 +00:00
{
2015-02-05 21:33:36 +00:00
return $this->isArchived;
2015-01-22 16:18:56 +00:00
}
2015-01-23 11:45:24 +00:00
public function toggleArchive()
{
2015-02-05 21:33:36 +00:00
$this->isArchived = $this->isArchived() ^ 1;
2015-01-31 18:09:34 +00:00
2015-01-23 11:45:24 +00:00
return $this;
}
2015-01-22 16:18:56 +00:00
/**
2015-02-05 21:33:36 +00:00
* Set isStarred
2015-01-22 16:18:56 +00:00
*
2015-02-05 21:33:36 +00:00
* @param string $isStarred
2015-01-22 16:18:56 +00:00
* @return Entries
*/
2015-02-05 21:33:36 +00:00
public function setStarred($isStarred)
2015-01-22 16:18:56 +00:00
{
2015-02-05 21:33:36 +00:00
$this->isStarred = $isStarred;
2015-01-22 16:18:56 +00:00
return $this;
}
/**
2015-02-05 21:33:36 +00:00
* Get isStarred
2015-01-22 16:18:56 +00:00
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
2015-02-05 21:33:36 +00:00
public function isStarred()
2015-01-22 16:18:56 +00:00
{
2015-02-05 21:33:36 +00:00
return $this->isStarred;
2015-01-22 16:18:56 +00:00
}
2015-01-23 11:45:24 +00:00
public function toggleStar()
{
2015-02-05 21:33:36 +00:00
$this->isStarred = $this->isStarred() ^ 1;
2015-01-23 11:45:24 +00:00
return $this;
}
2015-01-22 16:18:56 +00:00
/**
* Set content
*
2015-01-31 18:09:34 +00:00
* @param string $content
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setContent($content)
{
$this->content = $content;
return $this;
}
/**
* Get content
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getContent()
{
return $this->content;
}
/**
* Set userId
*
2015-01-31 18:09:34 +00:00
* @param string $userId
2015-01-22 16:18:56 +00:00
* @return Entries
*/
public function setUserId($userId)
{
$this->userId = $userId;
return $this;
}
/**
* Get userId
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getUserId()
{
return $this->userId;
}
2015-02-04 16:54:23 +00:00
/**
* @return string
*/
public function isDeleted()
{
return $this->isDeleted;
}
/**
* @param string $isDeleted
*/
public function setDeleted($isDeleted)
{
$this->isDeleted = $isDeleted;
}
2015-02-04 21:25:44 +00:00
/**
* @return mixed
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
* @param mixed $createdAt
* @ORM\PrePersist
*/
public function setCreatedAt()
{
$this->createdAt = new \DateTime();
}
/**
* @return string
*/
public function getUpdatedAt()
{
return $this->updatedAt;
}
/**
* @param string $updatedAt
* @ORM\PreUpdate
*/
public function setUpdatedAt()
{
$this->updatedAt = new \DateTime();
}
/**
* @return string
*/
public function getComments()
{
return $this->comments;
}
/**
* @param string $comments
*/
public function setComments($comments)
{
$this->comments = $comments;
}
/**
* @return string
*/
public function getMimetype()
{
return $this->mimetype;
}
/**
* @param string $mimetype
*/
public function setMimetype($mimetype)
{
$this->mimetype = $mimetype;
}
/**
* @return int
*/
public function getReadingTime()
{
return $this->readingTime;
}
/**
* @param int $readingTime
*/
public function setReadingTime($readingTime)
{
$this->readingTime = $readingTime;
}
/**
* @return string
*/
public function getDomainName()
{
return $this->domainName;
}
/**
* @param string $domainName
*/
public function setDomainName($domainName)
{
$this->domainName = $domainName;
}
/**
* @return boolean
*/
public function isPublic()
2015-02-04 21:25:44 +00:00
{
return $this->isPublic;
}
/**
* @param boolean $isPublic
*/
public function setPublic($isPublic)
2015-02-04 21:25:44 +00:00
{
$this->isPublic = $isPublic;
}
2015-01-22 16:18:56 +00:00
}