How to get a CMS page title in a TPL file prstashop 1.7

Extend CMS class in classes/CMS.php and add this method:

public static function getCMSTitle($id_cms,$id_lang){
    $cms = new CMS($id_cms, $id_lang);
    return $cms->meta_title;

}



In page tpl :


{CMS::getCMSTitle(14,2)}