Skip to content

Instantly share code, notes, and snippets.

@tobias-kuendig
Created February 8, 2017 10:17
Show Gist options
  • Save tobias-kuendig/34924371c38e22070776fa5cf0df1522 to your computer and use it in GitHub Desktop.
Save tobias-kuendig/34924371c38e22070776fa5cf0df1522 to your computer and use it in GitHub Desktop.
October CMS Laravel Valet Driver
<?php
/**
* Save this file as ~/.valet/Drivers/OctoberCmsValetDriver.php
*/
class OctoberCmsValetDriver 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.'/modules/cms/routes.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.$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 $sitePath.'/index.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment