コード例 #1
0
ファイル: PdfUploader.php プロジェクト: Prowect/Uploader
 /**
  * creates a new uploader-instance.
  *
  * @throws \DripsPHP\Converter\UnitNotFoundException
  */
 public function __construct()
 {
     parent::__construct();
     $this->filetypes = array('pdf');
 }
コード例 #2
0
ファイル: ImageUploader.php プロジェクト: Prowect/Uploader
 /**
  * creates a new uploader-instance.
  *
  * @throws \DripsPHP\Converter\UnitNotFoundException
  */
 public function __construct()
 {
     parent::__construct();
     $this->filetypes = array('png', 'jpg', 'gif', 'jpeg');
 }