Skip to content
clockworkgeek edited this page Nov 25, 2011 · 2 revisions

Knectar_Select_Product_Multivalues

Best used on a collection like this,

$collection = Mage::getResourceModel('catalog/product_collection');
Knectar_Select_Product_Multivalues::enhanceProducts($collection, 'color');
  • product_id
  • attribute_code
  • value

Knectar_Select_Product_Rating

  • product_id
  • rating_summary Individual percent value

Knectar_Select_Product_Tags

  • product_id
  • product_tags Comma-delimited tag names.

Knectar_Select_Product_Values

Best used on a collection like this,

$collection = Mage::getResourceModel('catalog/product_collection');
Knectar_Select_Product_Values::enhanceProducts($collection, 'color');
  • product_id
  • attribute_code
  • value

Knectar_Select_Store_Category_Product##

Lists all products per store.

  • store_id
  • product_id
  • category_id
  • parent_id Parent of first category

Knectar_Select_Store_Category_Product_Name

Like Knectar_Select_Store_Category_Product with names exported.

  • store_id
  • product_id
  • category_id
  • parent_id
  • product_name
  • category_name

Knectar_Select_Store_Category_Product_Duoname

Same as Knectar_Select_Store_Category_Product_Name but exports parent category's name too.

  • store_id
  • product_id
  • category_id
  • parent_id
  • product_name
  • category_name
  • parent_category_name

Knectar_Select_Store_Category_Product_Trioname

Same as Knectar_Select_Store_Category_Product_Duoname but exports grand-parent category's ID and name.

  • store_id
  • product_id
  • category_id
  • parent_id
  • grandparent_id
  • product_name
  • category_name
  • parent_category_name
  • grandparent_category_name