示例#1
0
 public function getTitle()
 {
     $title = parent::getTitle();
     if (!empty($this->_pstCategory->employerCompany)) {
         $title .= ' <span class="titleend">(' . $this->_pstCategory->employerCompany . ', ' . $this->_posting->priceDisplay . ')</span>';
     }
     return $title;
 }
示例#2
0
 public function getTitle()
 {
     $title = parent::getTitle();
     $cat2 = $this->getCat2();
     $location = new Location($this->_posting->locId);
     $secondLing = $this->strAdd($cat2, '<span class="titleend"> (' . $location->getLocationString() . ")</span>", '');
     if (!empty($secondLing)) {
         $secondLing = '<span class="titlesecond">' . $secondLing . '</span>';
     }
     return $this->strAdd($title, $secondLing, '<br />');
 }
示例#3
0
 public function getTitle()
 {
     $title = parent::getTitle();
     $title .= '<br /><span class="titlesecond">' . $this->getCat2();
     $location = new Location($this->_posting->locId);
     $suburb = $location->getSuburb();
     if (!empty($suburb)) {
         $title .= ' <span class="titleend">(' . $suburb . ')</span>';
     }
     return $title . '</span>';
 }
示例#4
0
 public function getTitle()
 {
     $title = parent::getTitle();
     $title .= '<br /><span class="titlesecond">';
     $other = $this->strAdd($this->getCat3(), $this->getCat2(), ' - ');
     $location = new Location($this->_posting->locId);
     $suburb = $location->getSuburb();
     if (!empty($suburb)) {
         $title .= $other . ' <span class="titleend">(' . $suburb . ')</span>';
     }
     //$title .= $this->strAdd( $other , $suburb, ' : ');
     return $title;
 }