コード例 #1
0
ファイル: Player.php プロジェクト: Team-Quantum/QuantumCMS
 /**
  * @return string
  */
 public function getAccountName()
 {
     $this->loadAccount();
     if ($this->account == null) {
         return '';
     } else {
         return $this->account->getLogin();
     }
 }