| @@ 377-386 (lines=10) @@ | ||
| 374 | * |
|
| 375 | * @return $this|ChildRouteQuery The current query, for fluid interface |
|
| 376 | */ |
|
| 377 | public function filterByType($type = null, $comparison = null) |
|
| 378 | { |
|
| 379 | if (null === $comparison) { |
|
| 380 | if (is_array($type)) { |
|
| 381 | $comparison = Criteria::IN; |
|
| 382 | } |
|
| 383 | } |
|
| 384 | ||
| 385 | return $this->addUsingAlias(RouteTableMap::COL_TYPE, $type, $comparison); |
|
| 386 | } |
|
| 387 | ||
| 388 | /** |
|
| 389 | * Filter the query on the parent_url column |
|
| @@ 402-411 (lines=10) @@ | ||
| 399 | * |
|
| 400 | * @return $this|ChildRouteQuery The current query, for fluid interface |
|
| 401 | */ |
|
| 402 | public function filterByParentUrl($parentUrl = null, $comparison = null) |
|
| 403 | { |
|
| 404 | if (null === $comparison) { |
|
| 405 | if (is_array($parentUrl)) { |
|
| 406 | $comparison = Criteria::IN; |
|
| 407 | } |
|
| 408 | } |
|
| 409 | ||
| 410 | return $this->addUsingAlias(RouteTableMap::COL_PARENT_URL, $parentUrl, $comparison); |
|
| 411 | } |
|
| 412 | ||
| 413 | /** |
|
| 414 | * Filter the query on the url column |
|
| @@ 427-436 (lines=10) @@ | ||
| 424 | * |
|
| 425 | * @return $this|ChildRouteQuery The current query, for fluid interface |
|
| 426 | */ |
|
| 427 | public function filterByUrl($url = null, $comparison = null) |
|
| 428 | { |
|
| 429 | if (null === $comparison) { |
|
| 430 | if (is_array($url)) { |
|
| 431 | $comparison = Criteria::IN; |
|
| 432 | } |
|
| 433 | } |
|
| 434 | ||
| 435 | return $this->addUsingAlias(RouteTableMap::COL_URL, $url, $comparison); |
|
| 436 | } |
|
| 437 | ||
| 438 | /** |
|
| 439 | * Filter the query by a related \SCategory object |
|
| @@ 341-350 (lines=10) @@ | ||
| 338 | * |
|
| 339 | * @return $this|ChildBannerImageI18nQuery The current query, for fluid interface |
|
| 340 | */ |
|
| 341 | public function filterByLocale($locale = null, $comparison = null) |
|
| 342 | { |
|
| 343 | if (null === $comparison) { |
|
| 344 | if (is_array($locale)) { |
|
| 345 | $comparison = Criteria::IN; |
|
| 346 | } |
|
| 347 | } |
|
| 348 | ||
| 349 | return $this->addUsingAlias(BannerImageI18nTableMap::COL_LOCALE, $locale, $comparison); |
|
| 350 | } |
|
| 351 | ||
| 352 | /** |
|
| 353 | * Filter the query on the src column |
|
| @@ 366-375 (lines=10) @@ | ||
| 363 | * |
|
| 364 | * @return $this|ChildBannerImageI18nQuery The current query, for fluid interface |
|
| 365 | */ |
|
| 366 | public function filterBySrc($src = null, $comparison = null) |
|
| 367 | { |
|
| 368 | if (null === $comparison) { |
|
| 369 | if (is_array($src)) { |
|
| 370 | $comparison = Criteria::IN; |
|
| 371 | } |
|
| 372 | } |
|
| 373 | ||
| 374 | return $this->addUsingAlias(BannerImageI18nTableMap::COL_SRC, $src, $comparison); |
|
| 375 | } |
|
| 376 | ||
| 377 | /** |
|
| 378 | * Filter the query on the name column |
|
| @@ 391-400 (lines=10) @@ | ||
| 388 | * |
|
| 389 | * @return $this|ChildBannerImageI18nQuery The current query, for fluid interface |
|
| 390 | */ |
|
| 391 | public function filterByName($name = null, $comparison = null) |
|
| 392 | { |
|
| 393 | if (null === $comparison) { |
|
| 394 | if (is_array($name)) { |
|
| 395 | $comparison = Criteria::IN; |
|
| 396 | } |
|
| 397 | } |
|
| 398 | ||
| 399 | return $this->addUsingAlias(BannerImageI18nTableMap::COL_NAME, $name, $comparison); |
|
| 400 | } |
|
| 401 | ||
| 402 | /** |
|
| 403 | * Filter the query on the clicks column |
|
| @@ 457-466 (lines=10) @@ | ||
| 454 | * |
|
| 455 | * @return $this|ChildBannerImageI18nQuery The current query, for fluid interface |
|
| 456 | */ |
|
| 457 | public function filterByDescription($description = null, $comparison = null) |
|
| 458 | { |
|
| 459 | if (null === $comparison) { |
|
| 460 | if (is_array($description)) { |
|
| 461 | $comparison = Criteria::IN; |
|
| 462 | } |
|
| 463 | } |
|
| 464 | ||
| 465 | return $this->addUsingAlias(BannerImageI18nTableMap::COL_DESCRIPTION, $description, $comparison); |
|
| 466 | } |
|
| 467 | ||
| 468 | /** |
|
| 469 | * Filter the query by a related \xbanners\models\BannerImage object |
|
| @@ 443-452 (lines=10) @@ | ||
| 440 | * |
|
| 441 | * @return $this|ChildBannerImageQuery The current query, for fluid interface |
|
| 442 | */ |
|
| 443 | public function filterByUrl($url = null, $comparison = null) |
|
| 444 | { |
|
| 445 | if (null === $comparison) { |
|
| 446 | if (is_array($url)) { |
|
| 447 | $comparison = Criteria::IN; |
|
| 448 | } |
|
| 449 | } |
|
| 450 | ||
| 451 | return $this->addUsingAlias(BannerImageTableMap::COL_URL, $url, $comparison); |
|
| 452 | } |
|
| 453 | ||
| 454 | /** |
|
| 455 | * Filter the query on the allowed_page column |
|
| @@ 326-335 (lines=10) @@ | ||
| 323 | * |
|
| 324 | * @return $this|ChildBannersI18nQuery The current query, for fluid interface |
|
| 325 | */ |
|
| 326 | public function filterByLocale($locale = null, $comparison = null) |
|
| 327 | { |
|
| 328 | if (null === $comparison) { |
|
| 329 | if (is_array($locale)) { |
|
| 330 | $comparison = Criteria::IN; |
|
| 331 | } |
|
| 332 | } |
|
| 333 | ||
| 334 | return $this->addUsingAlias(BannersI18nTableMap::COL_LOCALE, $locale, $comparison); |
|
| 335 | } |
|
| 336 | ||
| 337 | /** |
|
| 338 | * Filter the query on the name column |
|
| @@ 351-360 (lines=10) @@ | ||
| 348 | * |
|
| 349 | * @return $this|ChildBannersI18nQuery The current query, for fluid interface |
|
| 350 | */ |
|
| 351 | public function filterByName($name = null, $comparison = null) |
|
| 352 | { |
|
| 353 | if (null === $comparison) { |
|
| 354 | if (is_array($name)) { |
|
| 355 | $comparison = Criteria::IN; |
|
| 356 | } |
|
| 357 | } |
|
| 358 | ||
| 359 | return $this->addUsingAlias(BannersI18nTableMap::COL_NAME, $name, $comparison); |
|
| 360 | } |
|
| 361 | ||
| 362 | /** |
|
| 363 | * Filter the query by a related \xbanners\models\Banners object |
|
| @@ 340-349 (lines=10) @@ | ||
| 337 | * |
|
| 338 | * @return $this|ChildBannersQuery The current query, for fluid interface |
|
| 339 | */ |
|
| 340 | public function filterByPlace($place = null, $comparison = null) |
|
| 341 | { |
|
| 342 | if (null === $comparison) { |
|
| 343 | if (is_array($place)) { |
|
| 344 | $comparison = Criteria::IN; |
|
| 345 | } |
|
| 346 | } |
|
| 347 | ||
| 348 | return $this->addUsingAlias(BannersTableMap::COL_PLACE, $place, $comparison); |
|
| 349 | } |
|
| 350 | ||
| 351 | /** |
|
| 352 | * Filter the query on the width column |
|
| @@ 447-456 (lines=10) @@ | ||
| 444 | * |
|
| 445 | * @return $this|ChildBannersQuery The current query, for fluid interface |
|
| 446 | */ |
|
| 447 | public function filterByEffects($effects = null, $comparison = null) |
|
| 448 | { |
|
| 449 | if (null === $comparison) { |
|
| 450 | if (is_array($effects)) { |
|
| 451 | $comparison = Criteria::IN; |
|
| 452 | } |
|
| 453 | } |
|
| 454 | ||
| 455 | return $this->addUsingAlias(BannersTableMap::COL_EFFECTS, $effects, $comparison); |
|
| 456 | } |
|
| 457 | ||
| 458 | /** |
|
| 459 | * Filter the query on the page_type column |
|
| @@ 472-481 (lines=10) @@ | ||
| 469 | * |
|
| 470 | * @return $this|ChildBannersQuery The current query, for fluid interface |
|
| 471 | */ |
|
| 472 | public function filterByPageType($pageType = null, $comparison = null) |
|
| 473 | { |
|
| 474 | if (null === $comparison) { |
|
| 475 | if (is_array($pageType)) { |
|
| 476 | $comparison = Criteria::IN; |
|
| 477 | } |
|
| 478 | } |
|
| 479 | ||
| 480 | return $this->addUsingAlias(BannersTableMap::COL_PAGE_TYPE, $pageType, $comparison); |
|
| 481 | } |
|
| 482 | ||
| 483 | /** |
|
| 484 | * Filter the query by a related \xbanners\models\BannerImage object |
|