Dodaj niestandardowy atrybut kategorii z menu rozwijanego

10

Muszę dodać do kategorii niestandardowy atrybut, wybór z 2 wartościami:

  • 0 - „Nie”
  • 1 - „Tak”

Utworzyłem moduł i użyłem tego kodu w pliku instalacyjnym:

$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();

Atrybut pojawia się w panelu administracyjnym, ale wartość dodana w opcji „Nie” wynosi 3, a „Tak” - 4. Jak ustawić wartość 0 i 1?

użytkownik4157
źródło
@ user4157: Gdzie mogę dodać to względy,
Gem

Odpowiedzi:

11

Spróbuj tego:

$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();

Dodałem eav/entity_attribute_source_booleanjak sourcedla twojego atrybutu.

Marius
źródło
@Maurius dzięki za odpowiedź. Ale w jaki sposób model źródłowy eav/entity_attribute_source_booleanbędzie działał w przypadku opcji wielokrotnego wyboru?
Slimshadddyyy
2
@ Vikik Jeśli użyjesz tego modelu źródłowego do wielokrotnego wyboru, zobaczysz wielokrotny wybór z 2 opcjami. Yes/No.
Marius
@Marius i wan do Yes lub No atrybut gdzie muszę dodać plik lub utworzyć nowy moduł do tego
Magento 2
2

Spróbuj użyć poniższego kodu, aby utworzyć atrybut top_brand w kategorii:

   $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, 
            ) );
Bijal Bhavsar
źródło
1

Aby dodać niestandardowy atrybut tak / nie w sekcji kategorii, utwórz moduł i wprowadź następujący kod.

 <?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();`

Zapoznaj się również z moim samouczkiem.

http://www.pearlbells.co.uk/how-to-add-custom-attribute-dropdown-to-category-section-magento/ (tak / nie) atrybut

http://www.pearlbells.co.uk/how-to-add-custom-dropdown-attribute-to-magento-category-section/ (opcje niestandardowe)

użytkownik46226
źródło