forked from derekbrown/Home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
executable file
·75 lines (66 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
*
* This is just a simple config file to store your web root and a few other items
*
* Change "/www/sites/*" to the directory where you keep your sites.
* Add multiple directories like this:
*
* $dir = array("/www/sites1/*","/www/sites2/*");
*
*/
/** directory name(s) */
$dir = array("/Users/derek/Sites/*");
/** Your local top level domain */
$tld = 'dev';
/*
*
* Icon file names you would like to display next to the link to each site.
* In order of the priority they should be used.
*
*/
$icons = array( 'apple-touch-icon.png', 'favicon.ico' );
/*
*
* Development tools you want displayed in the top navigation bar. Each item should be
* an array containing keys 'name' and 'url'. An example is included (commented out) below.
*
*/
$top_links = array(
array( 'name' => 'Feedbin', 'url' => 'http://feedbin.com', 'class' => 'other' ),
array( 'name' => 'Instapaper', 'url' => 'http://instapaper.com', 'class' => 'other' ),
array( 'name' => 'Reddit', 'url' => 'http://reddit.com/', 'class' => 'reddit' ),
array( 'name' => 'Hacker News', 'url' => 'http://news.ycombinator.com/', 'class' => 'hackernews' ),
array( 'name' => 'Facebook', 'url' => 'http://facebook.com/', 'class' => 'facebook' ),
array( 'name' => 'Twitter', 'url' => 'http://twitter.com/', 'class' => 'twitter' ),
array( 'name' => 'LinkedIn', 'url' => 'http://linkedin.com/', 'class' => 'linkedin' ),
array( 'name' => 'YouTube', 'url' => 'http://youtube.com/', 'class' => 'other' )
);
/*
*
* Options for sites being displayed. These are completely optional, if you don't set
* anything there are default options which will take over.
*
* If you only want to specify a display name for a site you can use the format:
*
* 'sitedir' => 'Display Name',
*
* Otherwise, if you want to set additional options you'll use an array for the options.
*
* 'sitedir' => array( 'displayname' => 'Display Name', 'adminurl' => 'http://example.sites.dev/admin' ),
*
*/
$siteoptions = array(
// 'dirname' => 'Display Name',
// 'dirname' => array( 'displayname' => 'DisplayName', 'adminurl' => 'http://something/admin' ),
);
/*
*
* Directory names of sites you want to hide from the page. If you're using multiple directories
* in $dir be aware that any directory names in the array below that show up in any of
* your directories will be hidden.
*
*/
$hiddensites = array( 'home' );
$playsites = array( 'flatwhite','playground' );
$embersites = array( 'ristretto');