Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
Interception
DefinitionInterface.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Framework\Interception
;
9
14
interface
DefinitionInterface
15
{
16
const
LISTENER_BEFORE
= 1;
17
18
const
LISTENER_AROUND
= 2;
19
20
const
LISTENER_AFTER
= 4;
21
28
public
function
getMethodList
(
$type
);
29
}
$type
$type
Definition:
item.phtml:13
Magento\Framework\Interception\DefinitionInterface\getMethodList
getMethodList($type)
Magento\Framework\Interception
Magento\Framework\Interception\DefinitionInterface\LISTENER_AFTER
const LISTENER_AFTER
Definition:
DefinitionInterface.php:20
Magento\Framework\Interception\DefinitionInterface\LISTENER_BEFORE
const LISTENER_BEFORE
Definition:
DefinitionInterface.php:16
Magento\Framework\Interception\DefinitionInterface\LISTENER_AROUND
const LISTENER_AROUND
Definition:
DefinitionInterface.php:18
Magento\Framework\Interception\DefinitionInterface
Definition:
DefinitionInterface.php:14