add reminder if configuration was not done by the admin

This commit is contained in:
Tobias Diekershoff 2013-05-12 20:19:23 +02:00
parent 089341ad53
commit d5ef105c15
1 changed files with 6 additions and 1 deletions

View File

@ -46,7 +46,12 @@ function webrtc_content(&$a) {
/* embedd the landing page in an iframe */
$o .= '<h2>'.t('Video Chat').'</h2>';
$o .= '<p>FIXME some short information for the enduser what to do. Best surrounded in a <code>t()</code> call so the text can be translated.</p>';
$o .= '<iframe src="'.$webrtcurl.'" width="600px" height="600px"></iframe>';
if ($webrtcurl == '') {
$o .= '<p>'.t('Please contact your friendica admin and send a reminder to configure the WebRTC addon.').'</p>';
} else {
$o .= '<iframe src="'.$webrtcurl.'" width="600px" height="600px"></iframe>';
}
return $o;
}