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-eav
Model
ResourceModel
Form
Attribute.php
Go to the documentation of this file.
1
<?php
12
namespace
Magento\Eav\Model\ResourceModel\Form
;
13
14
abstract
class
Attribute
extends
\Magento\Framework\Model\ResourceModel\Db\AbstractDb
15
{
22
public
function
getFormAttributeIds
($formCode)
23
{
24
$bind = [
'form_code'
=> $formCode];
25
$select
= $this->
getConnection
()->select()->from(
26
$this->
getMainTable
(),
27
'attribute_id'
28
)->where(
29
'form_code = :form_code'
30
);
31
32
return
$this->
getConnection
()->fetchCol(
$select
, $bind);
33
}
34
}
Magento\Framework\Model\ResourceModel\Db\AbstractDb\getMainTable
getMainTable()
Definition:
AbstractDb.php:264
Magento\Eav\Model\ResourceModel\Form
$select
$select
Definition:
catalog_rule_10_off_not_logged_rollback.php:14
Magento\Eav\Model\ResourceModel\Form\Attribute\getFormAttributeIds
getFormAttributeIds($formCode)
Definition:
Attribute.php:22
Magento\Eav\Model\ResourceModel\Form\Attribute
Definition:
Attribute.php:14
Magento\Framework\Model\ResourceModel\Db\AbstractDb
Definition:
AbstractDb.php:24
Magento\Framework\Model\ResourceModel\Db\AbstractDb\getConnection
getConnection()
Definition:
AbstractDb.php:325