propel-map
[ class tree: propel-map ] [ index: propel-map ] [ all elements ]

Element index for package propel-map

[ a ] [ c ] [ d ] [ g ] [ h ] [ i ] [ m ] [ r ] [ s ] [ t ] [ v ] [ _ ]

_

__construct
in file ValidatorMap.php, method ValidatorMap::__construct()
__construct
in file TableMap.php, method TableMap::__construct()
    Construct a new TableMap.
__construct
in file DatabaseMap.php, method DatabaseMap::__construct()
    Constructor.
__construct
in file ColumnMap.php, method ColumnMap::__construct()
    Constructor.
top

a

addColumn
in file TableMap.php, method TableMap::addColumn()
    Add a column to the table.
addConfiguredColumn
in file TableMap.php, method TableMap::addConfiguredColumn()
    Add a pre-created column to this table. It will replace any existing column.
addForeignKey
in file TableMap.php, method TableMap::addForeignKey()
    Add a foreign key column to the table.
addForeignPrimaryKey
in file TableMap.php, method TableMap::addForeignPrimaryKey()
    Add a foreign primary key column to the table.
addPrimaryKey
in file TableMap.php, method TableMap::addPrimaryKey()
    Add a primary key column to this Table.
addTable
in file DatabaseMap.php, method DatabaseMap::addTable()
    Add a new table to the database by name.
addTableBuilder
in file DatabaseMap.php, method DatabaseMap::addTableBuilder()
    Add a new table builder (MapBuilder) to the database by name.
addValidator
in file TableMap.php, method TableMap::addValidator()
    Add a validator to a table's column
addValidator
in file ColumnMap.php, method ColumnMap::addValidator()
top

c

ColumnMap
in file ColumnMap.php, class ColumnMap
    ColumnMap is used to model a column of a table in a database.
containsColumn
in file TableMap.php, method TableMap::containsColumn()
    Does this table contain the specified column?
containsTable
in file DatabaseMap.php, method DatabaseMap::containsTable()
    Does this database contain this specific table?
ColumnMap.php
procedural page ColumnMap.php
top

d

DatabaseMap
in file DatabaseMap.php, class DatabaseMap
    DatabaseMap is used to model a database.
doBuild
in file MapBuilder.php, method MapBuilder::doBuild()
    Build up the database mapping.
DatabaseMap.php
procedural page DatabaseMap.php
top

g

getClass
in file ValidatorMap.php, method ValidatorMap::getClass()
getClassname
in file TableMap.php, method TableMap::getClassname()
    Get the Classname of the Propel-Classes belonging to this table.
getColumn
in file TableMap.php, method TableMap::getColumn()
    Get a ColumnMap for the named table.
getColumn
in file ValidatorMap.php, method ValidatorMap::getColumn()
getColumnName
in file ValidatorMap.php, method ValidatorMap::getColumnName()
getColumnName
in file ColumnMap.php, method ColumnMap::getColumnName()
    Gets column name (DEPRECATED).
getColumns
in file TableMap.php, method TableMap::getColumns()
    Get a ColumnMap[] of the columns in this table.
getDatabaseMap
in file MapBuilder.php, method MapBuilder::getDatabaseMap()
    Gets the database mapping this map builder built.
getDatabaseMap
in file TableMap.php, method TableMap::getDatabaseMap()
    Get the DatabaseMap containing this TableMap.
getDefaultValue
in file ColumnMap.php, method ColumnMap::getDefaultValue()
    Gets the default value for this column.
getFullyQualifiedName
in file ColumnMap.php, method ColumnMap::getFullyQualifiedName()
    Get the table name + column name.
getMessage
in file ValidatorMap.php, method ValidatorMap::getMessage()
getName
in file TableMap.php, method TableMap::getName()
    Get the name of the Table.
getName
in file DatabaseMap.php, method DatabaseMap::getName()
    Get the name of this database.
getName
in file ValidatorMap.php, method ValidatorMap::getName()
getName
in file ColumnMap.php, method ColumnMap::getName()
    Get the name of a column.
getPdoType
in file ColumnMap.php, method ColumnMap::getPdoType()
    Get the PDO type of this column.
getPhpName
in file TableMap.php, method TableMap::getPhpName()
    Get the PHP name of the Table.
getPhpName
in file ColumnMap.php, method ColumnMap::getPhpName()
    Get the name of a column.
getPrefix
in file TableMap.php, method TableMap::getPrefix()
    Get table prefix name.
getPrimaryKeyColumns
in file TableMap.php, method TableMap::getPrimaryKeyColumns()
    Returns array of ColumnMap objects that make up the primary key for this table.
getPrimaryKeyMethodInfo
in file TableMap.php, method TableMap::getPrimaryKeyMethodInfo()
    Get the information used to generate a primary key
getRelatedColumnName
in file ColumnMap.php, method ColumnMap::getRelatedColumnName()
    Get the column name that this column is related to.
getRelatedName
in file ColumnMap.php, method ColumnMap::getRelatedName()
    Get the table.column that this column is related to.
getRelatedTableName
in file ColumnMap.php, method ColumnMap::getRelatedTableName()
    Get the table name that this column is related to.
getSize
in file ColumnMap.php, method ColumnMap::getSize()
    Get the size of this column.
getTable
in file ColumnMap.php, method ColumnMap::getTable()
    Get the table map this column belongs to.
getTable
in file DatabaseMap.php, method DatabaseMap::getTable()
    Get a TableMap for the table by name.
getTableName
in file ColumnMap.php, method ColumnMap::getTableName()
    Get the name of the table this column is in.
getTables
in file DatabaseMap.php, method DatabaseMap::getTables()
    Get a TableMap[] of all of the tables in the database.
getType
in file ColumnMap.php, method ColumnMap::getType()
    Get the Propel type of this column.
getValidators
in file ColumnMap.php, method ColumnMap::getValidators()
getValue
in file ValidatorMap.php, method ValidatorMap::getValue()
top

h

hasValidators
in file ColumnMap.php, method ColumnMap::hasValidators()
top

i

ignoreCase
in file ColumnMap.php, method ColumnMap::ignoreCase()
    Performs DB-specific ignore case, but only if the column type necessitates it.
isBuilt
in file MapBuilder.php, method MapBuilder::isBuilt()
    Tells us if the database mapping is built so that we can avoid re-building it repeatedly.
isEpochTemporal
in file ColumnMap.php, method ColumnMap::isEpochTemporal()
    Whether this is a DATE/TIME/TIMESTAMP column that is post-epoch (1970).
isForeignKey
in file ColumnMap.php, method ColumnMap::isForeignKey()
    Is this column a foreign key?
isLob
in file ColumnMap.php, method ColumnMap::isLob()
    Whether this is a BLOB, LONGVARBINARY, or VARBINARY.
isNotNull
in file ColumnMap.php, method ColumnMap::isNotNull()
    Is null value allowed ?
isNumeric
in file ColumnMap.php, method ColumnMap::isNumeric()
    Whether this column is numeric (int, decimal, bigint etc).
isPrimaryKey
in file ColumnMap.php, method ColumnMap::isPrimaryKey()
    Is this column a primary key?
isTemporal
in file ColumnMap.php, method ColumnMap::isTemporal()
    Whether this is a DATE/TIME/TIMESTAMP column.
isText
in file ColumnMap.php, method ColumnMap::isText()
    Whether this column is a text column (varchar, char, longvarchar).
isUseIdGenerator
in file TableMap.php, method TableMap::isUseIdGenerator()
    Whether to use Id generator for primary key.
top

m

MapBuilder.php
procedural page MapBuilder.php
MapBuilder
in file MapBuilder.php, class MapBuilder
    MapBuilders are classes that construct a model of a database at runtime.
top

r

removeUnderScores
in file TableMap.php, method TableMap::removeUnderScores()
    Removes the PREFIX, removes the underscores and makes first letter caps.
top

s

setClass
in file ValidatorMap.php, method ValidatorMap::setClass()
setClassname
in file TableMap.php, method TableMap::setClassname()
    Set the Classname of the Table. Could be useful for calling Peer and Object methods dynamically.
setForeignKey
in file ColumnMap.php, method ColumnMap::setForeignKey()
    Set the foreign key for this column.
setMessage
in file ValidatorMap.php, method ValidatorMap::setMessage()
setName
in file ValidatorMap.php, method ValidatorMap::setName()
setNotNull
in file ColumnMap.php, method ColumnMap::setNotNull()
    Set if this column may be null.
setPhpName
in file TableMap.php, method TableMap::setPhpName()
    Set the PHP name of the Table.
setPhpName
in file ColumnMap.php, method ColumnMap::setPhpName()
    Set the php anme of this column.
setPrefix
in file TableMap.php, method TableMap::setPrefix()
    Set table prefix name.
setPrimaryKey
in file ColumnMap.php, method ColumnMap::setPrimaryKey()
    Set if this column is a primary key or not.
setPrimaryKeyMethodInfo
in file TableMap.php, method TableMap::setPrimaryKeyMethodInfo()
    Sets the pk information needed to generate a key
setSize
in file ColumnMap.php, method ColumnMap::setSize()
    Set the size of this column.
setType
in file ColumnMap.php, method ColumnMap::setType()
    Set the Propel type of this column.
setUseIdGenerator
in file TableMap.php, method TableMap::setUseIdGenerator()
    Set whether or not to use Id generator for primary key.
setValue
in file ValidatorMap.php, method ValidatorMap::setValue()
top

t

$tables
in file DatabaseMap.php, variable DatabaseMap::$tables
    Name of the tables in the database.
TableMap.php
procedural page TableMap.php
TableMap
in file TableMap.php, class TableMap
    TableMap is used to model a table in a database.
top

v

ValidatorMap.php
procedural page ValidatorMap.php
ValidatorMap
in file ValidatorMap.php, class ValidatorMap
    ValidatorMap is used to model a column validator.
top

Documentation generated on Thu, 22 Nov 2007 03:33:18 +0000 by phpDocumentor 1.4.0