mirror of
https://github.com/laravel/valet.git
synced 2026-02-05 08:30:07 +01:00
wordpress driver
This commit is contained in:
@@ -47,6 +47,7 @@ public static function assign($sitePath, $siteName, $uri)
|
||||
$drivers[] = 'LaravelValetDriver';
|
||||
$drivers[] = 'StatamicValetDriver';
|
||||
$drivers[] = 'JigsawValetDriver';
|
||||
$drivers[] = 'WordPressValetDriver';
|
||||
$drivers[] = 'StaticValetDriver';
|
||||
|
||||
foreach ($drivers as $driver) {
|
||||
|
||||
59
drivers/WordPressValetDriver.php
Normal file
59
drivers/WordPressValetDriver.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
class WordPressValetDriver extends ValetDriver
|
||||
{
|
||||
/**
|
||||
* Determine if the driver serves the request.
|
||||
*
|
||||
* @param string $sitePath
|
||||
* @param string $siteName
|
||||
* @param string $uri
|
||||
* @return void
|
||||
*/
|
||||
public function serves($sitePath, $siteName, $uri)
|
||||
{
|
||||
return is_dir($sitePath.'/wp-admin');
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine if the incoming request is for a static file.
|
||||
*
|
||||
* @param string $sitePath
|
||||
* @param string $siteName
|
||||
* @param string $uri
|
||||
* @return string|false
|
||||
*/
|
||||
public function isStaticFile($sitePath, $siteName, $uri)
|
||||
{
|
||||
if (file_exists($sitePath.$uri) &&
|
||||
! is_dir($sitePath.$uri) &&
|
||||
pathinfo($sitePath.$uri)['extension'] != 'php') {
|
||||
return $sitePath.$uri;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the fully resolved path to the application's front controller.
|
||||
*
|
||||
* @param string $sitePath
|
||||
* @param string $siteName
|
||||
* @param string $uri
|
||||
* @return string
|
||||
*/
|
||||
public function frontControllerPath($sitePath, $siteName, $uri)
|
||||
{
|
||||
$uri = rtrim($uri, '/');
|
||||
|
||||
if ($uri == '/') {
|
||||
return $sitePath.'/index.php';
|
||||
}
|
||||
|
||||
if (file_exists($sitePath.$uri) && ! is_dir($sitePath.$uri)) {
|
||||
return $sitePath.$uri;
|
||||
} elseif (file_exists($frontControllerPath = $sitePath.$uri.'/index.php')) {
|
||||
return $frontControllerPath;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -66,6 +66,7 @@ function show_valet_404()
|
||||
require_once __DIR__.'/drivers/LaravelValetDriver.php';
|
||||
require_once __DIR__.'/drivers/StaticValetDriver.php';
|
||||
require_once __DIR__.'/drivers/JigsawValetDriver.php';
|
||||
require_once __DIR__.'/drivers/WordPressValetDriver.php';
|
||||
|
||||
$valetDriver = ValetDriver::assign($valetSitePath, $siteName, $uri);
|
||||
|
||||
@@ -86,4 +87,8 @@ function show_valet_404()
|
||||
$valetSitePath, $siteName, $uri
|
||||
);
|
||||
|
||||
if (! $frontControllerPath) {
|
||||
show_valet_404();
|
||||
}
|
||||
|
||||
require $frontControllerPath;
|
||||
|
||||
Reference in New Issue
Block a user