Automatically exported from code.google.com/p/planningalerts
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

36 lignes
675 B

  1. <?php
  2. require_once ("config.php");
  3. require_once ("user.php");
  4. require_once ("stats.php");
  5. $checkmail_page = new checkmail_page;
  6. class checkmail_page {
  7. //Constructor
  8. function checkmail_page() {
  9. $this->bind();
  10. }
  11. //Bind
  12. function bind() {
  13. //page vars
  14. $form_action = $_SERVER['PHP_SELF'];
  15. //smarty
  16. $smarty = new Smarty;
  17. $smarty->force_compile = true;
  18. $smarty->compile_dir = SMARTY_COMPILE_DIRECTORY;
  19. $smarty->assign("stats", stats::get_stats());
  20. $smarty->assign("page_title","Now check your email");
  21. $smarty->assign("menu_item", "signup");
  22. //Render
  23. $smarty->display('checkmail.tpl');
  24. }
  25. }
  26. ?>