You are here

function uc_attribute_option_load in Ubercart 5

Same name and namespace in other branches
  1. 8.4 uc_attribute/uc_attribute.module \uc_attribute_option_load()
  2. 6.2 uc_attribute/uc_attribute.module \uc_attribute_option_load()
  3. 7.3 uc_attribute/uc_attribute.module \uc_attribute_option_load()
2 calls to uc_attribute_option_load()
uc_attribute_condition_ordered_product_option in uc_attribute/uc_attribute_workflow.inc
uc_importer_import in uc_importer/uc_importer.module
Imports an XML document into the database.

File

uc_attribute/uc_attribute.module, line 1379

Code

function uc_attribute_option_load($oid) {
  return db_fetch_object(db_query("SELECT * FROM {uc_attribute_options} WHERE oid = %d", $oid));
}