-
-
Save wilmanbarrios/daa36e2b13c6b535ed8978c22affd757 to your computer and use it in GitHub Desktop.
Yii2 valet driver . `cp Yii2ValetDriver.php ~/.valet/Drivers/`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Yii2ValetDriver extends ValetDriver | |
{ | |
/** | |
* Determine if the driver serves the request. | |
* | |
* @param string $sitePath | |
* @param string $siteName | |
* @param string $uri | |
* @return bool | |
*/ | |
public function serves($sitePath, $siteName, $uri) | |
{ | |
if (file_exists($sitePath.'/web/index.php')) { | |
return true; | |
} | |
if (file_exists($sitePath.'/vendor/yiisoft/yii2/Yii.php')) { | |
return true; | |
} | |
return true; | |
} | |
/** | |
* 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 ($uri != '/backend/' && (file_exists($staticFilePath = $sitePath.'/frontend/web'.$uri) || file_exists($staticFilePath = $sitePath.str_replace('/backend/', '/backend/web/', $uri)))) { | |
return $staticFilePath; | |
} | |
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) | |
{ | |
//Frontcontroller for Yii frontend | |
$frontControllerPath = '/frontend/web/index.php'; | |
//Setting for Yii | |
$_SERVER['SCRIPT_NAME'] = '/index.php'; | |
$_SERVER['PHP_SELF'] = '/index.php'; | |
//If Yii backend | |
if (strstr($uri, '/backend/')) | |
{ | |
//Frontcontroller for Yii frontend | |
$frontControllerPath = '/backend/web/index.php'; | |
//Setting for Yii | |
$_SERVER['SCRIPT_NAME'] = '/backend/index.php'; | |
$_SERVER['PHP_SELF'] = '/backend/index.php'; | |
} | |
//Setting for Yii | |
$_SERVER['SCRIPT_FILENAME'] = $sitePath.$frontControllerPath; | |
return $sitePath.$frontControllerPath; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment