-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtos.php
More file actions
executable file
·85 lines (80 loc) · 3.2 KB
/
tos.php
File metadata and controls
executable file
·85 lines (80 loc) · 3.2 KB
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
<?php
/**************************************************************************************************************
*
* CF Image Hosting Script
* ---------------------------------
*
* Author: codefuture.co.uk
* Version: 1.6.5
*
* You can download the latest version from: http://codefuture.co.uk/projects/imagehost/
*
* Copyright (c) 2010-2013 CodeFuture.co.uk
* This file is part of the CF Image Hosting Script.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
* OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*
* You may not modify and/or remove any copyright notices or labels on the software on each
* page (unless full license is purchase) and in the header of each script source file.
*
* You should have received a full copy of the LICENSE AGREEMENT along with
* Codefuture Image Hosting Script. If not, see http://codefuture.co.uk/projects/imagehost/license/.
*
*
* ABOUT THIS PAGE -----
* Used For: Terms of Service Page
* Last edited: 19/12/2012
*
*************************************************************************************************************/
define('cfih', 'tos');
require './inc/cfih.php';
// check to see if this page has been hidden (set in the admin panel), if so then send user to the index/home page
if(!$settings['SET_HIDE_TOS']){
header('Location: index.php');
exit();
}
// cache faq page once every 32 days
cache_cheack('tos',(60*60*24*32));
// header page var
$pageSet['id'] = 'tos_page';
$pageSet['title'] = ' - '._T("site_tos_title");
$pageSet['description'] = _T("site_tos_title").' page for '.$settings['SET_TITLE'];
$pageSet['keywords'] = '';
// load header
require CFROOTPATH.'header.php';
?>
<div class="contentBox">
<div id="tos">
<h2><?php echo _T("site_tos_title");?></h2>
<ul>
<li><?php echo $settings['SET_TITLE'];?> <?php echo _T("site_tos_line1");?></li>
<li><?php echo _T("site_tos_line2");?></li>
<li><?php echo $settings['SET_TITLE'];?> <?php echo _T("site_tos_line3");?>
<ul>
<li><?php echo _T("site_tos_line4");?></li>
<li><?php echo _T("site_tos_line5");?></li>
<li><?php echo _T("site_tos_line6");?></li>
<li><?php echo _T("site_tos_line7");?></li>
<li><?php echo _T("site_tos_line8");?></li>
</ul>
</li>
<li><?php echo _T("site_tos_line9");?></li>
<li><?php echo $settings['SET_TITLE'];?> <?php echo _T("site_tos_line10");?></li>
<li><?php echo $settings['SET_TITLE'];?> <?php echo _T("site_tos_line11");?></li>
</ul>
<br/><br/>
<h2><?php echo _T("site_privacy_policy_title");?></h2>
<ul>
<li><?php echo _T("site_privacy_policy_line1");?></li>
</ul>
</div>
</div>
<?php
require CFROOTPATH. 'footer.php';
cache_end();