moduleManager = $moduleManager; } /** * Determine if the Giftwrapping module is enabled * * @return bool */ private function isGiftWrappingEnabled() { return $this->moduleManager->isEnabled('Magento_GiftWrapping'); } /** * Get the Giftwrapping Code * * @return bool|string */ public function giftWrap() { return $this->isGiftWrappingEnabled() ? Giftwrapping::CODE_QUOTE_GW : false; } /** * Get the Printed Card code * * @return bool|string */ public function printedCard() { return $this->isGiftWrappingEnabled() ? Giftwrapping::CODE_PRINTED_CARD : false; } }