aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/backend/classes/secrets.php
blob: f584034c68b05dc102a1bbe6563422e460a1eafa (plain)
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
<?php namespace HashOver;

// Copyright (C) 2010-2018 Jacob Barkdull
// This file is part of HashOver.
//
// I, Jacob Barkdull, hereby release this work into the public domain.
// This applies worldwide. If this is not legally possible, I grant any
// entity the right to use this work for any purpose, without any
// conditions, unless such conditions are required by law.
//
//--------------------
//
// IMPORTANT NOTICE:
//
// To retain your settings and maintain proper functionality, when
// downloading or otherwise upgrading to a new version of HashOver it
// is important that you preserve this file, unless directed otherwise.
//
// It is also important to choose UNIQUE values for the encryption key,
// admin name, and admin password, as not doing so puts HashOver at
// risk of being hijacked. Allowing someone to delete comments and/or
// edit existing comments to post spam, impersonate you or your
// visitors in order to push some sort of agenda/propaganda, to defame
// you or your visitors, or to imply endorsement of some product(s),
// service(s), and/or political ideology.


class Secrets
{
	// E-mail for notification of new comments
	public $notificationEmail = 'email_username';

	// Unique encryption key (case-sensitive)
	protected $encryptionKey = 'hashover_key';

	// Login name to gain admin rights (case-sensitive)
	protected $adminName = 'hashover_admin';

	// Login password to gain admin rights (case-sensitive)
	protected $adminPassword = 'hashover_password';
}