Enter a type and click search.




Results for AuthorizenetAcceptjsCommandPool

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsFacade"
             type="Magento\Payment\Model\Method\Adapter">
    <arguments>
        <argument name="code" xsi:type="string">
            authorizenet_acceptjs
        </argument>
        <argument name="formBlockType" xsi:type="string">
            Magento\AuthorizenetAcceptjs\Block\Form
        </argument>
        <argument name="infoBlockType" xsi:type="string">
            AuthorizenetAcceptjsInfoBlock
        </argument>
        <argument name="valueHandlerPool" xsi:type="object">
            AuthorizenetAcceptjsValueHandlerPool
        </argument>
        <argument name="validatorPool" xsi:type="object">
            AuthorizenetAcceptjsValidatorPool
        </argument>
        <argument name="commandPool" xsi:type="object">
            AuthorizenetAcceptjsCommandPool
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsFacade object that it should return a Magento\Payment\Model\Method\Adapter object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsFacade object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">
                AuthorizenetAcceptjsAuthorizeCommand
            </item>
            <item name="capture" xsi:type="string">
                AuthorizenetAcceptjsCaptureCommand
            </item>
            <item name="sale" xsi:type="string">
                AuthorizenetAcceptjsSaleCommand
            </item>
            <item name="settle" xsi:type="string">
                AuthorizenetAcceptjsSettleCommand
            </item>
            <item name="void" xsi:type="string">
                AuthorizenetAcceptjsVoidCommand
            </item>
            <item name="refund" xsi:type="string">
                AuthorizenetAcceptjsRefundCommand
            </item>
            <item name="refund_settled" xsi:type="string">
                AuthorizenetAcceptjsRefundSettledCommand
            </item>
            <item name="cancel" xsi:type="string">
                AuthorizenetAcceptjsCancelCommand
            </item>
            <item name="accept_payment" xsi:type="string">
                AuthorizenetAcceptjsAcceptPaymentCommand
            </item>
            <item name="accept_fds" xsi:type="string">
                AuthorizenetAcceptjsAcceptFdsCommand
            </item>
            <item name="deny_payment" xsi:type="string">
                AuthorizenetAcceptjsCancelCommand
            </item>
            <item name="get_transaction_details" xsi:type="string">
                AuthorizenetAcceptjsTransactionDetailsCommand
            </item>
            <item name="fetch_transaction_information"
                  xsi:type="string">
                AuthorizenetAcceptjsFetchTransactionInfoCommand
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsFetchTransactionInfoCommand"
             type="Magento\AuthorizenetAcceptjs\Gateway\Command\FetchTransactionInfoCommand">
    <arguments>
        <argument name="commandPool" xsi:type="object">
            AuthorizenetAcceptjsCommandPool
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsFetchTransactionInfoCommand object that it should return a Magento\AuthorizenetAcceptjs\Gateway\Command\FetchTransactionInfoCommand object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsFetchTransactionInfoCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsAcceptPaymentCommand"
             type="Magento\AuthorizenetAcceptjs\Gateway\Command\AcceptPaymentStrategyCommand">
    <arguments>
        <argument name="commandPool" xsi:type="object">
            AuthorizenetAcceptjsCommandPool
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsAcceptPaymentCommand object that it should return a Magento\AuthorizenetAcceptjs\Gateway\Command\AcceptPaymentStrategyCommand object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsAcceptPaymentCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsRefundCommand"
             type="Magento\AuthorizenetAcceptjs\Gateway\Command\RefundTransactionStrategyCommand">
    <arguments>
        <argument name="commandPool" xsi:type="object">
            AuthorizenetAcceptjsCommandPool
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsRefundCommand object that it should return a Magento\AuthorizenetAcceptjs\Gateway\Command\RefundTransactionStrategyCommand object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsRefundCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsCaptureCommand"
             type="Magento\AuthorizenetAcceptjs\Gateway\Command\CaptureStrategyCommand">
    <arguments>
        <argument name="commandPool" xsi:type="object">
            AuthorizenetAcceptjsCommandPool
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsCaptureCommand object that it should return a Magento\AuthorizenetAcceptjs\Gateway\Command\CaptureStrategyCommand object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsCaptureCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsCommandManager"
             type="Magento\Payment\Gateway\Command\CommandManager">
    <arguments>
        <argument name="commandPool" xsi:type="object">
            AuthorizenetAcceptjsCommandPool
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsCommandManager object that it should return a Magento\Payment\Gateway\Command\CommandManager object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsCommandManager object that the following arguments should be used in the foo object's constructor.