-
Notifications
You must be signed in to change notification settings - Fork 15
/
full_page_chat_demo.php
81 lines (71 loc) · 1.98 KB
/
full_page_chat_demo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**********************************************\
* Copyright (c) 2013 Manolis Agkopian *
* See the file LICENCE for copying permission. *
\**********************************************/
session_start(); //Step 0: Don't forget to start the session
define('INCLUDED',true); //Step 1: define INCLUDED as true
require 'simple_chat/init_chat.php'; //Step 2: require the init_chat.php
redirect_if_not_logged_in(); //Step 2.5: if you want to redirect the user to the login form if not logged in, add this line, otherwise a warning will be get displayed
?>
<!DOCTYPE html>
<html>
<head>
<title>Simple Chat | Full Page Version Demo</title>
<!-- Note: the charset must be UTF-8 -->
<meta charset="UTF-8">
<style type="text/css">
body , div, img, p, h1{
font-family: arial;
margin: 0;
padding: 0;
font-weight: normal;
}
#wrapper {
width: 100%;
max-width: 960px;
margin: 15px auto;
}
#title {
margin: 5px auto;
width: 380px;
text-align: center;
}
#title h1 {
white-space: nowrap;
font-size: 60px;
}
#back_link {
width: 100%;
height: 20px;
}
#back_link a{
float: right;
text-decoration: none;
color: slategray;
}
#back_link a:hover{
text-decoration: underline;
color: slategray;
}
#back_link a:visited{
color: slategray;
}
</style>
<!-- //Step 3: link chat_full.css for the full-page chat-->
<link type="text/css" rel="stylesheet" href="simple_chat/css/chat_full.css">
</head>
<body>
<div id="wrapper">
<div id="title"><h1>Simple Chat ;)</h1></div>
<div id="back_link"><a href=".">Return Back</a></div>
<!-- The format of one message:
<div id="message_[message_id]">
<a href="#">[username] </a>says:
<p>[message_content]</p>
</div>
-->
<?php do_html_chat(); //Step 4: Generate the chat window in any place you want inside your page (embedded version = false, warn if not logged in = false)?>
</div>
</body>
</html>