Download the PHP package ikkez/f3-fal without Composer

On this page you can find all versions of the php package ikkez/f3-fal. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package f3-fal

FAL LOGO

A File Abstraction Layer for the Fat-Free Framework

This F3-Plugin aims to give you an easy mapper for files, that allows you to attach some meta information to them. It comes with some filesystem adapters, to provide you a unified access to your files, which takes apart the need of changing code, when you'll change the files location / filesystem.

This way you don't have to worry about where and how the files will be stored. You can easily load, save and move files between the given filesystems. Currently available adapters are: Local Filesystem, FTP and DropBox (expect more to come).

This Plugin requires F3 version 3.3.0 or higher.

Installation


Filesystem

The FAL package comes along with a bunch of adapters you can all use separately. They all should implement the filesystem.php interface, that'll give you some basic filesystem operations, the FAL mapper takes advantage from.

To setup your filesystem, follow these examples:

Local Filesystem Adapter

Mount on your files/ folder:

You can also use this Prefab shortcut. It will create a mapper object and mounts the LocalFS on your layout directory defined in F3 UI var.

FTP Adapter

DropBox Adapter

To gain access to the users DropBox account, you need a KEY and a SECRET token for your app first. You can register a new app and get the keys for free right here: https://www.dropbox.com/developers/apps

Now the User has to authenticate with your new App. Therefor he'll be redirected to the DropBox Auth page, where he must agree. To run the login procedure, do the following:

If the login was successful, $authTokens will contain an array of oauth_token and oauth_token_secret. Save them beside your user data and set them with $dropbox->setAuthToken($token, $secret); the next time, to reuse that token-pair. Otherwise you'll need to login on every request again. (Currently, the token-pair is also cached and reused from the browser SESSION. This may change during the progress of the development.)

Working with filesystems

Some filesystems may have additional features. Look inside the code to get to know about it.


Working with the FAL mapper

Create a new file

Using meta data

You can add new keys to the FAL object. Each will represent a meta property.

To access them after you hydrated the mapper by load(), you can simply echo $fal->title or use it as Array like echo $fal['title'].

Caching

FAL has an integrated caching feature that uses the F3 Cache engine. This way you can save remote files of a slow filesystem and don't need to connect and fetch the file data each time you read on it.

If you save new content or meta data to a loaded, cached file, it'll refresh your cached data too.

Meta files

When you save meta data, FAL uses a MetaStorageInterface to store it. By default it uses meta files, that will be stored beside the real file. Let's say you have monalisa.jpg and save artist='Leonardo da Vinci' to it. FAL will now create the file monalisa.jpg.meta, which contains a json encoded meta array. If you like to name this meta files in a different way, you can achieve it like this:

Now your meta files would look like _.metamonalisa.jpg and would be hidden due to the leading dot(.) in filename (except on windows). But be careful, with hidden files. I.e. when using the FTP adapter, you might need to change the FTP server settings. If you run Proftpd, your default settings won't allow clients to view hidden files, so FAL can not find them. You can change that behaviour by editing /etc/proftpd/proftpd.conf and add this:

File Streams

Sometimes you may consider to work with files. Therefore FAL creates a StreamWrapper and loads the file into it. You can now use this file stream to run all other common operations that requires a valid file path.

Function Overview

Roadmap

License

You are allowed to use this plugin under the terms of the GNU General Public License version 3 or later.

Copyright (C) 2017 Christian Knuth [ikkez]


All versions of f3-fal with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ikkez/f3-fal contains the following files

Loading the files please wait ....