This repository was archived by the owner on Apr 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconstants.php
More file actions
120 lines (88 loc) · 3.69 KB
/
constants.php
File metadata and controls
120 lines (88 loc) · 3.69 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
if (!class_exists('Constants')) {
class Constants {
/* ----= FLASH VARS =---- */
// id
public static $ID_KEY = 'id';
public static $JAVASCRIPT_ID_KEY = 'javascriptid';
// enablejs
public static $ENABLE_JS_KEY = 'enablejs';
public static $ENABLE_JS_VALUE = 'true';
// file type
public static $FILE_TYPE_KEY = 'type';
public static $FILE_TYPE_VALUE = 'video';
// background color
public static $BACKGROUND_COLOR_KEY = 'backcolor';
public static $BACKGROUND_COLOR_VALUE = '111111';
// foreground color
public static $FOREGROUND_COLOR_KEY = 'frontcolor';
public static $FOREGROUND_COLOR_VALUE = 'cccccc';
// light color
public static $LIGHT_COLOR_KEY = 'lightcolor';
public static $LIGHT_COLOR_VALUE = '66cc00';
// stretching
public static $STRETCHING_KEY = 'stretching';
public static $STRETCHING_VALUE = 'fill';
// autostart
public static $AUTO_START_KEY = 'autostart';
public static $AUTO_START_VALUE = 'false';
// repeat
public static $REPEAT_KEY = 'repeat';
public static $REPEAT_VALUE = 'false';
// mute
public static $MUTE_KEY = 'mute';
public static $MUTE_VALUE = 'false';
// watermark
public static $WATERMARK_KEY = 'logo';
public static $WATERMARK_VALUE = 'watermark.png';
// preview image
public static $PREVIEW_KEY = 'image';
public static $PREVIEW_VALUE = 'preview.png';
// plugins
public static $PLUGINS_KEY = 'plugins';
public static $PLUGINS_VALUE = '';
// skin
public static $SKIN_KEY = 'skin';
public static $SKIN_VALUE = 'default.swf';
// ad channel
public static $AD_CHANNEL_KEY = 'channel';
public static $AD_CHANNEL_VALUE = '';
// ad channel script
public static $AD_SCRIPT_KEY = 'adscript';
public static $AD_SCRIPT_VALUE = '';
/* ----= FLASH ATTRIBUTES =---- */
// width
public static $WIDTH_KEY = 'width';
public static $WIDTH_VALUE = '530';
// height
public static $HEIGHT_KEY = 'height';
public static $HEIGHT_VALUE = '253';
/* ----= FLASH PARAMS =---- */
// wmode
public static $WMODE_KEY = 'wmode';
public static $WMODE_VALUE = 'transparent';
// allowfullscreen
public static $ALLOW_FULLSCREEN_KEY = 'allowfullscreen';
public static $ALLOW_FULLSCREEN_VALUE = 'true';
// allowscriptaccess
public static $ALLOW_SCRIPT_ACCESS_KEY = 'allowscriptaccess';
public static $ALLOW_SCRIPT_ACCESS_VALUE = 'always';
// allownetworking
public static $ALLOW_NETWORKING_KEY = 'allownetworking';
public static $ALLOW_NETWORKING_VALUE = 'all';
/* ---= PLUGINS =--- */
public static $PLUGIN_REVOLT = 'revolt-1';
public static $PLUGIN_REVOLT_OPTIONS = '';
public static $PLUGIN_VIRAL = 'viral-2';
public static $PLUGIN_VIRAL_OPTIONS = '&viral.callout=none&viral.onpause=false';
public static $PLUGIN_SUBPLY = 'subply-1';
public static $PLUGIN_SUBPLY_OPTIONS = '';
public static $PLUGIN_RATE_IT = 'rateit-1';
public static $PLUGIN_RATE_IT_OPTIONS = '';
public static $PLUGIN_QUICK_KEYS = 'quickkeys-1';
public static $PLUGIN_QUICK_KEYS_OPTIONS = '';
public static $PLUGIN_FLOW = 'flow-1';
public static $PLUGIN_FLOW_OPTIONS = '&flow.position=bottom&flow.showtext=false';
}
}
?>