public function getFaxNumber($format = false) { $fax_number = $this->fax_number->get(); if (!$format) { return $fax_number; } return '(' . substr($fax_number, 0, 3) . ') ' . substr($fax_number, 3, 3) . '-' . substr($fax_number, 6, 4); }
public function getTitle() { return $this->title->get(); }
public function getDescription() { return $this->description->get(); }
public function getCategory() { return $this->category->get(); }
public function getSiteAddress() { return $this->siteAddress->get(); }