uawdijnntqw1x1x1
IP : 216.73.216.28
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
public
/
..
/
.
/
plugins
/
commerce-helcim
/
src
/
Plugin.php
/
/
<?php namespace craft\commerce\helcim; use craft\commerce\helcim\gateways\Gateway; use craft\commerce\services\Gateways; use craft\events\RegisterComponentTypesEvent; use yii\base\Event; /** * Plugin proved eWay integration for Commerce. * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 1.0 */ class Plugin extends \craft\base\Plugin { // Public Methods // ========================================================================= /** * @inheritdoc */ public function init() { parent::init(); Event::on(Gateways::class, Gateways::EVENT_REGISTER_GATEWAY_TYPES, function(RegisterComponentTypesEvent $event) { $event->types[] = Gateway::class; }); } }
/srv/users/craft4/apps/craft4-newsite-space/public/.././plugins/commerce-helcim/src/Plugin.php