本文整理汇总了PHP中Propel\Runtime\Collection\ObjectCollection::getCurrencyId方法的典型用法代码示例。如果您正苦于以下问题:PHP ObjectCollection::getCurrencyId方法的具体用法?PHP ObjectCollection::getCurrencyId怎么用?PHP ObjectCollection::getCurrencyId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Propel\Runtime\Collection\ObjectCollection
的用法示例。
在下文中一共展示了ObjectCollection::getCurrencyId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: filterBySaleOffsetCurrency
/**
* Filter the query by a related \Thelia\Model\SaleOffsetCurrency object
*
* @param \Thelia\Model\SaleOffsetCurrency|ObjectCollection $saleOffsetCurrency the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ChildCurrencyQuery The current query, for fluid interface
*/
public function filterBySaleOffsetCurrency($saleOffsetCurrency, $comparison = null)
{
if ($saleOffsetCurrency instanceof \Thelia\Model\SaleOffsetCurrency) {
return $this->addUsingAlias(CurrencyTableMap::ID, $saleOffsetCurrency->getCurrencyId(), $comparison);
} elseif ($saleOffsetCurrency instanceof ObjectCollection) {
return $this->useSaleOffsetCurrencyQuery()->filterByPrimaryKeys($saleOffsetCurrency->getPrimaryKeys())->endUse();
} else {
throw new PropelException('filterBySaleOffsetCurrency() only accepts arguments of type \\Thelia\\Model\\SaleOffsetCurrency or Collection');
}
}
示例2: filterByCountry
/**
* Filter the query by a related \keeko\core\model\Country object
*
* @param \keeko\core\model\Country|ObjectCollection $country the related object to use as filter
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
*
* @return ChildCurrencyQuery The current query, for fluid interface
*/
public function filterByCountry($country, $comparison = null)
{
if ($country instanceof \keeko\core\model\Country) {
return $this->addUsingAlias(CurrencyTableMap::COL_ID, $country->getCurrencyId(), $comparison);
} elseif ($country instanceof ObjectCollection) {
return $this->useCountryQuery()->filterByPrimaryKeys($country->getPrimaryKeys())->endUse();
} else {
throw new PropelException('filterByCountry() only accepts arguments of type \\keeko\\core\\model\\Country or Collection');
}
}