예제 #1
0
파일: Character.php 프로젝트: coss/bnetlib
 /**
  * @return string|null
  */
 public function getFactionLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('faction.%s', $this->data['faction']), 'wow');
     }
     return null;
 }
예제 #2
0
파일: PvpArea.php 프로젝트: coss/bnetlib
 /**
  * @return string|null
  */
 public function getStatusLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('pvpareastatus.%s', $this->data['status']), 'wow');
     }
     return null;
 }
예제 #3
0
파일: Faction.php 프로젝트: coss/bnetlib
 /**
  * @return string|null
  */
 public function getStandingLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('standing.%s', $this->data['standing']), 'wow');
     }
     return null;
 }
예제 #4
0
파일: Auction.php 프로젝트: coss/bnetlib
 /**
  * @return string|null
  */
 public function getTimeLeftLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('auction.%s', $this->data['time']), 'wow');
     }
     return null;
 }
예제 #5
0
파일: Item.php 프로젝트: coss/bnetlib
 /**
  * @return string|null
  */
 public function getQualityLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('itemquality.%s', $this->data['quality']), 'wow');
     }
     return null;
 }