Closte.php
1 year ago
Cloudways.php
1 year ago
DreamHost.php
1 year ago
Flywheel.php
1 year ago
GoDaddyWPaaS.php
1 year ago
GridPane.php
1 year ago
Hosting.php
1 year ago
Kinsta.php
1 year ago
Pagely.php
1 year ago
PagelyCachePurge.php
1 year ago
Pantheon.php
1 year ago
Pressable.php
1 year ago
Raidboxes.php
1 year ago
RocketNet.php
1 year ago
Savvii.php
1 year ago
SiteGround.php
1 year ago
SpinupWp.php
1 year ago
Vimexx.php
1 year ago
WPEngine.php
1 year ago
WPX.php
1 year ago
WPmudev.php
1 year 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 |