|
@@ -251,27 +251,6 @@ class User implements UserInterface //implements ParticipantInterface, ThemeUser
|
|
*/
|
|
*/
|
|
private $productions;
|
|
private $productions;
|
|
|
|
|
|
- /**
|
|
|
|
- * @var integer
|
|
|
|
- *
|
|
|
|
- * @ORM\Column(name="chatcall_user_id", type="integer", nullable=true, unique=false)
|
|
|
|
- */
|
|
|
|
- private $chatcallUserId;
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * @var \DateTime
|
|
|
|
- *
|
|
|
|
- * @ORM\Column(name="chatcall_date", type="datetime", nullable=true, unique=false)
|
|
|
|
- */
|
|
|
|
- private $chatcallDate;
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * @var string
|
|
|
|
- *
|
|
|
|
- * @ORM\Column(name="chatcall_text", type="string", length=50, nullable=true, unique=false)
|
|
|
|
- */
|
|
|
|
- private $chatcallText;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* @var string
|
|
* @var string
|
|
*
|
|
*
|
|
@@ -474,7 +453,6 @@ class User implements UserInterface //implements ParticipantInterface, ThemeUser
|
|
$this->portals = new ArrayCollection();
|
|
$this->portals = new ArrayCollection();
|
|
$this->dropBoxSentFiles = new ArrayCollection();
|
|
$this->dropBoxSentFiles = new ArrayCollection();
|
|
$this->dropBoxReceivedFiles = new ArrayCollection();
|
|
$this->dropBoxReceivedFiles = new ArrayCollection();
|
|
- $this->chatcallUserId = 0;
|
|
|
|
//$this->extraFields = new ArrayCollection();
|
|
//$this->extraFields = new ArrayCollection();
|
|
//$this->userId = 0;
|
|
//$this->userId = 0;
|
|
//$this->createdAt = new \DateTime();
|
|
//$this->createdAt = new \DateTime();
|
|
@@ -1162,75 +1140,6 @@ class User implements UserInterface //implements ParticipantInterface, ThemeUser
|
|
return $this->productions;
|
|
return $this->productions;
|
|
}
|
|
}
|
|
|
|
|
|
- /**
|
|
|
|
- * Set chatcallUserId
|
|
|
|
- *
|
|
|
|
- * @param integer $chatcallUserId
|
|
|
|
- * @return User
|
|
|
|
- */
|
|
|
|
- public function setChatcallUserId($chatcallUserId)
|
|
|
|
- {
|
|
|
|
- $this->chatcallUserId = $chatcallUserId;
|
|
|
|
-
|
|
|
|
- return $this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Get chatcallUserId
|
|
|
|
- *
|
|
|
|
- * @return integer
|
|
|
|
- */
|
|
|
|
- public function getChatcallUserId()
|
|
|
|
- {
|
|
|
|
- return $this->chatcallUserId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Set chatcallDate
|
|
|
|
- *
|
|
|
|
- * @param \DateTime $chatcallDate
|
|
|
|
- * @return User
|
|
|
|
- */
|
|
|
|
- public function setChatcallDate($chatcallDate)
|
|
|
|
- {
|
|
|
|
- $this->chatcallDate = $chatcallDate;
|
|
|
|
-
|
|
|
|
- return $this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Get chatcallDate
|
|
|
|
- *
|
|
|
|
- * @return \DateTime
|
|
|
|
- */
|
|
|
|
- public function getChatcallDate()
|
|
|
|
- {
|
|
|
|
- return $this->chatcallDate;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Set chatcallText
|
|
|
|
- *
|
|
|
|
- * @param string $chatcallText
|
|
|
|
- * @return User
|
|
|
|
- */
|
|
|
|
- public function setChatcallText($chatcallText)
|
|
|
|
- {
|
|
|
|
- $this->chatcallText = $chatcallText;
|
|
|
|
-
|
|
|
|
- return $this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * Get chatcallText
|
|
|
|
- *
|
|
|
|
- * @return string
|
|
|
|
- */
|
|
|
|
- public function getChatcallText()
|
|
|
|
- {
|
|
|
|
- return $this->chatcallText;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* Set language
|
|
* Set language
|
|
*
|
|
*
|