Table of contents:
- Overview
- Installation
- Related Projects
This is generated by Grip using
grip README.md --export README.html
Our Admin Template is managed with bower, so you can update it by running bower-update-all
This is the Documentation of the Framework we are using in our self-developed KIS.
If you want to install the KIS follow these steps:
- clone the Repo:
git clone https://github.com/bennetgallein/KIS.git
- rename the
config.json.example
toconfig.json
an edit at least thedatabase
section. - The
modules
attribute is the basepath of the modules folder where all the modules are located. Changed the accordingly - The
url
is the Basepath of the KIS. Here enter the full path where the KIS folder is located. - Visit the URL
{kis_base_bath}/setup/setup.php
and enter any license. License checking has been disabled with this update. - After that the KIS should be available over the URL you installed it to.
- simple navigate to the folder where the
m̀odules
attribute points to in the config. - then clone any modules you like with:
git clone https://github.com/IntranetProject/module_xxx
If any errors appear, please open an issue and don't contact me privat!
We use a lot of free services to manage all kind of stuff.
We maintaince a list of other repositories to make this Framework work in the way we want it to:
We offer a class that helps with Notification handling.
<?php
include("/php/database.php");
$db = new DB();
include("/php/Notification.php");
$notification = new Notification($db);
// Add Notification
$notification->addNotification($userid, $text);
// Get All Notifications
$notification->getNotification();
// Remove Notification
$notification->removeNotification($user, $id);