Skip to content

Instantly share code, notes, and snippets.

@mallardduck
Created December 11, 2018 16:41
Show Gist options
  • Save mallardduck/eb8b270320f21afb936b33b118bc55b5 to your computer and use it in GitHub Desktop.
Save mallardduck/eb8b270320f21afb936b33b118bc55b5 to your computer and use it in GitHub Desktop.
A valet driver for the Xhgui tool
<?php
class XhguiValetDriver extends BasicValetDriver
{
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return bool
*/
public function serves($sitePath, $siteName, $uri)
{
return is_dir( $sitePath . '/webroot' ) && is_dir( $sitePath . '/config' );
}
/**
* 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($staticFilePath = $sitePath.'/webroot/'.$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)
{
return parent::frontControllerPath(
$sitePath.'/webroot', $siteName, $uri
);
return $sitePath.'/webroot/index.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment