Methods summary
public
|
#
__construct( string $dbName = 'thelia', string $modelName = 'Thelia\\Model\\OrderFeature', string $modelAlias = null )
Initializes internal state of BaseOrderFeatureQuery object.
Initializes internal state of BaseOrderFeatureQuery object.
Parameters
- $dbName
string $dbName The dabase name
- $modelName
string $modelName The phpName of a model, e.g. 'Book'
- $modelAlias
string $modelAlias The alias for the model in this query, e.g. 'b'
|
public static
Thelia\Model\OrderFeatureQuery
|
#
create( string $modelAlias = null, Thelia\Model\OrderFeatureQuery|Criteria $criteria = null )
Returns a new OrderFeatureQuery object.
Returns a new OrderFeatureQuery object.
Parameters
- $modelAlias
string $modelAlias The alias of a model in the query
- $criteria
Thelia\Model\OrderFeatureQuery|Criteria $criteria Optional Criteria to build the query from
Returns
|
public
Thelia\Model\OrderFeature|Thelia\Model\OrderFeature[]|mixed
|
#
findPk( mixed $key, PropelPDO $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.
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);
Parameters
- $key
mixed $key Primary key to use for the query
- $con
PropelPDO $con an optional connection object
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOneById( mixed $key, PropelPDO $con = null )
Alias of findPk to use instance pooling
Alias of findPk to use instance pooling
Parameters
- $key
mixed $key Primary key to use for the query
- $con
PropelPDO $con A connection object
Returns
Throws
PropelException
|
protected
Thelia\Model\OrderFeature
|
#
findPkSimple( mixed $key, PropelPDO $con )
Find object by primary key using raw SQL to go fast. Bypass doSelect() and
the object formatter by using generated code.
Find object by primary key using raw SQL to go fast. Bypass doSelect() and
the object formatter by using generated code.
Parameters
- $key
mixed $key Primary key to use for the query
- $con
PropelPDO $con A connection object
Returns
Throws
PropelException
|
protected
Thelia\Model\OrderFeature|Thelia\Model\OrderFeature[]|mixed
|
#
findPkComplex( mixed $key, PropelPDO $con )
Find object by primary key.
Find object by primary key.
Parameters
- $key
mixed $key Primary key to use for the query
- $con
PropelPDO $con A connection object
Returns
|
public
PropelObjectCollection|Thelia\Model\OrderFeature[]|mixed
|
#
findPks( array $keys, PropelPDO $con = null )
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Parameters
- $keys
array $keys Primary keys to use for the query
- $con
PropelPDO $con an optional connection object
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByPrimaryKey( mixed $key )
Filter the query by primary key
Filter the query by primary key
Parameters
- $key
mixed $key Primary key to use for the query
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByPrimaryKeys( array $keys )
Filter the query by a list of primary keys
Filter the query by a list of primary keys
Parameters
- $keys
array $keys The list of primary key to use for the query
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterById( mixed $id = null, string $comparison = null )
Filter the query on the id column
Filter the query on the id column
Example usage:
$query->filterById(1234);
$query->filterById(array(12, 34));
$query->filterById(array('min' => 12));
$query->filterById(array('max' => 12));
Parameters
- $id
mixed $id 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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByOrderProductId( mixed $orderProductId = null, string $comparison = null )
Filter the query on the order_product_id column
Filter the query on the order_product_id column
Example usage:
$query->filterByOrderProductId(1234);
$query->filterByOrderProductId(array(12, 34));
$query->filterByOrderProductId(array('min' => 12));
$query->filterByOrderProductId(array('max' => 12));
Parameters
- $orderProductId
mixed $orderProductId 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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
See
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByFeatureDesc( string $featureDesc = null, string $comparison = null )
Filter the query on the feature_desc column
Filter the query on the feature_desc column
Example usage:
$query->filterByFeatureDesc('fooValue');
$query->filterByFeatureDesc('%fooValue%');
Parameters
- $featureDesc
string $featureDesc The value to use as filter. Accepts wildcards (* and % trigger a
LIKE)
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByFeatureAvDesc( string $featureAvDesc = null, string $comparison = null )
Filter the query on the feature_av_desc column
Filter the query on the feature_av_desc column
Example usage:
$query->filterByFeatureAvDesc('fooValue');
$query->filterByFeatureAvDesc('%fooValue%');
Parameters
- $featureAvDesc
string $featureAvDesc The value to use as filter. Accepts wildcards (* and % trigger a
LIKE)
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByCreatedAt( mixed $createdAt = null, string $comparison = null )
Filter the query on the created_at column
Filter the query on the created_at column
Example usage:
$query->filterByCreatedAt('2011-03-14');
$query->filterByCreatedAt('now');
$query->filterByCreatedAt(array('max' => 'yesterday'));
Parameters
- $createdAt
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null )
Filter the query on the updated_at column
Filter the query on the updated_at column
Example usage:
$query->filterByUpdatedAt('2011-03-14');
$query->filterByUpdatedAt('now');
$query->filterByUpdatedAt(array('max' => 'yesterday'));
Parameters
- $updatedAt
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.
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
filterByOrderProduct( Thelia\Model\OrderProduct|PropelObjectCollection $orderProduct, string $comparison = null )
Filter the query by a related OrderProduct object
Filter the query by a related OrderProduct object
Parameters
- $orderProduct
Thelia\Model\OrderProduct|PropelObjectCollection $orderProduct The related object(s) to use as filter
- $comparison
string $comparison Operator to use for the column comparison, defaults to
Criteria::EQUAL
Returns
Throws
PropelException - if the provided filter is invalid.
|
public
Thelia\Model\OrderFeatureQuery
|
#
joinOrderProduct( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::INNER_JOIN )
Adds a JOIN clause to the query using the OrderProduct relation
Adds a JOIN clause to the query using the OrderProduct relation
Parameters
- $relationAlias
string $relationAlias optional alias for the relation
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
|
public
Thelia\Model\OrderProductQuery
|
#
useOrderProductQuery( string $relationAlias = null, string $joinType = Thelia\Model\om\Criteria::INNER_JOIN )
Use the OrderProduct relation OrderProduct object
Use the OrderProduct relation OrderProduct object
Parameters
- $relationAlias
string $relationAlias optional alias for the relation, to be used as main alias in the
secondary query
- $joinType
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
Returns
See
useQuery()
|
public
Thelia\Model\OrderFeatureQuery
|
|
public
Thelia\Model\OrderFeatureQuery
|
#
recentlyUpdated( integer $nbDays = 7 )
Filter by the latest updated
Filter by the latest updated
Parameters
- $nbDays
integer $nbDays Maximum age of the latest update in days
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
|
public
Thelia\Model\OrderFeatureQuery
|
|
public
Thelia\Model\OrderFeatureQuery
|
#
recentlyCreated( integer $nbDays = 7 )
Filter by the latest created
Filter by the latest created
Parameters
- $nbDays
integer $nbDays Maximum age of in days
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
|
public
Thelia\Model\OrderFeatureQuery
|
|
Magic methods summary
public
Thelia\Model\OrderFeatureQuery
|
#
orderById( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the id column
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
orderByOrderProductId( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the order_product_id column
Order by the order_product_id column
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
orderByFeatureDesc( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the feature_desc column
Order by the feature_desc column
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
orderByFeatureAvDesc( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the feature_av_desc column
Order by the feature_av_desc column
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
orderByCreatedAt( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the created_at column
Order by the created_at column
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
orderByUpdatedAt( mixed $order = Thelia\Model\om\Criteria::ASC )
Order by the updated_at column
Order by the updated_at column
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
|
public
Thelia\Model\OrderFeatureQuery
|
|
public
Thelia\Model\OrderFeatureQuery
|
#
groupByFeatureDesc( )
Group by the feature_desc column
Group by the feature_desc column
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
groupByFeatureAvDesc( )
Group by the feature_av_desc column
Group by the feature_av_desc column
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
groupByCreatedAt( )
Group by the created_at column
Group by the created_at column
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
groupByUpdatedAt( )
Group by the updated_at column
Group by the updated_at column
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
leftJoin( mixed $relation = )
Adds a LEFT JOIN clause to the query
Adds a LEFT JOIN clause to the query
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
rightJoin( mixed $relation = )
Adds a RIGHT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
innerJoin( mixed $relation = )
Adds a INNER JOIN clause to the query
Adds a INNER JOIN clause to the query
Parameters
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
leftJoinOrderProduct( mixed $relationAlias = null )
Adds a LEFT JOIN clause to the query using the OrderProduct relation
Adds a LEFT JOIN clause to the query using the OrderProduct relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
rightJoinOrderProduct( mixed $relationAlias = null )
Adds a RIGHT JOIN clause to the query using the OrderProduct relation
Adds a RIGHT JOIN clause to the query using the OrderProduct relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\OrderFeatureQuery
|
#
innerJoinOrderProduct( mixed $relationAlias = null )
Adds a INNER JOIN clause to the query using the OrderProduct relation
Adds a INNER JOIN clause to the query using the OrderProduct relation
Parameters
- $relationAlias
mixed $relationAlias
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOne( PropelPDO $con = null )
Return the first OrderFeature matching the query
Return the first OrderFeature matching the query
Parameters
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOneOrCreate( PropelPDO $con = null )
Return the first OrderFeature matching the query, or a new OrderFeature
object populated from the query conditions when no match is found
Return the first OrderFeature matching the query, or a new OrderFeature
object populated from the query conditions when no match is found
Parameters
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOneByOrderProductId( integer $order_product_id = )
Return the first OrderFeature filtered by the order_product_id column
Return the first OrderFeature filtered by the order_product_id column
Parameters
- $order_product_id
integer $order_product_id
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOneByFeatureDesc( string $feature_desc = )
Return the first OrderFeature filtered by the feature_desc column
Return the first OrderFeature filtered by the feature_desc column
Parameters
- $feature_desc
string $feature_desc
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOneByFeatureAvDesc( string $feature_av_desc = )
Return the first OrderFeature filtered by the feature_av_desc column
Return the first OrderFeature filtered by the feature_av_desc column
Parameters
- $feature_av_desc
string $feature_av_desc
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOneByCreatedAt( string $created_at = )
Return the first OrderFeature filtered by the created_at column
Return the first OrderFeature filtered by the created_at column
Parameters
- $created_at
string $created_at
Returns
|
public
Thelia\Model\OrderFeature
|
#
findOneByUpdatedAt( string $updated_at = )
Return the first OrderFeature filtered by the updated_at column
Return the first OrderFeature filtered by the updated_at column
Parameters
- $updated_at
string $updated_at
Returns
|
public
array
|
#
findById( integer $id = )
Return OrderFeature objects filtered by the id column
Return OrderFeature objects filtered by the id column
Parameters
Returns
array
|
public
array
|
#
findByOrderProductId( integer $order_product_id = )
Return OrderFeature objects filtered by the order_product_id column
Return OrderFeature objects filtered by the order_product_id column
Parameters
- $order_product_id
integer $order_product_id
Returns
array
|
public
array
|
#
findByFeatureDesc( string $feature_desc = )
Return OrderFeature objects filtered by the feature_desc column
Return OrderFeature objects filtered by the feature_desc column
Parameters
- $feature_desc
string $feature_desc
Returns
array
|
public
array
|
#
findByFeatureAvDesc( string $feature_av_desc = )
Return OrderFeature objects filtered by the feature_av_desc column
Return OrderFeature objects filtered by the feature_av_desc column
Parameters
- $feature_av_desc
string $feature_av_desc
Returns
array
|
public
array
|
#
findByCreatedAt( string $created_at = )
Return OrderFeature objects filtered by the created_at column
Return OrderFeature objects filtered by the created_at column
Parameters
- $created_at
string $created_at
Returns
array
|
public
array
|
#
findByUpdatedAt( string $updated_at = )
Return OrderFeature objects filtered by the updated_at column
Return OrderFeature objects filtered by the updated_at column
Parameters
- $updated_at
string $updated_at
Returns
array
|