Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Awab Alnakschbandi
BA
Commits
b2e9e5dd
There was an error fetching the commit references. Please try again later.
Commit
b2e9e5dd
authored
Mar 17, 2023
by
Awab Al Naqshbandy
Browse files
Options
Downloads
Patches
Plain Diff
1.0
parent
f8ac7b61
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
LocalValetDriver.php
+0
-41
0 additions, 41 deletions
LocalValetDriver.php
README.md
+0
-4
0 additions, 4 deletions
README.md
with
0 additions
and
45 deletions
LocalValetDriver.php
deleted
100644 → 0
+
0
−
41
View file @
f8ac7b61
<?php
class
LocalValetDriver
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
):
bool
{
$_uri
=
explode
(
'/'
,
$uri
);
if
(
$_uri
[
1
]
==
'server'
){
return
true
;
}
return
false
;
}
public
function
isStaticFile
(
$sitePath
,
$siteName
,
$uri
)
{
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
):
string
{
return
$sitePath
.
'/server/index.php'
;
}
}
This diff is collapsed.
Click to expand it.
README.md
+
0
−
4
View file @
b2e9e5dd
# Bachelor's Thesis
Conceptualization and Prototypical Implementation of a Digital Knowledge-Work Platform Based on the Concept of Virtual Knowledge Spaces.
# Notes
*
The file 'LocalValetDriver.php' is required only to allow the server to work with Laravel Valet, it is not part of the work.
*
The consists of the files inside the two folders 'client' and 'server'.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment