page.inc.php 612 B

12345678910111213141516171819202122
  1. <?php
  2. llxHeader('', $langs->trans($page_name), $help_url);
  3. $h = 0;
  4. $head[$h][0] = dol_buildpath("/mmicrm/index.php", 1);
  5. $head[$h][1] = $langs->trans("MMICRMIndex");
  6. $head[$h][2] = 'index';
  7. $h++;
  8. $head[$h][0] = dol_buildpath("/mmicrm/prospects.php", 1);
  9. $head[$h][1] = $langs->trans("MMICRMProspects");
  10. $head[$h][2] = 'prospects';
  11. print load_fiche_titre($langs->trans($page_name), $linkback, 'title_setup');
  12. print dol_get_fiche_head($head, $page_ref, $langs->trans($page_name), 0, 'mmicrm@mmicrm');
  13. require_once 'tpl/'.$page_ref.'.tpl.php';
  14. // Page end
  15. print dol_get_fiche_end();
  16. llxFooter();
  17. $db->close();