Пример #1
0
 public function getTitle()
 {
     $title = parent::getTitle();
     if ($this->isResolved()) {
         $title = '[' . __('RESOLVED', 'cm-answers') . '] ' . $title;
     }
     return $title;
 }
Пример #2
0
 public function getTitle($withResolved = true)
 {
     $title = '';
     if ($this->isResolved() and $withResolved) {
         $title .= '[' . CMA_Labels::getLocalized('RESOLVED') . '] ';
     }
     $title .= parent::getTitle();
     return $title;
 }