Plugins::quickEdit

From ZenMagick Wiki

(Redirected from Plugins::zm quick edit)
Jump to: navigation, search

Quick edit

This is one of a number of plugins that add a new tab to the Catalog Manager admin page. It allows to edit all products of a selected category in a single page.

It is possible to configure your own set of fields by creating a setting named 'plugins.quickEdit.fieldList' that contains a custom field map.

Example of setting up custom fields:

 // custom fields
 ZMSettings::set('plugins.quickEdit.fieldList', array(
     array('name' => 'name', 'widget' => 'TextFormWidget#title=Name&name=name&size=35'),
     array('name' => 'status', 'widget' => 'BooleanFormWidget#style=checkbox&title=Enabled&name=status&size=35'),
     array('name' => 'manufacturerId', 'widget' => 'ManufacturerSelectFormWidget#title=Manufacturer&options=0= --- '),
 ));
Personal tools