コード例 #1
0
ファイル: User.php プロジェクト: phpink/nami-core-bundle
 /**
  * Get the avatar ID.
  *
  * @return int|null
  */
 public function getAvatarId()
 {
     return $this->avatar ? $this->avatar->getId() : null;
 }
コード例 #2
0
ファイル: Page.php プロジェクト: phpink/nami-core-bundle
 /**
  * Get the url of the page background.
  *
  * @return string
  */
 public function getBackgroundUrl()
 {
     return $this->background ? $this->background->getUrl() : '';
 }