forked from BroadcastVision/webCG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
86 lines (74 loc) · 3.01 KB
/
settings.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
82
83
84
85
86
<?php
include("logic/config.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>WebCG - Settings</title>
<?php include("head.php"); ?>
</head>
<body>
<div id="wrapper">
<!-- Navigation -->
<?php include("navigation.php"); ?>
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Settings
</h1>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-info-circle fa-fw"></i> About (v<?php echo $cg_version; ?>)
</div>
<div class="panel-body">
<p>WebCG is a framework capable of generating dynamic HTML templates for <a href="http://www.casparcg.com/" target="_blank">CasparCG</a>.</p>
<p>Successfully tested in <strong>CasparCG Server 2.0.7</strong></p>
<p>Project Page: <a href="https://github.com/BroadcastEngineer/webCG" target="_blank">https://github.com/BroadcastEngineer/webCG</a></p>
<p>For Support or Sugestions please use the <a href="http://casparcg.com/forum/viewtopic.php?f=9&t=3938" target="_blank">CasparCG Forum topic</a></p>
<p>Special thanks to the <a href="http://www.casparcg.com/forum" target="_blank">CasparCG Community</a> and Tom Jenkinson for the <a href="https://github.com/tjenkinson/CasparCG-PHP-ServerConnection" target="_blank">PHP ServerConnection class</a>.</p>
<p>Theme credits: <a href="https://startbootstrap.com/template-overviews/sb-admin-2/" target="_blank">SB Admin 2</a></p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="panel panel-default">
<div class="panel-heading">
<i class="fa fa-gear fa-fw"></i> Settings
</div>
<div class="panel-body">
<table class="table">
<div class="alert alert-info">
You can edit this parameters from the <strong>logic/config.php</strong> file.
</div>
<tbody>
<tr>
<td style="border-top:0;"><i class="fa fa-television fa-fw"></i> Resolution</td>
<td style="border-top:0;"><?php echo $width."x".$height;?></td>
</tr>
<tr>
<td><i class="fa fa-server fa-fw"></i> CasparCG Address</td>
<td><?php echo $ip.":".$port;?></td>
</tr>
<tr>
<td><i class="fa fa-list-ol fa-fw"></i> CasparCG Channel</td>
<td><?php echo $channel;?></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<!-- /.modal -->
<?php include("scripts.php"); ?>
</body>
</html>