urlBuilder = $context->getUrlBuilder(); } /** * @inheritdoc * @since 100.1.0 */ public function getButtonData() { return [ 'label' => __('Back'), 'on_click' => sprintf("location.href = '%s';", $this->getBackUrl()), 'class' => 'back', 'sort_order' => 10 ]; } /** * Get URL for back (reset) button * * @return string * @since 100.1.0 */ public function getBackUrl() { return $this->urlBuilder->getUrl('*/*/'); } }