Skip to content

Instantly share code, notes, and snippets.

@oschettler
Created June 28, 2016 11:57
Show Gist options
  • Save oschettler/20570d02adda8e4e78307c851c26f199 to your computer and use it in GitHub Desktop.
Save oschettler/20570d02adda8e4e78307c851c26f199 to your computer and use it in GitHub Desktop.
<?php
class DrupalValetDriver extends ValetDriver
{
private function documentRoot($sitePath)
{
return $sitePath . '/web';
}
/**
* 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 (is_dir($this->documentRoot($sitePath) . '/modules')) {
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 = $this->documentRoot($sitePath) . $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)
{
$filePath = $this->documentRoot($sitePath) . $uri;
if (pathinfo($filePath, PATHINFO_EXTENSION) === 'php' && file_exists($filePath)) {
return $filePath;
}
return $this->documentRoot($sitePath) . '/index.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment