Execute($zp_products_query); while (!$zp_products->EOF) { if ($zf_product_ids_only) { $za_products_array[] = $zp_products->fields['products_id']; } else { $za_products_array[] = array('id' => $zp_products->fields['products_id'], 'text' => $zp_products->fields['products_name']); } $zp_products->MoveNext(); } if ($zf_recurse) { $zp_categories_query = "select categories_id from " . TABLE_CATEGORIES . " where parent_id = '" . (int)$zf_category_id . "'"; $zp_categories = $db->Execute($zp_categories_query); while (!$zp_categories->EOF) { $za_sub_products_array = $this->get_products_in_category($zp_categories->fields['categories_id'], true, $zf_product_ids_only); $za_products_array = array_merge($za_products_array, $za_sub_products_array); $zp_categories->MoveNext(); } } return $za_products_array; } function products_name($zf_product_id) { global $db; $zp_product_name_query = "select products_name from " . TABLE_PRODUCTS_DESCRIPTION . " where language_id = '" . $_SESSION['languages_id'] . "' and products_id = '" . (int)$zf_product_id . "'"; $zp_product_name = $db->Execute($zp_product_name_query); $zp_product_name = $zp_product_name->fields['products_name']; return $zp_product_name; } function get_admin_handler($type) { return $this->get_handler($type) . '.php'; } function get_handler($type) { global $db; $sql = "select type_handler from " . TABLE_PRODUCT_TYPES . " where type_id = '" . (int)$type . "'"; $handler = $db->Execute($sql); return $handler->fields['type_handler']; } function get_allow_add_to_cart($zf_product_id) { global $db; $sql = "select products_type from " . TABLE_PRODUCTS . " where products_id='" . (int)$zf_product_id . "'"; $type_lookup = $db->Execute($sql); $sql = "select allow_add_to_cart from " . TABLE_PRODUCT_TYPES . " where type_id = '" . (int)$type_lookup->fields['products_type'] . "'"; $allow_add_to_cart = $db->Execute($sql); return $allow_add_to_cart->fields['allow_add_to_cart']; } } ?>