sfValidatorPropelUnique validates that the uniqueness of a column.
Method Summary
-
configure()
Configures the current validator.
-
doClean()
@see sfValidatorBase
-
array
getPrimaryKeys()
Returns the primary keys for the model.
-
Boolean
isUpdate($object, $values)
Returns whether the object is being updated.
-
__construct($options, $messages)
Constructor.
asString , clean , configure , doClean , getBytes , getFields , getPostValidator , getPreValidator , offsetExists , offsetGet , offsetSet , offsetUnset , postClean , preClean , setPostValidator , setPreValidator , __clone , __construct
addMessage , addOption , addRequiredOption , asString , clean , configure , doClean , getCharset , getDefaultMessages , getDefaultOptions , getEmptyValue , getErrorCodes , getMessage , getMessages , getMessagesWithoutDefaults , getOption , getOptions , getOptionsWithoutDefaults , getRequiredOptions , hasOption , isEmpty , setCharset , setDefaultMessage , setDefaultMessages , setDefaultOptions , setMessage , setMessages , setOption , setOptions , __construct
Method Details
-
Configures the current validator.
Available options: * model: The model class (required)
* column: The unique column name in Propel field name format (required)
If the uniqueness is for several columns, you can pass an array of field names
* field Field name used by the form, other than the column name
* primary_key: The primary key column name in Propel field name format (optional, will be introspected if not provided)
You can also pass an array if the table has several primary keys
* connection: The Propel connection to use (null by default)
* throw_global_error: Whether to throw a global error (false by default) or an error tied to the first field related to the column option array
-
@see sfValidatorBase
-
(array) getPrimaryKeys ()
Browse code
Returns the primary keys for the model.
returns An array of primary keys
-
(Boolean) isUpdate ($object, $values)
Browse code
| $object |
A Propel object |
| $values |
An array of values |
Returns whether the object is being updated.
returns true if the object is being updated, false otherwise
-
__construct ($options, $messages)
Browse code
| $options |
An array of options |
| $messages |
An array of error messages |
Constructor.
|