Download the PHP package hananils/kirby-type-methods without Composer

On this page you can find all versions of the php package hananils/kirby-type-methods. 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 kirby-type-methods

Type Methods is a plugin for Kirby 3 helping to identify the type of an object, either page, user or file, in order to simplify logic in snippets that – for instance – handle content from both $page and $user objects.

Examples

Think of site where you want to list members. Member information is either stored with the Kirby users (for admins) or on pages (for regular members). Given you have an array of all members, containing either user or page objects, type methods will help you to identify the source:

There is also a shortcut to check the given template or role respectively:

Using isType() is both shorter than checking intendedTemplate or role and also doesn't require you to check first which object you are dealing with (page or user).

Installation

Download

Download and copy this repository to /site/plugins/type-methods.

Git submodule

Composer

Methods

These methods work on page, user or file objects:

isPage()

Checks if the given object is a page.

Returns either true or false.

isUser()

Checks if the given object is a user.

Returns either true or false.

isFile()

Checks if the given object is a file.

Returns either true or false.

isType('template')

Checks if the object has the given template.

Returns either true or false.

License

This plugin is provided freely under the hana+nils · Büro für Gestaltung. We create visual designs for digital and analog media.


All versions of kirby-type-methods 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 hananils/kirby-type-methods contains the following files

Loading the files please wait ....