Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s2b/rental
Equipment rental tool for academic institutions. Please note that this project isn't under active development. Also note that all outputs are hard-coded in German.
https://github.com/s2b/rental
Last synced: 11 days ago
JSON representation
Equipment rental tool for academic institutions. Please note that this project isn't under active development. Also note that all outputs are hard-coded in German.
- Host: GitHub
- URL: https://github.com/s2b/rental
- Owner: s2b
- License: mit
- Created: 2011-07-08T12:50:12.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-07-08T14:08:00.000Z (over 13 years ago)
- Last Synced: 2024-10-28T15:25:22.542Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 593 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
- License: LICENSE
Awesome Lists containing this project
README
This is an equipment rental tool for academic institutions. Please note that this project isn't under active development. Also note that all outputs are hard-coded in German.
h2. Installation
# create database and import rental.sql dump
# place source files in htdocs
# adjust configuration files in system/application/config:
** config.php: $config['base_url']
** database.php: $db['default']['hostname'], $db['default']['username'], $db['default']['password'], $db['default']['database']
** notifications.php: $config['system_email']
** email.php: See CodeIgniter documentation
# open index.php in your browser
# register new user
# set user_role to 1 (= admin privileges) in the users table in your databaseh2. Features
* user management
* inventory management
* inventory packages
* inventory and room bookings
* email notificationsh2. Special tasks
* Add semester:
INSERT INTO semesters (semester_title)
VALUES(ʼ10/11ʼ);
* Add room:
INSERT INTO inventory (inventory_room, inventory_status, inventory_time, user_id, inventory_title, inventory_desc)
VALUES(1, 1, NOW(), 1, 'Room name', 'Room description');