Ejemplo n.º 1
0
 /**
  * @return string|null
  */
 public function getFactionLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('faction.%s', $this->data['faction']), 'wow');
     }
     return null;
 }
Ejemplo n.º 2
0
 /**
  * @return string|null
  */
 public function getStatusLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('pvpareastatus.%s', $this->data['status']), 'wow');
     }
     return null;
 }
Ejemplo n.º 3
0
 /**
  * @return string|null
  */
 public function getStandingLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('standing.%s', $this->data['standing']), 'wow');
     }
     return null;
 }
Ejemplo n.º 4
0
 /**
  * @return string|null
  */
 public function getTimeLeftLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('auction.%s', $this->data['time']), 'wow');
     }
     return null;
 }
Ejemplo n.º 5
0
 /**
  * @return string|null
  */
 public function getQualityLocale()
 {
     if (isset($this->locale)) {
         return $this->locale->get(sprintf('itemquality.%s', $this->data['quality']), 'wow');
     }
     return null;
 }