Explorar el Código

Correctif backend

feature/export_comptable
Fab hace 4 años
padre
commit
d001500e75
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      ShopBundle/Model/User.php

+ 6
- 1
ShopBundle/Model/User.php Ver fichero

@@ -101,6 +101,11 @@ abstract class User extends UserModelFOS
$this->userMerchants = new ArrayCollection();
}

public function __toString()
{
return $this->getName();
}

public function getSummary()
{
return '#'.$this->getId().' '.strtoupper($this->getLastname()).' '.$this->getFirstname(). ' ('.$this->getEmail().')';
@@ -108,7 +113,7 @@ abstract class User extends UserModelFOS

public function getName()
{
return $this->getFirstname().' '.strtoupper($this->getLastname());
return (string) ucfirst(strtolower($this->getFirstname())). ' '.strtoupper($this->getLastname());
}

public function setEmail($email)

Cargando…
Cancelar
Guardar