class OrderStatusQuery extends ModelCriteria

Base class that represents a query for the 'order_status' table.

Methods

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\OrderStatus', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\OrderStatusQuery object.

static  OrderStatusQuery
create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildOrderStatusQuery object.

OrderStatus|array|mixed
findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

ObjectCollection|array|mixed
findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

filterByCode( string $code = null, string $comparison = null)

Filter the query on the code column

filterByColor( string $color = null, string $comparison = null)

Filter the query on the color column

filterByPosition( mixed $position = null, string $comparison = null)

Filter the query on the position column

filterByProtectedStatus( boolean|string $protectedStatus = null, string $comparison = null)

Filter the query on the protected_status column

filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

filterByOrder( Order|ObjectCollection $order, string $comparison = null)

Filter the query by a related \Thelia\Model\Order object

joinOrder( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Order relation

useOrderQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Order relation Order object

filterByOrderStatusI18n( OrderStatusI18n|ObjectCollection $orderStatusI18n, string $comparison = null)

Filter the query by a related \Thelia\Model\OrderStatusI18n object

joinOrderStatusI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the OrderStatusI18n relation

useOrderStatusI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the OrderStatusI18n relation OrderStatusI18n object

prune( OrderStatus $orderStatus = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the order_status table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildOrderStatus or Criteria object OR a primary key value.

recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

recentlyCreated( int $nbDays = 7)

Filter by the latest created

lastUpdatedFirst()

Order by update date desc

firstUpdatedFirst()

Order by update date asc

lastCreatedFirst()

Order by create date desc

firstCreatedFirst()

Order by create date asc

joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

ChildOrderStatusQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildOrderStatusQuery
orderByCode($order = Criteria::ASC)

Order by the code column

ChildOrderStatusQuery
orderByColor($order = Criteria::ASC)

Order by the color column

ChildOrderStatusQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildOrderStatusQuery
orderByProtectedStatus($order = Criteria::ASC)

Order by the protected_status column

ChildOrderStatusQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildOrderStatusQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildOrderStatusQuery
groupById()

Group by the id column

ChildOrderStatusQuery
groupByCode()

Group by the code column

ChildOrderStatusQuery
groupByColor()

Group by the color column

ChildOrderStatusQuery
groupByPosition()

Group by the position column

ChildOrderStatusQuery
groupByProtectedStatus()

Group by the protected_status column

ChildOrderStatusQuery
groupByCreatedAt()

Group by the created_at column

ChildOrderStatusQuery
groupByUpdatedAt()

Group by the updated_at column

ChildOrderStatusQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildOrderStatusQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildOrderStatusQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildOrderStatusQuery
leftJoinOrder($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Order relation

ChildOrderStatusQuery
rightJoinOrder($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Order relation

ChildOrderStatusQuery
innerJoinOrder($relationAlias = null)

Adds a INNER JOIN clause to the query using the Order relation

ChildOrderStatusQuery
leftJoinOrderStatusI18n($relationAlias = null)

Adds a LEFT JOIN clause to the query using the OrderStatusI18n relation

ChildOrderStatusQuery
rightJoinOrderStatusI18n($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the OrderStatusI18n relation

ChildOrderStatusQuery
innerJoinOrderStatusI18n($relationAlias = null)

Adds a INNER JOIN clause to the query using the OrderStatusI18n relation

ChildOrderStatus
findOne( ConnectionInterface $con = null)

Return the first ChildOrderStatus matching the query

ChildOrderStatus
findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildOrderStatus matching the query, or a new ChildOrderStatus object populated from the query conditions when no match is found

ChildOrderStatus
findOneById( int $id)

Return the first ChildOrderStatus filtered by the id column

ChildOrderStatus
findOneByCode( string $code)

Return the first ChildOrderStatus filtered by the code column

ChildOrderStatus
findOneByColor( string $color)

Return the first ChildOrderStatus filtered by the color column

ChildOrderStatus
findOneByPosition( int $position)

Return the first ChildOrderStatus filtered by the position column

ChildOrderStatus
findOneByProtectedStatus( boolean $protected_status)

Return the first ChildOrderStatus filtered by the protected_status column

ChildOrderStatus
findOneByCreatedAt( string $created_at)

Return the first ChildOrderStatus filtered by the created_at column

ChildOrderStatus
findOneByUpdatedAt( string $updated_at)

Return the first ChildOrderStatus filtered by the updated_at column

array
findById( int $id)

Return ChildOrderStatus objects filtered by the id column

array
findByCode( string $code)

Return ChildOrderStatus objects filtered by the code column

array
findByColor( string $color)

Return ChildOrderStatus objects filtered by the color column

array
findByPosition( int $position)

Return ChildOrderStatus objects filtered by the position column

array
findByProtectedStatus( boolean $protected_status)

Return ChildOrderStatus objects filtered by the protected_status column

array
findByCreatedAt( string $created_at)

Return ChildOrderStatus objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildOrderStatus objects filtered by the updated_at column

Details

at line 83
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\OrderStatus', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\OrderStatusQuery object.

Parameters

string $dbName The database name
string $modelName The phpName of a model, e.g. 'Book'
string $modelAlias The alias for the model in this query, e.g. 'b'

at line 96
static OrderStatusQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildOrderStatusQuery object.

Parameters

string $modelAlias The alias of a model in the query
Criteria $criteria Optional Criteria to build the query from

Return Value

OrderStatusQuery

at line 126
OrderStatus|array|mixed findPk( mixed $key, ConnectionInterface $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);

Parameters

mixed $key Primary key to use for the query
ConnectionInterface $con an optional connection object

Return Value

OrderStatus|array|mixed the result, formatted by the current formatter

at line 208
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

at line 229
OrderStatusQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

OrderStatusQuery The current query, for fluid interface

at line 242
OrderStatusQuery filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

Parameters

array $keys The list of primary key to use for the query

Return Value

OrderStatusQuery The current query, for fluid interface

at line 266
OrderStatusQuery filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

Example usage: $query->filterById(1234); // WHERE id = 1234 $query->filterById(array(12, 34)); // WHERE id IN (12, 34) $query->filterById(array('min' => 12)); // WHERE id > 12

Parameters

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.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderStatusQuery The current query, for fluid interface

at line 304
OrderStatusQuery filterByCode( string $code = null, string $comparison = null)

Filter the query on the code column

Example usage: $query->filterByCode('fooValue'); // WHERE code = 'fooValue' $query->filterByCode('%fooValue%'); // WHERE code LIKE '%fooValue%'

Parameters

string $code 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

Return Value

OrderStatusQuery The current query, for fluid interface

at line 333
OrderStatusQuery filterByColor( string $color = null, string $comparison = null)

Filter the query on the color column

Example usage: $query->filterByColor('fooValue'); // WHERE color = 'fooValue' $query->filterByColor('%fooValue%'); // WHERE color LIKE '%fooValue%'

Parameters

string $color 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

Return Value

OrderStatusQuery The current query, for fluid interface

at line 365
OrderStatusQuery filterByPosition( mixed $position = null, string $comparison = null)

Filter the query on the position column

Example usage: $query->filterByPosition(1234); // WHERE position = 1234 $query->filterByPosition(array(12, 34)); // WHERE position IN (12, 34) $query->filterByPosition(array('min' => 12)); // WHERE position > 12

Parameters

mixed $position 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

Return Value

OrderStatusQuery The current query, for fluid interface

at line 406
OrderStatusQuery filterByProtectedStatus( boolean|string $protectedStatus = null, string $comparison = null)

Filter the query on the protected_status column

Example usage: $query->filterByProtectedStatus(true); // WHERE protectedstatus = true $query->filterByProtectedStatus('yes'); // WHERE protectedstatus = true

Parameters

boolean|string $protectedStatus The value to use as filter. Non-boolean arguments are converted using the following rules: * 1, '1', 'true', 'on', and 'yes' are converted to boolean true * 0, '0', 'false', 'off', and 'no' are converted to boolean false Check on string values is case insensitive (so 'FaLsE' is seen as 'false').
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderStatusQuery The current query, for fluid interface

at line 435
OrderStatusQuery filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

Example usage: $query->filterByCreatedAt('2011-03-14'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt('now'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'

Parameters

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

Return Value

OrderStatusQuery The current query, for fluid interface

at line 478
OrderStatusQuery filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

Example usage: $query->filterByUpdatedAt('2011-03-14'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt('now'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'

Parameters

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

Return Value

OrderStatusQuery The current query, for fluid interface

at line 509
OrderStatusQuery filterByOrder( Order|ObjectCollection $order, string $comparison = null)

Filter the query by a related \Thelia\Model\Order object

Parameters

Order|ObjectCollection $order the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderStatusQuery The current query, for fluid interface

at line 532
OrderStatusQuery joinOrder( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Order relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

OrderStatusQuery The current query, for fluid interface

at line 567
OrderQuery useOrderQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Order relation Order object

Parameters

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'

Return Value

OrderQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 582
OrderStatusQuery filterByOrderStatusI18n( OrderStatusI18n|ObjectCollection $orderStatusI18n, string $comparison = null)

Filter the query by a related \Thelia\Model\OrderStatusI18n object

Parameters

OrderStatusI18n|ObjectCollection $orderStatusI18n the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderStatusQuery The current query, for fluid interface

at line 605
OrderStatusQuery joinOrderStatusI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the OrderStatusI18n relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

OrderStatusQuery The current query, for fluid interface

at line 640
OrderStatusI18nQuery useOrderStatusI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the OrderStatusI18n relation OrderStatusI18n object

Parameters

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'

Return Value

OrderStatusI18nQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 654
OrderStatusQuery prune( OrderStatus $orderStatus = null)

Exclude object from result

Parameters

OrderStatus $orderStatus Object to remove from the list of results

Return Value

OrderStatusQuery The current query, for fluid interface

at line 669
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the order_status table.

Parameters

ConnectionInterface $con the connection to use

Return Value

int The number of affected rows (if supported by underlying database driver).

at line 706
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildOrderStatus or Criteria object OR a primary key value.

Parameters

ConnectionInterface $con

Return Value

int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows if supported by native driver or if emulated using Propel.

Exceptions

PropelException Any exceptions caught during processing will be rethrown wrapped into a PropelException.

at line 747
OrderStatusQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

OrderStatusQuery The current query, for fluid interface

at line 759
OrderStatusQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

OrderStatusQuery The current query, for fluid interface

at line 769
OrderStatusQuery lastUpdatedFirst()

Order by update date desc

Return Value

OrderStatusQuery The current query, for fluid interface

at line 779
OrderStatusQuery firstUpdatedFirst()

Order by update date asc

Return Value

OrderStatusQuery The current query, for fluid interface

at line 789
OrderStatusQuery lastCreatedFirst()

Order by create date desc

Return Value

OrderStatusQuery The current query, for fluid interface

at line 799
OrderStatusQuery firstCreatedFirst()

Order by create date asc

Return Value

OrderStatusQuery The current query, for fluid interface

at line 815
OrderStatusQuery joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

OrderStatusQuery The current query, for fluid interface

at line 833
OrderStatusQuery joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

Shortcut for $c->joinI18n($locale)->with()

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

OrderStatusQuery The current query, for fluid interface

at line 854
OrderStatusI18nQuery useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

OrderStatusI18nQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 73
ChildOrderStatusQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery orderByCode($order = Criteria::ASC)

Order by the code column

Parameters

$order

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery orderByColor($order = Criteria::ASC)

Order by the color column

Parameters

$order

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery orderByProtectedStatus($order = Criteria::ASC)

Order by the protected_status column

Parameters

$order

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery groupById()

Group by the id column

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery groupByCode()

Group by the code column

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery groupByColor()

Group by the color column

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery groupByPosition()

Group by the position column

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery groupByProtectedStatus()

Group by the protected_status column

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery leftJoinOrder($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Order relation

Parameters

$relationAlias

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery rightJoinOrder($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Order relation

Parameters

$relationAlias

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery innerJoinOrder($relationAlias = null)

Adds a INNER JOIN clause to the query using the Order relation

Parameters

$relationAlias

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery leftJoinOrderStatusI18n($relationAlias = null)

Adds a LEFT JOIN clause to the query using the OrderStatusI18n relation

Parameters

$relationAlias

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery rightJoinOrderStatusI18n($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the OrderStatusI18n relation

Parameters

$relationAlias

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatusQuery innerJoinOrderStatusI18n($relationAlias = null)

Adds a INNER JOIN clause to the query using the OrderStatusI18n relation

Parameters

$relationAlias

Return Value

ChildOrderStatusQuery

at line 73
ChildOrderStatus findOne( ConnectionInterface $con = null)

Return the first ChildOrderStatus matching the query

Parameters

ConnectionInterface $con

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildOrderStatus matching the query, or a new ChildOrderStatus object populated from the query conditions when no match is found

Parameters

ConnectionInterface $con

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneById( int $id)

Return the first ChildOrderStatus filtered by the id column

Parameters

int $id

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneByCode( string $code)

Return the first ChildOrderStatus filtered by the code column

Parameters

string $code

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneByColor( string $color)

Return the first ChildOrderStatus filtered by the color column

Parameters

string $color

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneByPosition( int $position)

Return the first ChildOrderStatus filtered by the position column

Parameters

int $position

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneByProtectedStatus( boolean $protected_status)

Return the first ChildOrderStatus filtered by the protected_status column

Parameters

boolean $protected_status

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneByCreatedAt( string $created_at)

Return the first ChildOrderStatus filtered by the created_at column

Parameters

string $created_at

Return Value

ChildOrderStatus

at line 73
ChildOrderStatus findOneByUpdatedAt( string $updated_at)

Return the first ChildOrderStatus filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildOrderStatus

at line 73
array findById( int $id)

Return ChildOrderStatus objects filtered by the id column

Parameters

int $id

Return Value

array

at line 73
array findByCode( string $code)

Return ChildOrderStatus objects filtered by the code column

Parameters

string $code

Return Value

array

at line 73
array findByColor( string $color)

Return ChildOrderStatus objects filtered by the color column

Parameters

string $color

Return Value

array

at line 73
array findByPosition( int $position)

Return ChildOrderStatus objects filtered by the position column

Parameters

int $position

Return Value

array

at line 73
array findByProtectedStatus( boolean $protected_status)

Return ChildOrderStatus objects filtered by the protected_status column

Parameters

boolean $protected_status

Return Value

array

at line 73
array findByCreatedAt( string $created_at)

Return ChildOrderStatus objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 73
array findByUpdatedAt( string $updated_at)

Return ChildOrderStatus objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array