-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-sample.php
54 lines (42 loc) · 3 KB
/
config-sample.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
<?php
require_once 'php-stagebloc-api/StageBloc.php';
// These three pieces of information can be found be creating an Application on StageBloc
// In this case, the application has already been created by your friends at Stagebloc, you just need to authenticate with it
// If for any reason you need to use a different redirect URL, you can easily create your own application on StageBloc and use that instead
$clientId = '840c1d25a765312f1be2ec4a6167f0d8';
$clientSecret = 'f21789142cc2a76d5e93b29eae70c482';
$redirectUri = 'http://localhost';
// The folder that will contain your themes
// Each folder in this directory should be named what you want the themes name to be
// Each subfolder for a theme should have at least a theme.sbt, javascript.js, and style.css file
$themePath = './themes/';
// The folder that may contain extra theme view files
// Using {Include file="<theme_file_name>.sbt"} anywhere in your main theme.sbt file will include theme_file_name.sbt from this folder
// This can be used as a way to organize your theme a bit more and not have to have all the HTML in one file
// If null, it'll assume your entire theme is in theme.sbt
$themeViewsPath = null;
// The path to where CSS files are stored for each theme relative to the theme itself (i.e. you shouldn't need a beginning slash)
// Each CSS file in the folder specified by the path will be added in a <link> tag at the top of the theme (folder searching isn't recursive)
// If you use "Submit" theme, the CSS from the files in this directory will be appended into one, larger CSS dump before POSTing it to the server
// If null, it will look for /theme_dir/style.css
$cssPath = null;
// The path to where JS files are stored for each theme relative to the theme itself (i.e. you shouldn't need a beginning slash)
// Behaves similarily to $cssPath with regards to the other behavaviors
// If null, it will look for /theme_dir/javascript.js
$jsPath = null;
// Once you have the other three pieces of information, this can be found by using index.php to get an access token
// It will be placed here for you automatically once you login with your StageBloc credentials
$accessToken = null;
// This will be populated for your automagically upon authentication
// For those who are curious, it's basically just a log of the JSON returned from the API to have locally
// So if you ever need to "reset" your login, changing both this and $accessToken back to null will force another login
$accountData = null;
// Since you're authenticated with the API, the themeing engine usually assumes there's a logged in user when rendering the theme
// Set this to true to simulate what a logged out user would see (useful when testing fansite stuff, etc)
$simulateLoggedOutUser = false;
$inDevelopment = false; // This will basically always be false, StageBloc uses this internally
// Setup our StageBloc OAuth object
$stagebloc = new Services_StageBloc($clientId, $clientSecret, $redirectUri, $inDevelopment);
$stagebloc->setAccessToken($accessToken);
$stagebloc->setResponseFormat('json');
?>