PluginProbe ʕ •ᴥ•ʔ
WP Fastest Cache – WordPress Cache Plugin / 0.8.9.5
WP Fastest Cache – WordPress Cache Plugin v0.8.9.5
1.4.9 1.4.8 trunk 0.8.6.6 0.8.6.7 0.8.6.8 0.8.6.9 0.8.7.0 0.8.7.1 0.8.7.2 0.8.7.3 0.8.7.4 0.8.7.5 0.8.7.6 0.8.7.7 0.8.7.8 0.8.7.9 0.8.8.0 0.8.8.1 0.8.8.2 0.8.8.3 0.8.8.4 0.8.8.5 0.8.8.6 0.8.8.7 0.8.8.8 0.8.8.9 0.8.9.0 0.8.9.1 0.8.9.2 0.8.9.3 0.8.9.4 0.8.9.5 0.8.9.6 0.8.9.7 0.8.9.8 0.8.9.9 0.9.0.0 0.9.0.1 0.9.0.2 0.9.0.3 0.9.0.4 0.9.0.5 0.9.0.6 0.9.0.7 0.9.0.8 0.9.0.9 0.9.1.0 0.9.1.1 0.9.1.2 0.9.1.3 0.9.1.4 0.9.1.5 0.9.1.6 0.9.1.7 0.9.1.8 0.9.1.9 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7
wp-fastest-cache / templates / cdn / file_types.php
wp-fastest-cache / templates / cdn Last commit date
cloudflare.php 7 years ago file_types.php 7 years ago maxcdn.php 7 years ago other.php 8 years ago photon.php 8 years ago specify_sources.php 9 years ago
file_types.php
32 lines
1 <div class="wpfc-checkbox-list">
2 <?php
3 $types = array("aac",
4 "css",
5 "eot",
6 "gif",
7 "jpeg",
8 "js",
9 "jpg",
10 "less",
11 "mp3",
12 "mp4",
13 "ogg",
14 "otf",
15 "pdf",
16 "png",
17 "svg",
18 "ttf",
19 "webm",
20 "woff",
21 "woff2"
22 );
23
24 foreach ($types as $key => $value) {
25 ?>
26 <label for="file-type-<?php echo $value; ?>">
27 <input id="file-type-<?php echo $value; ?>" type="checkbox" value="<?php echo $value; ?>" checked=""><span class="">*.<?php echo $value; ?></span>
28 </label>
29 <?php
30 }
31 ?>
32 </div>