forked from kartik-v/yii2-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileInput.php
34 lines (30 loc) · 927 Bytes
/
FileInput.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014
* @package yii2-widgets
* @version 3.4.0
*/
namespace kartik\widgets;
use Yii;
use yii\helpers\Html;
use yii\helpers\ArrayHelper;
use yii\web\JsExpression;
/**
* FileInput widget styled for Bootstrap 3.0 with ability to multiple file
* selection and preview, format button styles and inputs. Runs on all modern
* browsers supporting HTML5 File Inputs and File Processing API. For browser
* versions IE9 and below, this widget will gracefully degrade to normal HTML
* file input.
*
* Wrapper for the Bootstrap FileInput JQuery Plugin by Krajee
*
* @see http://plugins.krajee.com/bootstrap-fileinput
* @see https://github.com/kartik-v/bootstrap-fileinput
*
* @author Kartik Visweswaran <[email protected]>
* @since 2.0
* @see http://twitter.github.com/typeahead.js/examples
*/
class FileInput extends \kartik\file\FileInput
{
}