/**
  * Set the title of the CMS tree
  */
 function getCMSTreeTitle()
 {
     $subsite = Subsite::currentSubSite();
     return $subsite ? htmlspecialchars($subsite->Title, ENT_QUOTES) : 'Site Content';
 }
 /**
  * Set the title of the CMS tree
  */
 public function getCMSTreeTitle()
 {
     $subsite = Subsite::currentSubSite();
     return $subsite ? Convert::raw2xml($subsite->Title) : _t('LeftAndMain.SITECONTENTLEFT');
 }