PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
backblaze
/
src
/
Entities
<?php namespace B2\Entities; /** * Author: Shlomi * Date: Sep 4, 2017 2:14:33 PM * Founder: Shlomi Bazak (SBZsoft) (c) * File: Bucket.inc * * Description: * */ defined("__NSS__") or die("Restrected Access."); class Bucket { const TYPE_PUBLIC = 'allPublic'; const TYPE_PRIVATE = 'allPrivate'; private $_id; private $_name; private $_type; /** * Bucket constructor. * * @param $id * @param $name * @param $type */ public function __construct($id, $name, $type) { $this->_id = $id; $this->_name = $name; $this->_type = $type; } public function getId() { return $this->_id; } public function getName() { return $this->_name; } public function getType() { return $this->_type; } public function getFileManager() { return $this->_fileManager; } }
[-] Bucket.inc
[edit]
[-] B2Api.inc
[edit]
[-] FileUploader.inc
[edit]
[+]
..
[-] FileManager.inc
[edit]
[-] MimeTypes.inc
[edit]
[-] File.inc
[edit]
[-] BucketManager.inc
[edit]
[-] ChunkFileUploader.inc
[edit]