Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/znframework/package-filesystem
ZN Framework Filesystem Package
https://github.com/znframework/package-filesystem
Last synced: about 2 months ago
JSON representation
ZN Framework Filesystem Package
- Host: GitHub
- URL: https://github.com/znframework/package-filesystem
- Owner: znframework
- License: mit
- Created: 2018-01-19T12:22:27.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2024-08-12T11:22:17.000Z (5 months ago)
- Last Synced: 2024-10-12T22:57:16.674Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
ZN Framework Filesystem Package
Follow the steps below for installation and use.Installation
You only need to run the following code for the installation.```
composer require znframework/package-filesystem
```Supported Libraries
Folder Library
Click for documentation of your library.
```php
Folder Library
Click for documentation of your library.
```php
Folder::create('Example');
Folder::delete('Example');
```
Upload Library
Click for documentation of your library.
```php
use ZN\Request\Post;
if( Post::uploadButton() )
{
Upload::mimes('image/jpeg', 'image/png')->start('uploadFile', 'upload');
output( Upload::error() );
}
echo Form::enctype('multipart')->open('form');
echo Form::file('uploadFile');
echo Form::submit('uploadButton', 'Upload');
echo Form::close();
```