Skip to content

Instantly share code, notes, and snippets.

@trajche
Created January 17, 2021 21:50
Show Gist options
  • Save trajche/8985700e0b149c44628c99995842ae60 to your computer and use it in GitHub Desktop.
Save trajche/8985700e0b149c44628c99995842ae60 to your computer and use it in GitHub Desktop.
Valet Driver for WonderCMS
<?php
class WonderCMSValetDriver 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.'/themes/essence/theme.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)
{
$_SERVER['DOCUMENT_ROOT'] = $sitePath.'/webroot';
$_SERVER['SCRIPT_FILENAME'] = $sitePath.'/webroot/index.php';
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['PHP_SELF'] = '/index.php';
$parts = explode('/', $uri);
if (!empty($parts[1])) {
$_GET['page'] = $parts[1];
}
return $sitePath.'/index.php';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment