Data.php 452 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\CatalogSearch\Helper;
  7. /**
  8. * Catalog search helper
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Data extends \Magento\Search\Helper\Data
  14. {
  15. /**
  16. * Retrieve advanced search URL
  17. *
  18. * @return string
  19. */
  20. public function getAdvancedSearchUrl()
  21. {
  22. return $this->_getUrl('catalogsearch/advanced');
  23. }
  24. }