2017 © Pedro Peláez
 

library model-specification

Controls and extensions for Nette/Forms

image

minetro/model-specification

Controls and extensions for Nette/Forms

  • Thursday, July 14, 2016
  • by f3l1x
  • Repository
  • 1 Watchers
  • 1 Stars
  • 3,967 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

, (*1)

, (*2)

Website 🚀 contributte.org | Contact 👨🏻‍💻 f3l1x.io | Twitter 🐦 @contributte , (*3)

Disclaimer

:warning: This project is no longer being maintained. Please use contributte/utils.
Composer minetro/model-specification
Version
PHP
License

Usage

use Minetro\Model\Specification\Criteria\Criteria;
use Minetro\Model\Specification\Pagination\Paginator;
use Minetro\Model\Specification\Sorter\Sorter;
use Minetro\Model\Specification\Specification;

$spec = new Specification();

$spec->setCriteria(Criteria::factory(['foo' => 'bar']));
$spec->setSorter(Sorter::factory(['foo' => 'ASC']));
$spec->setPaginator(Paginator::factory(15));
$spec = Specification::factory(
    Criteria::factory(['foo' => 'bar']),
    Sorter::factory(['foo' => 'ASC']),
    Paginator::factory(15)
);
$this->facade->match($spec);

Development

This package was maintain by these authors., (*4)

, (*5)


Consider to support contributte development team. Also thank you for being used this package., (*6)

The Versions

14/07 2016

dev-master

9999999-dev https://github.com/minetro/model-specification

Controls and extensions for Nette/Forms

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires