interstitial.php 501 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * An interstitial page for newly created Twitter users.
  4. *
  5. * This prompts them to enter an email address and set a password in case Twitter goes down or they
  6. * want to disassociate their account from twitter.
  7. */
  8. $title = elgg_echo('twitter_api:interstitial:settings');
  9. $content = elgg_view_form('twitter_api/interstitial_settings');
  10. $params = array(
  11. 'content' => $content,
  12. 'title' => $title,
  13. );
  14. $body = elgg_view_layout('one_sidebar', $params);
  15. echo elgg_view_page($title, $body);