Closte.php
4 years ago
Cloudways.php
4 years ago
DreamHost.php
3 years ago
Flywheel.php
4 years ago
GoDaddyWPaaS.php
4 years ago
GridPane.php
4 years ago
Hosting.php
4 years ago
Kinsta.php
2 years ago
Pagely.php
4 years ago
PagelyCachePurge.php
4 years ago
Pantheon.php
2 years ago
Pressable.php
3 years ago
Raidboxes.php
2 years ago
RocketNet.php
3 years ago
Savvii.php
3 years ago
SiteGround.php
2 years ago
Vimexx.php
3 years ago
WPEngine.php
4 years ago
WPX.php
3 years ago
WPmudev.php
2 years ago
GridPane.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace NitroPack\Integration\Hosting; |
| 4 | |
| 5 | class GridPane extends Hosting { |
| 6 | const STAGE = NULL; |
| 7 | |
| 8 | public static function detect() { |
| 9 | $configFilePath = nitropack_get_wpconfig_path(); |
| 10 | if (!$configFilePath) return false; |
| 11 | return strpos(file_get_contents($configFilePath), 'GridPane Cache Settings') !== false; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | |
| 16 |