- Removed body tag from footer.php and header.php

- Added permission fs/dms to dump.sql and fhcomplete.php
- Added FilesystemLib to read and write from/in filesystem
- Added FS_Model to manage filesystem with the same permission system of DB_Model
- Added more models to handle the Dms
- Modified Dms controller to use the new models
This commit is contained in:
paolo
2016-06-21 11:10:55 +02:00
parent 68963a962a
commit 5a5a22e0d5
10 changed files with 463 additions and 182 deletions
@@ -0,0 +1,13 @@
<?php
class DmsFS_model extends FS_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->filepath = DMS_PATH;
}
}