Download the PHP package webiik/login without Composer

On this page you can find all versions of the php package webiik/login. 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 login

Login

The Login manages the user login state. It supports:

Note: This class is meant to be used after the successful user authentication and authorization.

Installation

Example

Summary

Basic Login

setSessionKey

setSessionKey() sets the key of login state stored in PHP session. This key holds the uid value. The default value of the key is logged.

setNamespace

setNamespace() sets login namespace. If you want to make the login valid only for the specific part of your app, use the login namespace. Imagine you have a multilingual app and you want to make a separate account for every language - this is the situation when the login namespace can help.

login

login() logs the user in. Login() writes login state to PHP session. If permanent login is not set, login is valid until the user closes the browser or the PHP session expires.

Parameters

Permanent Login

setPermanentCookieName

setPermanentCookieName() sets the name of cookie where the permanent login information is stored at the users' computer. The default value is PC.

setPermanentLoginStorage

Note: To start using the permanent login, it's required to set permanent login storage.

setPermanentLoginStorage() sets the factory of permanent login storage and the time validity of permanent login data.

Parameters

Permanent login saves the permanent login data to the user's computer (cookie) and to the server. Storage is here to solve the server part and to make storing data flexible. Out of the box, the Login class comes with the FileStorage, it saves login information to the disk at the server. However, you can write your own storage.

Example of using the file storage:

Write Custom Storage

You can write your custom storage. Only thing you have to do is to implement StorageInterface.

Login Check

isLogged

isLogged() checks if user is logged in.

Logout

logout

logout() logs the user out.

setAutoLogoutTime

setAutoLogoutTime() sets the time in seconds to auto logout the user on inactivity between two requests. The default value is 0 - no automatic logout. Automatic logout is ignored when user is logged permanently.

Warning: Update the time of last user activity with every http request to make auto logout feature working properly.

updateAutoLogoutTs

updateAutoLogoutTs() updates time of last users' activity stored in the session.

getLogoutReason

getLogoutReason() returns logout reason.

Resources


All versions of login with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
webiik/token Version ^1
webiik/session Version ^1
webiik/cookie Version ^1
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 webiik/login contains the following files

Loading the files please wait ....