-
-
-
addForeignKeyCriteria ()
Browse code
-
-
-
(Criteria) buildCriteria ()
Browse code
Builds a Propel Criteria based on the passed values.
returns A Propel Criteria object
-
-
(Criteria) doBuildCriteria ($values)
Browse code
Builds a Propel Criteria with processed values.
Overload this method instead of {@link buildCriteria()} to avoid running
{@link processValues()} multiple times.
-
-
(Criteria) getCriteria ()
Browse code
Returns a Propel Criteria based on the current values form the form.
returns A Propel Criteria object
-
Returns the fields and their filter type.
returns An array of fields with their filter type
-
(string) getModelName ()
Browse code
Returns the current model name.
returns The model class name
-
(array) processValues ()
Browse code
Processes cleaned up values with user defined methods.
To process a value before it is used by the buildCriteria() method,
you need to define an convertXXXValue() method where XXX is the PHP name
of the column.
The method must return the processed value or false to remove the value
from the array of cleaned up values.
returns An array of cleaned up values processed by the user defined methods