propelorm/Propel2

View on GitHub
templates/Behavior/I18n/queryJoinWithI18n.php

Summary

Maintainability
A
0 mins
Test Coverage

/**
 * Adds a JOIN clause to the query and hydrates the related I18n object.
 * Shortcut for $c->joinI18n($locale)->with()
 *
 * @param string $locale Locale to use for the join condition, e.g. 'fr_FR'
 * @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.
 *
 * @return $this The current query, for fluid interface
 */
public function joinWithI18n($locale = '<?php echo $defaultLocale ?>', $joinType = Criteria::LEFT_JOIN)
{
    $this
        ->joinI18n($locale, null, $joinType)
        ->with('<?php echo $i18nRelationName ?>');
    $this->with['<?php echo $i18nRelationName ?>']->setIsWithOneToMany(false);

    return $this;
}