Mlp_Term_Translation_Presenter::get_group_title PHP Method

get_group_title() public method

Return the group title.
public get_group_title ( ) : string
return string
    public function get_group_title()
    {
        return esc_html__('Translations', 'multilingual-press');
    }

Usage Example

 /**
  * @return bool
  */
 public function print_title()
 {
     if (empty($this->related_sites)) {
         return FALSE;
     }
     print $this->presenter->get_group_title();
     return TRUE;
 }
All Usage Examples Of Mlp_Term_Translation_Presenter::get_group_title