Skip to content

Instantly share code, notes, and snippets.

@dorelljames
Last active February 20, 2019 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dorelljames/2325b191dd050c67a105bd7235befd99 to your computer and use it in GitHub Desktop.
Save dorelljames/2325b191dd050c67a105bd7235befd99 to your computer and use it in GitHub Desktop.
Laravel Valet Driver for AbanteCart. Save this file to ~/.valet/Drivers/ or ~/.config/valet/Drivers on new version
<?php
class AbanteCartValetDriver 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)
{
if (file_exists($sitePath.'/public_html/index.php')) {
return true;
}
return false;
}
/**
* 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.'/public_html/'.$uri)) {
return $staticFilePath;
}
if (file_exists($staticFilePath = $sitePath.'/public_html/install/'.$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)
{
$_SERVER['PHP_SELF'] = $uri;
if ($uri == '/')
return $sitePath.'/public_html/index.php';
return strpos($uri, '.php') ? $sitePath.'/public_html/'.$uri : $sitePath.'/public_html/'.$uri.'.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment