-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
55 lines (39 loc) · 1.42 KB
/
config.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
<?php
// Basic information
//--------------------------------------------------
// First Name Only
$simpliFirstName = "John/Jane";
// Middle Name(s)
// OPTIONAL, if you don't want to include this information, just leave it as ""
$simpliMiddleName = "";
// Last Name Only
$simpliLastName = "Doe";
// Your Title
$simpliTitle = "The most generic person in the world";
// Website URL
$simpliURL = "http://www.yourdomain.com/";
// Email Address
$simpliEmail = "you@yourdomain.com";
// Physical Address Information.
// This isn't displayed on the screen, it's for the vCard creation service.
// If you don't wish to include any pieces, leave them as ""
$simpliCity = "Halifax";
$simpliState = "Nova Scotia";
$simpliCountry = "Canada";
$simpliZip = "99999";
$simpliPhone = "(555) 555-5555";
// Social URLs
//--------------------------------------------------
$simpliSocial1Name = "Blog";
$simpliSocial1URL = "http://www.peoii.com/";
$simpliSocial2Name = "Google+";
$simpliSocial2URL = "http://plus.google.com/";
$simpliSocial3Name = "Twitter";
$simpliSocial3URL = "http://www.twitter.com/";
$simpliSocial4Name = "LinkedIn";
$simpliSocial4URL = "http://www.linkedin.com/";
$simpliSocial5Name = "Email Me";
$simpliSocial5URL = "mailto:you@yourname.com";
// Don't touch anything below this line unless you know what you're doing.
$simpliName = $simpliFirstName . " " . $simpliLastName;
?>