leandrorodrigues/auto-filter

There is no license information available for the latest version (dev-master) of this package.

AutoFilter plugin for CakePHP

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:cakephp-plugin

pkg:composer/leandrorodrigues/auto-filter

dev-master 2015-09-12 12:44 UTC

This package is not auto-updated.

Last update: 2025-10-26 00:22:24 UTC


README

Installation

You can install this plugin into your CakePHP application using composer

Exemplo de uso

class AdministradoresController extends AdminController
{

    /**
     * Index method
     *
     * @return void
     */
    public function index()
    {

        $query = $this->AutoFilter->generateQuery();
        $administradores = $this->paginate($query);

        $this->set('administradores', $administradores);
        $this->set('_serialize', ['administradores']);
    }
}