aboutsummaryrefslogtreecommitdiff
path: root/mod/twitter_api/pages/twitter_api/interstitial.php
blob: 23b5069cb5bafe20a19a645aaf2f2d2fe3775987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * An interstitial page for newly created Twitter users.
 *
 * This prompts them to enter an email address and set a password in case Twitter goes down or they
 * want to disassociate their account from twitter.
 */

$title = elgg_echo('twitter_api:interstitial:settings');

$content = elgg_view_form('twitter_api/interstitial_settings');

$params = array(
	'content' => $content,
	'title' => $title,
);
$body = elgg_view_layout('one_sidebar', $params);

echo elgg_view_page($title, $body);