144 lines
2.5 KiB
PHP
144 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Jotunheimr\UserBundle\Entity;
|
|
|
|
use FOS\UserBundle\Model\User as BaseUser;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
/**
|
|
* User class for Jotunheimr project
|
|
*
|
|
* @ORM\Entity
|
|
* @ORM\Table(name="fos_user", options={"collate": "utf8_general_ci", "charset":"utf8"})
|
|
*/
|
|
class User extends BaseUser
|
|
{
|
|
/**
|
|
* @ORM\Id
|
|
* @ORM\Column(type="integer")
|
|
* @ORM\GeneratedValue(strategy="AUTO")
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @ORM\Column(name="facebook_id", type="string", length=255, nullable=true)
|
|
*/
|
|
private $facebookId;
|
|
|
|
/**
|
|
* @ORM\Column(name="facebook_access_token", type="string", length=255, nullable=true)
|
|
*/
|
|
private $facebookAccessToken;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="real_name", type="string", length=255, nullable=true)
|
|
*/
|
|
private $realName;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="nick_name", type="string", length=255, nullable=true)
|
|
*/
|
|
private $nickName;
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Set facebookId
|
|
*
|
|
* @param string $facebookId
|
|
*
|
|
* @return User
|
|
*/
|
|
public function setFacebookId($facebookId)
|
|
{
|
|
$this->facebookId = $facebookId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get facebookId
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFacebookId()
|
|
{
|
|
return $this->facebookId;
|
|
}
|
|
|
|
/**
|
|
* @param string $facebookAccessToken
|
|
* @return User
|
|
*/
|
|
public function setFacebookAccessToken($facebookAccessToken)
|
|
{
|
|
$this->facebookAccessToken = $facebookAccessToken;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFacebookAccessToken()
|
|
{
|
|
return $this->facebookAccessToken;
|
|
}
|
|
|
|
/**
|
|
* Set realName
|
|
*
|
|
* @param string $realName
|
|
*
|
|
* @return User
|
|
*/
|
|
public function setRealName($realName)
|
|
{
|
|
$this->realName = $realName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get realName
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getRealName()
|
|
{
|
|
return $this->realName;
|
|
}
|
|
|
|
/**
|
|
* Set nickName
|
|
*
|
|
* @param string $nickName
|
|
*
|
|
* @return User
|
|
*/
|
|
public function setNickName($nickName)
|
|
{
|
|
$this->nickName = $nickName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get nickName
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getNickName()
|
|
{
|
|
return $this->nickName;
|
|
}
|
|
}
|