getCreator() 공개 메소드

Get creator.
public getCreator ( ) : Sulu\Component\Security\Authentication\UserInterface
리턴 Sulu\Component\Security\Authentication\UserInterface
예제 #1
0
파일: Collection.php 프로젝트: sulu/sulu
 /**
  * @return string
  */
 public function getCreator()
 {
     $user = $this->entity->getCreator();
     if ($user) {
         return $user->getFullName();
     }
     return;
 }