X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/42d2646c377a92fd92d37e09ef6b733fa9b50946..b52762ce4225d149892ebf867f0194b1bf84393e:/Entity/Snippet.php

diff --git a/Entity/Snippet.php b/Entity/Snippet.php
index 2aa9d3b..ee5b262 100644
--- a/Entity/Snippet.php
+++ b/Entity/Snippet.php
@@ -1,9 +1,17 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * this file is part of the rapsys packbundle package.
+ *
+ * (c) raphaël gertz <symfony@rapsys.eu>
+ *
+ * for the full copyright and license information, please view the license
+ * file that was distributed with this source code.
+ */
 
 namespace Rapsys\AirBundle\Entity;
 
-use Rapsys\AirBundle\Entity\Location;
-use Rapsys\AirBundle\Entity\User;
+use Doctrine\ORM\Event\PreUpdateEventArgs;
 
 /**
  * Snippet
@@ -20,10 +28,50 @@ class Snippet {
 	protected $locale;
 
 	/**
-	 * @var text
+	 * @var string
 	 */
 	protected $description;
 
+	/**
+	 * @var string
+	 */
+	protected $class;
+
+	/**
+	 * @var string
+	 */
+	protected $short;
+
+	/**
+	 * @var integer
+	 */
+	protected $rate;
+
+	/**
+	 * @var bool
+	 */
+	protected $hat;
+
+	/**
+	 * @var string
+	 */
+	protected $contact;
+
+	/**
+	 * @var string
+	 */
+	protected $donate;
+
+	/**
+	 * @var string
+	 */
+	protected $link;
+
+	/**
+	 * @var string
+	 */
+	protected $profile;
+
 	/**
 	 * @var \DateTime
 	 */
@@ -35,21 +83,40 @@ class Snippet {
 	protected $updated;
 
 	/**
-	 * @var \Rapsys\UserBundle\Entity\Location
+	 * @var Location
 	 */
 	protected $location;
 
 	/**
-	 * @var \Rapsys\UserBundle\Entity\User
+	 * @var User
 	 */
 	protected $user;
 
+	/**
+	 * Constructor
+	 */
+	public function __construct() {
+		//Set defaults
+		$this->description = null;
+		$this->class = null;
+		$this->short = null;
+		$this->rate = null;
+		$this->hat = null;
+		$this->contact = null;
+		$this->donate = null;
+		$this->link = null;
+		$this->profile = null;
+		$this->created = new \DateTime('now');
+		$this->updated = new \DateTime('now');
+		$this->location = null;
+	}
+
 	/**
 	 * Get id
 	 *
 	 * @return integer
 	 */
-	public function getId() {
+	public function getId(): int {
 		return $this->id;
 	}
 
@@ -60,7 +127,7 @@ class Snippet {
 	 *
 	 * @return Snippet
 	 */
-	public function setLocale($locale) {
+	public function setLocale(string $locale): Snippet {
 		$this->locale = $locale;
 
 		return $this;
@@ -71,7 +138,7 @@ class Snippet {
 	 *
 	 * @return string
 	 */
-	public function getLocale() {
+	public function getLocale(): string {
 		return $this->locale;
 	}
 
@@ -82,7 +149,7 @@ class Snippet {
 	 *
 	 * @return Snippet
 	 */
-	public function setDescription($description) {
+	public function setDescription(?string $description): Snippet {
 		$this->description = $description;
 
 		return $this;
@@ -93,18 +160,193 @@ class Snippet {
 	 *
 	 * @return string
 	 */
-	public function getDescription() {
+	public function getDescription(): ?string {
 		return $this->description;
 	}
 
+	/**
+	 * Set class
+	 *
+	 * @param string $class
+	 *
+	 * @return Snippet
+	 */
+	public function setClass(?string $class): Snippet {
+		$this->class = $class;
+
+		return $this;
+	}
+
+	/**
+	 * Get class
+	 *
+	 * @return string
+	 */
+	public function getClass(): ?string {
+		return $this->class;
+	}
+
+	/**
+	 * Set short
+	 *
+	 * @param string $short
+	 *
+	 * @return Snippet
+	 */
+	public function setShort(?string $short): Snippet {
+		$this->short = $short;
+
+		return $this;
+	}
+
+	/**
+	 * Get short
+	 *
+	 * @return string
+	 */
+	public function getShort(): ?string {
+		return $this->short;
+	}
+
+	/**
+	 * Set rate
+	 *
+	 * @param int $rate
+	 *
+	 * @return Snippet
+	 */
+	public function setRate(?int $rate): Snippet {
+		$this->rate = $rate;
+
+		return $this;
+	}
+
+	/**
+	 * Get rate
+	 *
+	 * @return int
+	 */
+	public function getRate(): ?int {
+		return $this->rate;
+	}
+
+	/**
+	 * Set hat
+	 *
+	 * @param bool $hat
+	 *
+	 * @return User
+	 */
+	public function setHat(?bool $hat): Snippet {
+		$this->hat = $hat;
+
+		return $this;
+	}
+
+	/**
+	 * Get hat
+	 *
+	 * @return bool
+	 */
+	public function getHat(): ?bool {
+		return $this->hat;
+	}
+	/**
+	 * Set contact
+	 *
+	 * @param string $contact
+	 *
+	 * @return Snippet
+	 */
+	public function setContact(?string $contact): Snippet {
+		$this->contact = $contact;
+
+		return $this;
+	}
+
+	/**
+	 * Get contact
+	 *
+	 * @return string
+	 */
+	public function getContact(): ?string {
+		return $this->contact;
+	}
+
+	/**
+	 * Set donate
+	 *
+	 * @param string $donate
+	 *
+	 * @return Snippet
+	 */
+	public function setDonate(?string $donate): Snippet {
+		$this->donate = $donate;
+
+		return $this;
+	}
+
+	/**
+	 * Get donate
+	 *
+	 * @return string
+	 */
+	public function getDonate(): ?string {
+		return $this->donate;
+	}
+
+	/**
+	 * Set link
+	 *
+	 * @param string $link
+	 *
+	 * @return Snippet
+	 */
+	public function setLink(?string $link): Snippet {
+		$this->link = $link;
+
+		return $this;
+	}
+
+	/**
+	 * Get link
+	 *
+	 * @return string
+	 */
+	public function getLink(): ?string {
+		return $this->link;
+	}
+
+	/**
+	 * Set profile
+	 *
+	 * @param string $profile
+	 *
+	 * @return Snippet
+	 */
+	public function setProfile(?string $profile): Snippet {
+		$this->profile = $profile;
+
+		return $this;
+	}
+
+	/**
+	 * Get profile
+	 *
+	 * @return string
+	 */
+	public function getProfile(): ?string {
+		return $this->profile;
+	}
+
 	/**
 	 * Set created
 	 *
 	 * @param \DateTime $created
 	 *
-	 * @return User
+	 * @return Snippet
 	 */
-	public function setCreated($created) {
+	public function setCreated(\DateTime $created): Snippet {
 		$this->created = $created;
 
 		return $this;
@@ -115,7 +357,7 @@ class Snippet {
 	 *
 	 * @return \DateTime
 	 */
-	public function getCreated() {
+	public function getCreated(): \DateTime {
 		return $this->created;
 	}
 
@@ -124,9 +366,9 @@ class Snippet {
 	 *
 	 * @param \DateTime $updated
 	 *
-	 * @return User
+	 * @return Snippet
 	 */
-	public function setUpdated($updated) {
+	public function setUpdated(\DateTime $updated): Snippet {
 		$this->updated = $updated;
 
 		return $this;
@@ -137,12 +379,16 @@ class Snippet {
 	 *
 	 * @return \DateTime
 	 */
-	public function getUpdated() {
+	public function getUpdated(): \DateTime {
 		return $this->updated;
 	}
 
 	/**
 	 * Set location
+	 *
+	 * @param Location $location
+	 *
+	 * @return Snippet
 	 */
 	public function setLocation(Location $location) {
 		$this->location = $location;
@@ -152,6 +398,8 @@ class Snippet {
 
 	/**
 	 * Get location
+	 *
+	 * @return Location
 	 */
 	public function getLocation() {
 		return $this->location;
@@ -159,6 +407,10 @@ class Snippet {
 
 	/**
 	 * Set user
+	 *
+	 * @param User $user
+	 *
+	 * @return Snippet
 	 */
 	public function setUser(User $user) {
 		$this->user = $user;
@@ -168,8 +420,21 @@ class Snippet {
 
 	/**
 	 * Get user
+	 *
+	 * @return User
 	 */
 	public function getUser() {
 		return $this->user;
 	}
+
+	/**
+	 * {@inheritdoc}
+	 */
+	public function preUpdate(\Doctrine\ORM\Event\PreUpdateEventArgs  $eventArgs) {
+		//Check that we have an snippet instance
+		if (($snippet = $eventArgs->getEntity()) instanceof Snippet) {
+			//Set updated value
+			$snippet->setUpdated(new \DateTime('now'));
+		}
+	}
 }