-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.php.template
58 lines (57 loc) · 1.71 KB
/
config.php.template
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
<?php
return array(
// All domains - one or more - that are served by this PhpADNSite instance
'domains' => array(
'example.com' => array(
// The API backend configuration for this user
'backend_config' => array(
// The app.net username
'username' => 'example',
// An access token for the API
'access_token' => 'example'
),
// The theme configuration for this user
'theme_config' => array(
// Theme name; leave at "bootstrap-default" for the standard theme
'name' => 'bootstrap-default',
// Optional variables specified by the theme (the standard theme has none)
'variables' => array()
),
// Custom links for the HTML head
'links' => array(
array(
'rel' => '',
'href' => ''
)
),
'meta' => array(
array(
'name' => '',
'content' => ''
)
)
)
),
// Chain of plugin class names; plugins are executed in the order in which they are specified here
'plugins' => array(
//'PhpADNSite\Plugins\ReplyAndDirectedPostHider',
//'PhpADNSite\Plugins\LongpostsPlugin',
//'PhpADNSite\Plugins\OEmbedProcessor',
//'PhpADNSite\Plugins\WebmentionPlugin',
//'PhpADNSite\Plugins\ReactionPlugin'
),
// Filtered Views that are made available on the site
'views' => array(
//'PhpADNSite\FilteredViews\TopPostsView',
//'PhpADNSite\FilteredViews\LongpostsView'
),
// The API backend; typically this should NOT be changed unless you want to use an API proxy
'backend' => array(
'class' => 'PhpADNSite\Core\GuzzleAPIClient',
'config' => array(
'uri' => 'https://api.app.net/'
)
),
// Debug mode; should always remain false except during (plugin) development
'debug' => false
);