-
(string) generate ($params)
Browse code
Generates classes and templates in cache.
returns The data to put in configuration cache
-
(integer) getColumnNameMaxLength ()
Browse code
Returns the maximum length for a column name.
returns The length of the longer column name
-
(array) getForeignKeyNames ()
Browse code
Returns PHP names for all foreign keys of the current table.
This method does not returns foreign keys that are also primary keys.
returns An array composed of: * The foreign table PHP name * The foreign key PHP name * A Boolean to indicate whether the column is required or not * A Boolean to indicate whether the column is a many to many relationship or not
-
(TableMap) getForeignTable ($column)
Browse code
| $column |
A ColumnMap object |
Returns the foreign table associated with a column.
returns A TableMap object
-
(string) getI18nModel ()
Browse code
Returns the i18n model name for the current table.
returns The model class name
-
(array) getManyToManyTables ()
Browse code
Returns an array of tables that represents a many to many relationship.
A table is considered to be a m2m table if it has 2 foreign keys that are also primary keys.
returns An array of tables.
-
(ColumnMap) getPrimaryKey ()
Browse code
Returns the first primary key column of the current table.
returns A ColumnMap object
-
(array) getPrimaryKeyColumNames ()
Browse code
Returns an array of primary key column names.
returns An array of primary key column names
-
(string) getPrimaryKeyColumNamesAsString ()
Browse code
Returns a PHP string representation for the array of all primary key column names.
returns A PHP string representation for the array of all primary key column names
-
getUniqueColumnNames ()
Browse code
-
(string) getValidatorClassForColumn ($column)
Browse code
| $column |
A ColumnMap object |
Returns a sfValidator class name for a given column.
returns The name of a subclass of sfValidator
-
(string) getValidatorOptionsForColumn ($column)
Browse code
| $column |
A ColumnMap object |
Returns a PHP string representing options to pass to a validator for a given column.
returns The options to pass to the validator as a PHP string
-
(string) getWidgetClassForColumn ($column)
Browse code
| $column |
A ColumnMap object |
Returns a sfWidgetForm class name for a given column.
returns The name of a subclass of sfWidgetForm
-
(string) getWidgetOptionsForColumn ($column)
Browse code
| $column |
A ColumnMap object |
Returns a PHP string representing options to pass to a widget for a given column.
returns The options to pass to the widget as a PHP string
-
initialize ($generatorManager)
Browse code
| $generatorManager |
A sfGeneratorManager instance |
Initializes the current sfGenerator instance.
-
Returns true if the current table is internationalized.
returns true if the current table is internationalized, false otherwise
-
Loads all Propel builders.
-