page_handlers.php 426 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * All page handlers for this plugin are handled in this file
  4. */
  5. /**
  6. * The page handler for /email_change_confirmation/*
  7. *
  8. * @param array $page the different page elements
  9. *
  10. * @return boolean true if handled
  11. */
  12. function security_tools_email_change_confirmation_page_handler($page) {
  13. elgg_gatekeeper();
  14. include(dirname(dirname(__FILE__)) . "/procedures/email_change_confirmation.php");
  15. return true;
  16. }