forked from ThemeFuse/Brizy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.dev.php
More file actions
executable file
·82 lines (69 loc) · 3 KB
/
Copy pathconfig.dev.php
File metadata and controls
executable file
·82 lines (69 loc) · 3 KB
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
76
77
78
79
80
81
82
<?php
class Brizy_Config {
const SITE_URL_PLACEHOLDER = '{@brizy_SITE_URL_PLACEHOLDER@}';
const SITE_URL_PLACEHOLDER_REGEX = '/{@brizy_SITE_URL_PLACEHOLDER@}/im';
const LOCAL_PAGE_ASSET_STATIC_URL = '/brizy/%s';
const MEDIA_IMAGE_URL = '/media';
const FONTS_URL = 'http://editor:3000/static';
// this seems like it's not used any more. Leaving untouched
const GATEWAY_URI = 'http://api.brizy.org';
const CDN = 'http://bzassets.net/upload';
const BRIZY_BLANK_TEMPLATE_FILE_NAME = 'brizy-blank-template.php';
const BRIZY_TEMPLATE_FILE_NAME = 'brizy-header-footer-template.php';
const BRIZY_APPLICATION_FORM_ID = '4_4sh251774pwkgswwcow4ssgkkgosk4wowgss00k8w0ggs8808o';
const BRIZY_APPLICATION_FORM_NOTIFICATION_URL = 'http://cloud.bodnar.site/form/submit';
const BRIZY_PLATFORM_MULTIPASS_LOGIN = '/multipass/login/%s/%s?email=%s';
const PLATFORM_CLIENT_ID = "5_3nneq7brm50k4s4s4g0owk0088k8wco80cg4kc88o8wg0ks4w0";
const PLATFORM_CLIENT_SECRET = "3dfj9r23uqgws0kws0cgsgs0008owcwo4o0o08sgs8o4wgco4";
const PLATFORM_EMAIL = "admin@admin.com";
const UPGRADE_TO_PRO_URL = "https://www.brizy.io/brizy-pro-pricing/";
const SUPPORT_URL = "https://support.brizy.io";
const ABOUT_URL = "https://brizy.io";
const GO_PRO_DASHBOARD_URL = "https://www.brizy.io/brizy-pro-pricing/?utm_source=wp-menu&utm_campaign=gopro&utm_medium=wp-dash/";
const EDITOR_BUILD_PATH = BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR . 'editor-build' . DIRECTORY_SEPARATOR . 'dev';
const EDITOR_BUILD_URL = BRIZY_PLUGIN_URL . '/public/editor-build/dev';
const COMPILER_DOWNLOAD_URL = 'http://apache/wp-content/plugins/brizy/public/editor-build/dev';
const CLOUD_APP_KEY = 'YTVhMDEwMGUyNGE4OTQ5OWM2NTY3OGM3N2MxNzMzMTBjOWVlNTg0OGM0NWU1NGYzY2QxMGEzOWQ3NWNjMDk3Zg';
const CLOUD_ENDPOINT = 'http://www.brizysites.com';
const CLOUD_EDITOR_VERSIONS = '/api/versions';
const CLOUD_LIBRARY = '/dev/library';
const CLOUD_SIGNIN = '/api/sign_ins';
const CLOUD_SIGNUP = '/api/sign_ups';
const CLOUD_RESET_PASSWORD = '/api/recover_passwords';
const CLOUD_MEDIA = '/api/media';
const CLOUD_CONTAINERS = '/api/containers';
const CLOUD_PROJECTS = '/api/projects';
const CLOUD_SAVEDBLOCKS = '/api/saved_blocks';
const CLOUD_FONTS = '/api/fonts';
const CLOUD_POPUPS = '/api/saved_popups';
const CLOUD_LAYOUTS = '/api/layouts';
const CLOUD_SCREENSHOT = '/screenshot/%s';
const CLOUD_SCREENSHOTS = '/api/screenshots';
static public function getCompilerUrls() {
return new Brizy_Admin_UrlIterator(
array(
'http://compiler:5000/compile/v3'
)
);
}
static public function getStaticUrls() {
return new Brizy_Admin_UrlIterator(
array(
'http://bitblox.local/static'
)
);
}
static public function getEditorBaseUrls() {
return new Brizy_Admin_UrlIterator(
array(
'http://www.brizysites.com'
)
);
}
static public function getOptimizerConfig( $className ) {
switch ( $className ) {
case 'Brizy_Editor_Asset_Optimize_ShortpixelOptimizer':
return array( 'API_KEY' => 'uunlmNjZZBtKLfCSg4OK' );
}
}
}