Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Kirby Foster: "Nice software. Small, lightweight, works well. I evaluated lots of software before deciding that your software worked the best for what I do. Both Maestro for MySQL and PHP Generator have saved me lots of time".
Rickey Steinke: "Folks, I wanted to drop a line and give you a fanatic thank you. I have a project due for my computer application course and without PHP Generator I never would have gotten it done with the professional results your product produced. My sincerest gratitude to each and every team member who brought this program to light".

More

Add your opinion

PHP Generator for MySQL online Help

Prev Return to chapter overview Next

OnPrepareFilterBuilder

This event allows you to setup initial condition for the Filter Builder tool.

 

Signature:

function OnPrepareFilterBuilder(FilterBuilder $filterBuilder,

               FixedKeysArray $columns)

 

Parameters:

$filterBuilder

An instance of the FilterBuilder class.

$columns

An associative array of columns available in the tool.

 

Example

This example shows how to setup initial value for Filter Builder (available live in the Feature Demo).

 

$rootGroup = new FilterGroup(FilterGroupOperator::OPERATOR_AND,

    array(

        new FilterCondition($columns['rating'], 

            FilterConditionOperator::IS_BETWEEN, array(5, 7)),

        new FilterCondition($columns['genre_id'],

            FilterConditionOperator::EQUALS, array(14), array('Fantasy'))

    )

);

$filterBuilder->setFilterComponent($rootGroup);

 



Prev Return to chapter overview Next