Download the PHP package asinfotrack/yii2-toolbox without Composer

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

yii2-toolbox

Yii2-Toolbox is a collection of useful helpers, widgets etc. extending the basic functionality of Yii2

Installation

The preferred way to install this extension is through composer.

"asinfotrack/yii2-toolbox": "~1.0.1"

Changelog

Learn about the latest improvements.

Contents

Components

MemoryUrlManager

This URL manager implements memory-functionality for urls. This enables for example to keep the state (sorting, filtering and paging) of a GridView across requests. The default configuration saves this data in the session variable and appends the params to the links.

The usage is very easy. Simply set this class as the url manager in your Yii-config and specify the additional attributes according to the example below and the documentation within the class.

Example of a config:

Each entry in the memoryMap can be a string representing a regex to match params to save. You can optionally use the regex-rule as key and a callback returning a boolean as the value. In this case the rule is only active when the callback returns true

ImageResponseFormatter

Response formatter for images. You need to add the formatter to the config as follows:

After that you can use it to output images via actions easily:

PdfResponseFormatter

Additional response formatter for handling PDF-requests. You need to add the formatter to the config like this:

After that you can use it to output PDFs via actions easily:

User

Extends \yii\web\User with the ability to check multiple rights at once (canAll, canAny, canOne).

ProgressiveImageGd and ProgressiveImageImagick

Both classes extend the image drivers of yurkinx/yii2-image to enable progressive encoding of jpg-files. To use it, simply call the factory-class asinfotrack\yii2\toolbox\helpers\ImageFactory::createInstance($path, $driver=self::DRIVER_GD) to get an instance and proceed working. Make sure either GD- or Imagick-Library is enabled.

Widgets

Button

The button-widget extends the one provided by yii2. It adds functionality to specify an icon. The Icons depend on font-awesome and hence require the yii2-extension rmrevin/yii2-fontawesome

AjaxToggleButton

An ajax button to toggle boolean values (1, 0). Together with AjaxAttributeAction this makes it very easy to toggle boolean flags. The widget-attribute booleanAttribute is used only for reading out values. Therefore you have to respecify this in the controller-action (step 2 below).

Example of usage together with AjaxAttributeAction:

Now attach an instance of AjaxAttributeAction in the corresponding controller of the model specified:

FlashMessages

This widget renders flash messages automatically. The messages can be automatically retrieved from yiis session-component or be provided via a custom callable.

Example of simple usage rendering yiis session flashes each in its own alert-container:

Advanced usage with custom callback to provide flash messages:

Panel

Renders a Bootstrap-Panel. You can either set its body via attribute or between begin() and end(). The attributes heading, body and footer support setting via string or via Closure returning a string. Exemplary usage:

SimpleNav

Simple navigation widget which has the same functionality as the regular nav-widget (\yii\bootstrap\Nav) but renders a plain and simple HTML-list which can then be further styled with css. No dropdown...just clean code!

StatsBoxes

Renders a variable amount of stats boxes with title, icon and a value. This is ideal for a detail view of a model.

TabsWithMemory

Tabs widget which remembers its active tab via javascript sessionStorage

Video

Wrapper-widget to simplify work with video tag

Grid column-types

The column types provided extend the functionality of the basic \yii\grid\DataColumn. The class is AdvancedDataColumn. It has functionality to align text, set the column with with either absolute or percent values etc.

Additionally there are three further column types:

Helpers

ColorHelper

Makes working with HEX- or RGB-colors easy! It can translate between the two formats, lighten or darken colors as well as creating steps between two colors. You can also use it to get a colors luminance or validate color-values. Short HEX-Formats are supported automatically.

ComponentConfig

Helper class to work with component-configurations

DropdownHelper

Makes working with drop downs easier. Especially if you need additional options per item

Geocoding

Helper class to work with google geocoding api's. It enables you to do one-call forward and reverse geocoding

Html

Extends the Html-helper of Yii2 with additional functionality like disguising email-addresses, bootstrap-elements, text-highlighting, etc.

ImageFactory

Factory-class to create instances of image drivers. To use it, simply call createInstance($path, $driver=self::DRIVER_GD) to get an instance and proceed working. Make sure either GD- or Imagick-Library is enabled.

MigrationHelper

Helper for common tasks concerning migrations (eg checking if a migration was applied, etc).

PrimaryKey

Functionalities to work with PKs of \yii\db\ActiveRecord and to convert them into JSON

QueryHelper

Recurring tasks while working wth ActiveQueries

ServerConfig

Provides functionality to fetch the most important server vars and to check if certain extensions are loaded

Timestamp

This helper is responsible for common tasks associated with UNIX-Timestamps. It also has a function to parse dates into timestamps (extracted functionality of the yii date validator)

Url

This helper extends the basic functionality of the Yii2-Url-helper. It provides functionality to retrieve information about the currently requested url, such as TLD, subdomains, etc.

Behaviors

ArchiveBehavior / ArchiveQueryBehavior

Enables a model to be archived or not. This is similiar to a soft-delete but with the idea of not deleting a record but archive it instead. The behavior is fully configurable and there is also a behavior for the corresponding query-class.

StateBehavior / StateQueryBehavior

Documentation coming soon!

Actions

AjaxAttributeAction

A generic and very convenient action to modify model-values via ajax-calls. See the class comments for how to configure this action.

There is also an example further up in the description of AjaxToggleButton.

DebugAction

The debug action shows you relevant information about the current configuration of the hosting. It also shows you all kind of configs right in the browser.

To enable it, all you have to to is add it to the actions()-method of a controller of your choice and provide a view to render its contents into.

Within that view you simply output the contents with this statement:

Validators

SelectiveRequiredValidator

Validator to require a certain amount of fields out of a list to be required. To use the validator simply specify the selection of attributes and set how many of it are required:

Console

ConsoleTarget

Log target which outputs to the console

Migration

Has additional functionality simplifying repeating tasks while creating migrations.

Exceptions

ExpiredHttpException

Throws code 410 marking a link as expired. This is helpful if for example a meeting is over or a record was archived.

Gii-Generators

The provided Gii-Generators fix general formatting issues in the default code-templates (eg spaces instead of tabs, etc.).

Installation

To enable the provided Generators you need to update the gii config as follows:

Models

Timestamp- and BlameableBehaviour are added by default. Also there is an optional font-awesome icon-name assignable per model. This can later be retrieved via Model::iconName(). Also there is a query-class generated by default.

CRUDs

The CRUD-templates also fix common issues and are optimized for the model


All versions of yii2-toolbox with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.0
yiisoft/yii2 Version ~2.0.6
yiisoft/yii2-bootstrap Version ~2.0.0
yiisoft/yii2-gii Version ~2.0.0
yurkinx/yii2-image Version ~1.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 asinfotrack/yii2-toolbox contains the following files

Loading the files please wait ....