mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
40493936c3
- AkteLib and DmsLib: added comments, added fallback default user for insertvon - FS_Model: added TempFS_model.php for writing temp files, added comments
17 lines
244 B
PHP
17 lines
244 B
PHP
<?php
|
|
|
|
/**
|
|
* Model for writing temporary files
|
|
*/
|
|
class TempFS_model extends FS_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// default temp directory of server is used
|
|
parent::__construct(sys_get_temp_dir());
|
|
}
|
|
}
|