https://github.com/timostrating/pdfbooks
Project 1.1 - Based on this project we separated the framework code -->
https://github.com/timostrating/pdfbooks
framework hanzehogeschool php
Last synced: 7 days ago
JSON representation
Project 1.1 - Based on this project we separated the framework code -->
- Host: GitHub
- URL: https://github.com/timostrating/pdfbooks
- Owner: timostrating
- Created: 2017-10-20T09:18:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-21T14:57:12.000Z (about 8 years ago)
- Last Synced: 2025-02-23T10:18:14.666Z (over 1 year ago)
- Topics: framework, hanzehogeschool, php
- Language: PHP
- Homepage: https://github.com/timostrating/noframework
- Size: 14.6 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pdfbooks.nl
# Setup
There is no setup required just place the folder pdfbooks on your server and go to [localhost/pdfbooks](localhost/pdfbooks).
The files used in the demo are in /app/views/demo/...
## Command line tool of https://github.com/timostrating/noframework
$ php nofamework.php
_ _ ______ _
| \ | | | ____| | |
| \| | ___ | |__ __ _ _ __ ___ _____ _____ _ __| | __
| . ` |/ _ \| __| / _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
| |\ | (_) | | | (_| | | | | | | __/\ V V / (_) | | | <
|_| \_|\___/|_| \__,_|_| |_| |_|\___| \_/\_/ \___/|_| |_|\_\
you can use the following functions
generate [name] - generates a scaffold
seed - seeds the database
routes - shows all SuperGlobal route paths
## Project structure
- app/ -- All our MVC stuff goes in here
- model/ -- Our MVC Model
- view/ -- Our MVC Views
- contollers/ -- Our MVC Controllers
- config/ -- All configuration files
app.php -- This links the public/index.php to the framework
config.php -- General personal configuration for your installation
routes.php -- This file links a url to a function in a controller
seeds.php -- This file contains everything to rebuild the database
- core/ -- Our most important framework files
- Autoload/ -- Autoload Class
- database/ -- Database Class
- router/ -- View / ViewLoader Class
helpers.php -- All helper functions are in here
- noframework/ -- A collection of files that are used in the generators
- public/ -- The root of our application
- assets/ -- Contains all assets for the web-application
index.php -- Root file
index.html -- Welcome message
noframework.php -- $ php ./noframework.php for more info about this tool