本文整理汇总了PHP中FOS\UserBundle\Entity\User类的典型用法代码示例。如果您正苦于以下问题:PHP User类的具体用法?PHP User怎么用?PHP User使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了User类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setEmail
/**
* Set email and, if there is no username set, set the email as username
* @param string $email
* @return $this|\FOS\UserBundle\Model\UserInterface
*/
public function setEmail($email)
{
if (!$this->username) {
$this->username = $email;
}
return parent::setEmail($email);
}
示例2: __construct
public function __construct()
{
parent::__construct();
/* @var $doctrine \Doctrine\Bundle\DoctrineBundle\Registry */
$doctrine = \AppKernel::getStaticContainer()->get('doctrine');
/* @var $em \Doctrine\ORM\EntityManager */
$em = $doctrine->getManager();
$this->setEnabled(true);
$group = $em->getRepository('ApplicationSonataUserBundle:Group')->find(static::GroupId);
if ($group) {
$this->addGroup($group);
}
}
示例3: __construct
/**
* User constructor.
*/
public function __construct()
{
// Construct parent
parent::__construct();
// Set communications as an array
$this->viewedCommunications = new ArrayCollection();
// Set default user role
if (empty($this->roles)) {
$this->roles = Globals::getDefaultRoles();
}
// Set dafault user language
if (empty($this->language)) {
$this->language = Globals::getDefaultLanguage();
}
}
示例4: buildForm
public function buildForm(FormBuilderInterface $builder, array $options)
{
/** @var \Wealthbot\RiaBundle\Entity\RiaCompanyInformation $info */
$info = $this->user->getRiaCompanyInformation();
if ($info) {
$name = $info->getName() ? $info->getName() : $this->user->getProfile()->getCompany();
$primaryFirstName = $info->getPrimaryFirstName() ? $info->getPrimaryFirstName() : $this->user->getProfile()->getFirstName();
$primaryLastName = $info->getPrimaryLastName() ? $info->getPrimaryLastName() : $this->user->getProfile()->getLastName();
$contactEmail = $info->getContactEmail() ? $info->getContactEmail() : $this->user->getEmail();
} else {
$name = $this->user->getProfile()->getCompany();
$primaryFirstName = $this->user->getProfile()->getFirstName();
$primaryLastName = $this->user->getProfile()->getLastName();
$contactEmail = $this->user->getEmail();
}
$builder->add('name', 'text', array('data' => $name, 'required' => false))->add('slug', 'text', array('required' => true))->add('primary_first_name', 'text', array('data' => $primaryFirstName, 'required' => false))->add('primary_last_name', 'text', array('data' => $primaryLastName, 'required' => false))->add('website', 'url', array('required' => false))->add('address', 'text', array('required' => false))->add('office', 'text', array('required' => false))->add('city', 'text', array('required' => false))->add('state', 'entity', array('class' => 'WealthbotAdminBundle:State', 'label' => 'State', 'empty_value' => 'Select a State', 'required' => false))->add('zipcode', 'text', array('required' => false))->add('phone_number', 'text', array('required' => false))->add('fax_number', 'text', array('required' => false))->add('contact_email', 'email', array('data' => $contactEmail, 'required' => false));
//Other information
$builder->add('min_asset_size', 'number', array('precision' => 2, 'grouping' => true, 'required' => false))->add('logo_file', 'file', array('required' => false));
//Proposal processing
$builder->add('portfolio_processing', 'choice', array('choices' => RiaCompanyInformation::getPortfolioProcessingChoices(), 'disabled' => true, 'required' => true, 'expanded' => true));
$this->addValidator($builder);
if (!$this->isPreSave) {
$this->addOnBindValidator($builder);
}
}
示例5: getPasswordRequestedAt
public function getPasswordRequestedAt()
{
if (is_null(parent::getPasswordRequestedAt())) {
} else {
return date_format(parent::getPasswordRequestedAt(), 'd-m-Y / H:i:s');
}
}
示例6: __construct
public function __construct()
{
parent::__construct();
$this->isActive = true;
// may not be needed, see section on salt below
// $this->salt = md5(uniqid(null, true));
}
示例7: __construct
public function __construct()
{
parent::__construct();
$this->setEnabled(true);
$this->setLocked(false);
// your own logic
}
示例8: __construct
/**
* Creates a user
*/
public function __construct()
{
parent::__construct();
$this->lastLocation = new Location();
$this->lastLocation->setLatitude(0);
$this->lastLocation->setLongitude(0);
}
示例9: __construct
public function __construct()
{
$this->packages = new ArrayCollection();
$this->authors = new ArrayCollection();
$this->createdAt = new \DateTime();
parent::__construct();
}
示例10: __construct
public function __construct()
{
parent::__construct();
$this->campaigns = new ArrayCollection();
$this->tasks = new ArrayCollection();
$this->files = new ArrayCollection();
}
示例11: __construct
public function __construct()
{
parent::__construct();
if (empty($this->roles)) {
$this->roles[] = 'ROLE_USER';
}
}
示例12: __construct
public function __construct()
{
parent::__construct();
$this->created = new \DateTime();
$this->activated = false;
$this->enabled = true;
}
示例13: __toString
/**
* {@inheritdoc}
*/
public function __toString()
{
if (null === $this->getContact()) {
return parent::__toString();
}
return $this->getContact()->__toString();
}
示例14: __construct
public function __construct()
{
parent::__construct();
// your own logic
$this->groups = new \Doctrine\Common\Collections\ArrayCollection();
$this->projects = new \Doctrine\Common\Collections\ArrayCollection();
$this->tasks = new \Doctrine\Common\Collections\ArrayCollection();
}
示例15: __construct
public function __construct()
{
parent::__construct();
$this->created = new \DateTime();
$this->lastActivity = new \DateTime();
$this->image = new \Ben\DoctorsBundle\Entity\image();
$this->consultations = new \Doctrine\Common\Collections\ArrayCollection();
}