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