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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
<?php
class LS_Sources {
// handle => path public static $skins = array(); public static $sliders = array(); public static $transitions = array();
private function __construct() {
}
/** * Adds the skins from the directory provided, so * users can select them in the slider settings. * * @since 5.3.0 * @access public * @param string $path Path to directory that holds your skins. It's assumed to be a direct skin folder if it contains a skin.css file. * @return void */ public static function addSkins($path) {
$skinsPath = $skins = array(); $path = rtrim($path, '/\\');
// It's a direct skin folder if(file_exists($path.'/skin.css')) { $skinsPath = array($path);
} else { // Get all children if it's a parent directory $skinsPath = glob($path.'/*', GLOB_ONLYDIR); }
// Iterate over the skins foreach($skinsPath as $key => $path) {
// Exclude non-valid skins if( !file_exists($path.'/skin.css') ) { continue; }
// Gather skin data $handle = strtolower(basename($path)); $skins[$handle] = array( 'name' => $handle, 'handle' => $handle, 'dir' => $path, 'file' => $path.DIRECTORY_SEPARATOR.'skin.css' );
// Get skin info (if any) if(file_exists($path.'/info.json')) { $skins[$handle]['info'] = json_decode(file_get_contents($path.'/info.json'), true); $skins[$handle]['name'] = $skins[$handle]['info']['name'];
if( ! empty( $skins[$handle]['info']['requires'] ) ) { $skins[$handle]['requires'] = $skins[$handle]['info']['requires']; } } }
self::$skins = array_merge(self::$skins, $skins); ksort( self::$skins ); }
/** * Removes a previously added skin by its folder name as being $handle. * * @since 5.3.0 * @access public * @param string $skin The name of the skin/folder * @return void */ public static function removeSkin($handle) { unset( self::$skins[ strtolower($handle) ] ); }
/** * Returns skin information by its folder name as being $handle. * * @since 5.3.0 * @access public * @param string $skin The name of the skin/folder * @return array Skin details */ public static function getSkin($handle) { return self::$skins[ strtolower($handle) ]; }
/** * Returns all skins. * * @since 5.3.0 * @access public * @return array Array of all skins */ public static function getSkins() { return self::$skins; }
/** * Returns the directory path of a skin by its folder name as being $handle * * @since 5.3.0 * @access public * @param string $skin The name of the skin/folder * @return string Path for the skin's directory */ public static function pathForSkin($handle) { return self::$skins[ strtolower($handle) ]['dir'] . DIRECTORY_SEPARATOR; }
/** * Returns the directory path of a skin by its folder name as being $handle * * @since 5.3.0 * @access public * @param string $skin The name of the skin/folder * @return string URL for the skin's directory */ public static function urlForSkin( $handle ) { $path = self::$skins[ strtolower($handle) ]['dir']; $url = content_url() . str_replace(realpath(WP_CONTENT_DIR), '', realpath($path)).'/'; $url = set_url_scheme( str_replace('\\', '/', $url) );
if( has_filter( 'layerslider_skin_url' ) ) { $url = apply_filters( 'layerslider_skin_url', $url, $handle ); }
return $url; }
// ---------------------------------------------
/** * Adds an exported ZIP to the list of importable sample sliders. * * @since 5.3.0 * @access public * @param string $path Path to the .zip file * @return void */ public static function addDemoSlider( $path ) {
$slidersPath = $sliders = array(); $path = rtrim($path, '/\\');
// It's a direct slider folder if(file_exists($path.'/slider.zip')) { $slidersPath = array($path);
} else { // Get all children if it's a parent directory $slidersPath = glob($path.'/*', GLOB_ONLYDIR); }
// Iterate over the sliders if( ! empty( $slidersPath ) ) { foreach($slidersPath as $key => $path) {
// Exclude non-valid demo sliders if( !file_exists($path.'/slider.zip') ) { continue; }
// Gather slider data $handle = strtolower(basename($path)); $sliders[$handle] = array( 'name' => $handle, 'handle' => $handle, 'dir' => $path, 'file' => $path.DIRECTORY_SEPARATOR.'slider.zip', 'bundled' => true, );
// Get skin info (if any) if(file_exists($path.'/info.json')) { $sliders[$handle]['info'] = json_decode(file_get_contents($path.'/info.json'), true); $sliders[$handle]['name'] = $sliders[$handle]['info']['name'];
$sliders[$handle]['groups'] = 'free,bundled,'; if( ! empty( $sliders[$handle]['info']['groups'] ) ) { $sliders[$handle]['groups'] .= $sliders[$handle]['info']['groups']; }
$sliders[$handle]['url'] = '#'; if( ! empty($sliders[$handle]['info']['url']) ) { $sliders[$handle]['url'] = $sliders[$handle]['info']['url']; }
if( ! empty( $sliders[$handle]['info']['requires'] ) ) { $sliders[$handle]['requires'] = $sliders[$handle]['info']['requires']; } }
// Get preview (if any) if(file_exists($path.'/preview.png')) { $url = content_url() . str_replace(realpath(WP_CONTENT_DIR), '', $path).'/preview.png'; $sliders[$handle]['preview'] = str_replace('\\', '/', $url); } } }
if( ! empty( $sliders ) ) { self::$sliders = array_merge(self::$sliders, $sliders); ksort( self::$sliders ); } }
/** * Removes a previously added demo slider export by its folder name as being $handle * * @since 5.3.0 * @access public * @param string $path Path to the .zip file * @return void */ public static function removeDemoSlider( $handle ) { unset( self::$sliders[ strtolower($handle) ] ); }
/** * Retrieves a previously added demo slider by its folder name as being $handle * * @since 5.3.0 * @access public * @param string $path Path to the .zip file * @return array Array of previously added demo slider paths */ public static function getDemoSlider( $handle ) { return self::$sliders[ strtolower($handle) ]; }
/** * Retrieves all demo sliders added previously. * * @since 5.3.0 * @access public * @param string $path Path to the .zip file * @return array Array of previously added demo slider paths */ public static function getDemoSliders() { return self::$sliders; }
/** * Returns the directory path of a previously added demo slider export by its folder name as being $handle * * @since 5.3.0 * @access public * @param string $path Path to the .zip file * @return string Path to the .zip file */ public static function pathForDemoSlider( $handle ) { return self::$sliders[ strtolower($handle) ]['dir'] . DIRECTORY_SEPARATOR; }
// --------------------------------------------- }
?>
|