Configure.php 507 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Review\Block\Form;
  7. /**
  8. * Review form block
  9. *
  10. * @api
  11. * @author Magento Core Team <core@magentocommerce.com>
  12. * @since 100.0.2
  13. */
  14. class Configure extends \Magento\Review\Block\Form
  15. {
  16. /**
  17. * Get review product id
  18. *
  19. * @return int
  20. */
  21. public function getProductId()
  22. {
  23. return (int)$this->getRequest()->getParam('product_id', false);
  24. }
  25. }