Добавить пользовательский атрибут категории с выпадающим

10

Мне нужно добавить в категорию пользовательский атрибут, выбор с 2 значениями:

  • 0 - «нет»
  • 1 - «Да»

Я создал модуль и использовал этот код в установочном файле:

$this->startSetup();
$this->addAttribute('catalog_category', 'top_brand', array(
    'group'                => 'General',
    'type'              => 'int',//can be int, varchar, decimal, text, datetime
    'backend'           => '',
    'frontend_input'    => '',
    'frontend'          => '',
    'label'             => 'Top Hersteller',
    'input'             => 'select', //text, textarea, select, file, image, multilselect
    'option' => array(
        'value' => array(

            'optionone'=> array(
                0 =>'No'),
            'optiontwo'=> array(
                0 =>'Yes')
        ),

    ),
    'default' => array(0),
    'class'             => '',
    // 'source'            => '',//this is necessary for select and multilelect, for the rest leave it blank
    'global'             => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,//scope can be SCOPE_STORE or SCOPE_GLOBAL or SCOPE_WEBSITE
    'visible'           => true,
    'frontend_class'     => '',
    'required'          => false,//or true
    'user_defined'      => true,
    'default'           => '',
    'position'            => 100,//any number will do
));
$this->endSetup();

Атрибут появляется в панели администрирования, но значение, добавленное в select для «Нет», равно 3, а для «Да» - 4. Как сделать значения 0 и 1?

user4157
источник
@ user4157: Где я могу добавить это отношение,
Gem

Ответы:

11

Попробуй это:

$this->startSetup();
$this->addAttribute('catalog_category', 'top_brand', array(
    'group'                => 'General',
    'type'              => 'int',//can be int, varchar, decimal, text, datetime
    'backend'           => '',
    'frontend_input'    => '',
    'frontend'          => '',
    'label'             => 'Top Hersteller',
    'input'             => 'select', //text, textarea, select, file, image, multilselect
    'default' => array(0),
    'class'             => '',
    'source'            => 'eav/entity_attribute_source_boolean',//this is necessary for select and multilelect, for the rest leave it blank
    'global'             => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,//scope can be SCOPE_STORE or SCOPE_GLOBAL or SCOPE_WEBSITE
    'visible'           => true,
    'frontend_class'     => '',
    'required'          => false,//or true
    'user_defined'      => true,
    'default'           => '',
    'position'            => 100,//any number will do
));
$this->endSetup();

Я добавил eav/entity_attribute_source_booleanчто sourceкасается вашего атрибута.

Мариус
источник
@Maurius спасибо за ответ. Но как eav/entity_attribute_source_booleanбудет работать исходная модель для опции множественного выбора?
Slimshadddyyy
2
@Vikram Если вы используете эту исходную модель для множественного выбора, вы увидите множественный выбор с 2 вариантами. Yes/No,
Мариус
@Marius Я хочу, чтобы атрибут Да или Нет, где я должен добавить файл или создать новый модуль для этого
Magento 2
2

Попробуйте использовать приведенный ниже код для создания атрибута top_brand в категории:

   $this->addAttribute( 'catalog_category', 'top_brand', array(
                'group' => 'General',
                'type' => 'tinyint',
                'backend' => '',
                'frontend' => '',
                'label' => 'Top Hersteller',
                'input' => 'boolean',
                'source' => 'eav/entity_attribute_source_boolean',
                'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
                'visible' => true,
                'required' => false,
                'user_defined' => true,
                'default' => '', 
                'unique' => false, 
            ) );
Биджал Бхавсар
источник
1

Для добавления пользовательского атрибута yes / no в раздел категории, пожалуйста, создайте модуль и введите следующий код.

 <?php
$this->startSetup();
$this->addAttribute(Mage_Catalog_Model_Category::ENTITY, 'featured_product', array(
    'group'         => 'General Information',
    'input'         => 'select',
    'type'          => 'text',
    'label'         => 'Featured Product',
    'backend'       => '',
    'visible'       => true,
    'required'      => false,
    'visible_on_front' => true,
    'global'        => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
    'source' => 'eav/entity_attribute_source_boolean',
));

$this->endSetup();`

Пожалуйста, обратитесь мой учебник, а также.

Атрибут http://www.pearlbells.co.uk/how-to-add-custom-attribute-dropdown-to-category-section-magento/ (да / нет)

http://www.pearlbells.co.uk/how-to-add-custom-dropdown-attribute-to-magento-category-section/ (пользовательские параметры)

user46226
источник