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
module-catalog
Model
Attribute
Source
Scopes.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Catalog\Model\Attribute\Source
;
7
8
use \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface;
9
10
class
Scopes
implements
\Magento\Framework\Data\OptionSourceInterface
11
{
15
public
function
toOptionArray
()
16
{
17
return
[
18
[
19
'value'
=>
ScopedAttributeInterface::SCOPE_STORE
,
20
'label'
=>
__
(
'Store View'
),
21
],
22
[
23
'value'
=>
ScopedAttributeInterface::SCOPE_WEBSITE
,
24
'label'
=>
__
(
'Web Site'
),
25
],
26
[
27
'value'
=>
ScopedAttributeInterface::SCOPE_GLOBAL
,
28
'label'
=>
__
(
'Global'
),
29
],
30
];
31
}
32
}
Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface\SCOPE_GLOBAL
const SCOPE_GLOBAL
Definition:
ScopedAttributeInterface.php:16
__
__()
Definition:
__.php:13
Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface\SCOPE_STORE
const SCOPE_STORE
Definition:
ScopedAttributeInterface.php:14
Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface\SCOPE_WEBSITE
const SCOPE_WEBSITE
Definition:
ScopedAttributeInterface.php:18
Magento\Catalog\Model\Attribute\Source\Scopes
Definition:
Scopes.php:10
Magento\Framework\Data\OptionSourceInterface
Definition:
OptionSourceInterface.php:14
Magento\Catalog\Model\Attribute\Source\Scopes\toOptionArray
toOptionArray()
Definition:
Scopes.php:15
Magento\Catalog\Model\Attribute\Source
Definition:
Scopes.php:6