![]() |
rapila
|
Public Member Functions | |
__construct ($dbName=null, $modelName=null, $modelAlias=null) | |
findPk ($key, $con=null) | |
findOneById ($key, $con=null) | |
findPks ($keys, $con=null) | |
filterByPrimaryKey ($key) | |
filterByPrimaryKeys ($keys) | |
filterById ($id=null, $comparison=null) | |
filterByPathPrefix ($pathPrefix=null, $comparison=null) | |
filterByIsActive ($isActive=null, $comparison=null) | |
filterBySort ($sort=null, $comparison=null) | |
filterByCreatedAt ($createdAt=null, $comparison=null) | |
filterByUpdatedAt ($updatedAt=null, $comparison=null) | |
filterByCreatedBy ($createdBy=null, $comparison=null) | |
filterByUpdatedBy ($updatedBy=null, $comparison=null) | |
filterByUserRelatedByCreatedBy ($user, $comparison=null) | |
joinUserRelatedByCreatedBy ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
useUserRelatedByCreatedByQuery ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
filterByUserRelatedByUpdatedBy ($user, $comparison=null) | |
joinUserRelatedByUpdatedBy ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
useUserRelatedByUpdatedByQuery ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
filterByPageString ($pageString, $comparison=null) | |
joinPageString ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
usePageStringQuery ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
filterByLanguageObject ($languageObject, $comparison=null) | |
joinLanguageObject ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
useLanguageObjectQuery ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
filterByLanguageObjectHistory ($languageObjectHistory, $comparison=null) | |
joinLanguageObjectHistory ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
useLanguageObjectHistoryQuery ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
filterByTranslation ($translation, $comparison=null) | |
joinTranslation ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
useTranslationQuery ($relationAlias=null, $joinType=Criteria::INNER_JOIN) | |
filterByUserRelatedByLanguageId ($user, $comparison=null) | |
joinUserRelatedByLanguageId ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
useUserRelatedByLanguageIdQuery ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
filterByDocument ($document, $comparison=null) | |
joinDocument ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
useDocumentQuery ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
filterByLink ($link, $comparison=null) | |
joinLink ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
useLinkQuery ($relationAlias=null, $joinType=Criteria::LEFT_JOIN) | |
prune ($language=null) | |
recentlyUpdated ($nbDays=7) | |
lastUpdatedFirst () | |
firstUpdatedFirst () | |
recentlyCreated ($nbDays=7) | |
lastCreatedFirst () | |
firstCreatedFirst () | |
findMostRecentUpdate ($bAsTimestamp=false) | |
filterByPKArray ($pkArray) | |
filterByPKString ($pkString) | |
Static Public Member Functions | |
static | create ($modelAlias=null, $criteria=null) |
Protected Member Functions | |
findPkSimple ($key, $con) | |
findPkComplex ($key, $con) | |
BaseLanguageQuery::__construct | ( | $dbName = null , |
|
$modelName = null , |
|||
$modelAlias = null |
|||
) |
Initializes internal state of BaseLanguageQuery object.
string | $dbName | The dabase name |
string | $modelName | The phpName of a model, e.g. 'Book' |
string | $modelAlias | The alias for the model in this query, e.g. 'b' |
|
static |
Returns a new LanguageQuery object.
string | $modelAlias | The alias of a model in the query |
LanguageQuery | Criteria | $criteria | Optional Criteria to build the query from |
BaseLanguageQuery::filterByCreatedAt | ( | $createdAt = null , |
|
$comparison = null |
|||
) |
Filter the query on the created_at column
Example usage: $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14' $query->filterByCreatedAt('now'); // WHERE created_at = '2011-03-14' $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at < '2011-03-13'
mixed | $createdAt | The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByCreatedBy | ( | $createdBy = null , |
|
$comparison = null |
|||
) |
Filter the query on the created_by column
Example usage: $query->filterByCreatedBy(1234); // WHERE created_by = 1234 $query->filterByCreatedBy(array(12, 34)); // WHERE created_by IN (12, 34) $query->filterByCreatedBy(array('min' => 12)); // WHERE created_by >= 12 $query->filterByCreatedBy(array('max' => 12)); // WHERE created_by <= 12
mixed | $createdBy | The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByDocument | ( | $document, | |
$comparison = null |
|||
) |
Filter the query by a related Document object
Document | PropelObjectCollection | $document | the related object to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterById | ( | $id = null , |
|
$comparison = null |
|||
) |
Filter the query on the id column
Example usage: $query->filterById('fooValue'); // WHERE id = 'fooValue' $query->filterById('fooValue'); // WHERE id LIKE 'fooValue'
string | $id | The value to use as filter. Accepts wildcards (* and % trigger a LIKE) |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByIsActive | ( | $isActive = null , |
|
$comparison = null |
|||
) |
Filter the query on the is_active column
Example usage: $query->filterByIsActive(true); // WHERE is_active = true $query->filterByIsActive('yes'); // WHERE is_active = true
boolean | string | $isActive | The value to use as filter. Non-boolean arguments are converted using the following rules:
|
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByLanguageObject | ( | $languageObject, | |
$comparison = null |
|||
) |
Filter the query by a related LanguageObject object
LanguageObject | PropelObjectCollection | $languageObject | the related object to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterByLanguageObjectHistory | ( | $languageObjectHistory, | |
$comparison = null |
|||
) |
Filter the query by a related LanguageObjectHistory object
LanguageObjectHistory | PropelObjectCollection | $languageObjectHistory | the related object to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterByLink | ( | $link, | |
$comparison = null |
|||
) |
Filter the query by a related Link object
Link | PropelObjectCollection | $link | the related object to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterByPageString | ( | $pageString, | |
$comparison = null |
|||
) |
Filter the query by a related PageString object
PageString | PropelObjectCollection | $pageString | the related object to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterByPathPrefix | ( | $pathPrefix = null , |
|
$comparison = null |
|||
) |
Filter the query on the path_prefix column
Example usage: $query->filterByPathPrefix('fooValue'); // WHERE path_prefix = 'fooValue' $query->filterByPathPrefix('fooValue'); // WHERE path_prefix LIKE 'fooValue'
string | $pathPrefix | The value to use as filter. Accepts wildcards (* and % trigger a LIKE) |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByPrimaryKey | ( | $key | ) |
Filter the query by primary key
mixed | $key | Primary key to use for the query |
BaseLanguageQuery::filterByPrimaryKeys | ( | $keys | ) |
Filter the query by a list of primary keys
array | $keys | The list of primary key to use for the query |
BaseLanguageQuery::filterBySort | ( | $sort = null , |
|
$comparison = null |
|||
) |
Filter the query on the sort column
Example usage: $query->filterBySort(1234); // WHERE sort = 1234 $query->filterBySort(array(12, 34)); // WHERE sort IN (12, 34) $query->filterBySort(array('min' => 12)); // WHERE sort >= 12 $query->filterBySort(array('max' => 12)); // WHERE sort <= 12
mixed | $sort | The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByTranslation | ( | $translation, | |
$comparison = null |
|||
) |
Filter the query by a related Translation object
Translation | PropelObjectCollection | $translation | the related object to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterByUpdatedAt | ( | $updatedAt = null , |
|
$comparison = null |
|||
) |
Filter the query on the updated_at column
Example usage: $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14' $query->filterByUpdatedAt('now'); // WHERE updated_at = '2011-03-14' $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at < '2011-03-13'
mixed | $updatedAt | The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByUpdatedBy | ( | $updatedBy = null , |
|
$comparison = null |
|||
) |
Filter the query on the updated_by column
Example usage: $query->filterByUpdatedBy(1234); // WHERE updated_by = 1234 $query->filterByUpdatedBy(array(12, 34)); // WHERE updated_by IN (12, 34) $query->filterByUpdatedBy(array('min' => 12)); // WHERE updated_by >= 12 $query->filterByUpdatedBy(array('max' => 12)); // WHERE updated_by <= 12
mixed | $updatedBy | The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
BaseLanguageQuery::filterByUserRelatedByCreatedBy | ( | $user, | |
$comparison = null |
|||
) |
Filter the query by a related User object
User | PropelObjectCollection | $user | The related object(s) to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterByUserRelatedByLanguageId | ( | $user, | |
$comparison = null |
|||
) |
Filter the query by a related User object
User | PropelObjectCollection | $user | the related object to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::filterByUserRelatedByUpdatedBy | ( | $user, | |
$comparison = null |
|||
) |
Filter the query by a related User object
User | PropelObjectCollection | $user | The related object(s) to use as filter |
string | $comparison | Operator to use for the column comparison, defaults to Criteria::EQUAL |
PropelException | - if the provided filter is invalid. |
BaseLanguageQuery::findOneById | ( | $key, | |
$con = null |
|||
) |
Alias of findPk to use instance pooling
mixed | $key | Primary key to use for the query |
PropelPDO | $con | A connection object |
PropelException |
BaseLanguageQuery::findPk | ( | $key, | |
$con = null |
|||
) |
Find object by primary key. Propel uses the instance pool to skip the database if the object exists. Go fast if the query is untouched.
$obj = $c->findPk(12, $con);
mixed | $key | Primary key to use for the query |
PropelPDO | $con | an optional connection object |
|
protected |
Find object by primary key.
mixed | $key | Primary key to use for the query |
PropelPDO | $con | A connection object |
BaseLanguageQuery::findPks | ( | $keys, | |
$con = null |
|||
) |
Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);
array | $keys | Primary keys to use for the query |
PropelPDO | $con | an optional connection object |
|
protected |
Find object by primary key using raw SQL to go fast. Bypass doSelect() and the object formatter by using generated code.
mixed | $key | Primary key to use for the query |
PropelPDO | $con | A connection object |
PropelException |
BaseLanguageQuery::firstCreatedFirst | ( | ) |
Order by create date asc
BaseLanguageQuery::firstUpdatedFirst | ( | ) |
Order by update date asc
BaseLanguageQuery::joinDocument | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Adds a JOIN clause to the query using the Document relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinLanguageObject | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Adds a JOIN clause to the query using the LanguageObject relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinLanguageObjectHistory | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Adds a JOIN clause to the query using the LanguageObjectHistory relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinLink | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Adds a JOIN clause to the query using the Link relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinPageString | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Adds a JOIN clause to the query using the PageString relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinTranslation | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Adds a JOIN clause to the query using the Translation relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinUserRelatedByCreatedBy | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Adds a JOIN clause to the query using the UserRelatedByCreatedBy relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinUserRelatedByLanguageId | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Adds a JOIN clause to the query using the UserRelatedByLanguageId relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::joinUserRelatedByUpdatedBy | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Adds a JOIN clause to the query using the UserRelatedByUpdatedBy relation
string | $relationAlias | optional alias for the relation |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::lastCreatedFirst | ( | ) |
Order by create date desc
BaseLanguageQuery::lastUpdatedFirst | ( | ) |
Order by update date desc
BaseLanguageQuery::prune | ( | $language = null | ) |
Exclude object from result
Language | $language | Object to remove from the list of results |
BaseLanguageQuery::recentlyCreated | ( | $nbDays = 7 | ) |
Filter by the latest created
int | $nbDays | Maximum age of in days |
BaseLanguageQuery::recentlyUpdated | ( | $nbDays = 7 | ) |
Filter by the latest updated
int | $nbDays | Maximum age of the latest update in days |
BaseLanguageQuery::useDocumentQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Use the Document relation Document object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::useLanguageObjectHistoryQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Use the LanguageObjectHistory relation LanguageObjectHistory object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::useLanguageObjectQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Use the LanguageObject relation LanguageObject object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::useLinkQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Use the Link relation Link object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::usePageStringQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Use the PageString relation PageString object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::useTranslationQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::INNER_JOIN |
|||
) |
Use the Translation relation Translation object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::useUserRelatedByCreatedByQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Use the UserRelatedByCreatedBy relation User object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::useUserRelatedByLanguageIdQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Use the UserRelatedByLanguageId relation User object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |
BaseLanguageQuery::useUserRelatedByUpdatedByQuery | ( | $relationAlias = null , |
|
$joinType = Criteria::LEFT_JOIN |
|||
) |
Use the UserRelatedByUpdatedBy relation User object
string | $relationAlias | optional alias for the relation, to be used as main alias in the secondary query |
string | $joinType | Accepted values are null, 'left join', 'right join', 'inner join' |