huge fml update

This commit is contained in:
Steffen Schröder
2014-01-19 19:30:21 +01:00
parent 9654b26f2b
commit 771409b8eb
66 changed files with 2303 additions and 134 deletions

View File

@ -3,7 +3,8 @@
namespace FML\Controls;
/**
* Class representing CMlFileEntry
* FileEntry Control
* (CMlFileEntry)
*
* @author steeffeen
*/
@ -13,6 +14,17 @@ class FileEntry extends Entry {
*/
protected $folder = '';
/**
* Create a new FileEntry Control
*
* @param string $id (optional) Control Id
* @return \FML\Controls\FileEntry
*/
public static function create($id = null) {
$fileEntry = new FileEntry($id);
return $fileEntry;
}
/**
* Construct a new FileEntry Control
*