You are here

function uc_class_get_attributes in Ubercart 5

Same name and namespace in other branches
  1. 8.4 uc_attribute/uc_attribute.module \uc_class_get_attributes()
  2. 6.2 uc_attribute/uc_attribute.module \uc_class_get_attributes()
  3. 7.3 uc_attribute/uc_attribute.module \uc_class_get_attributes()
2 calls to uc_class_get_attributes()
uc_object_attributes_form in uc_attribute/uc_attribute.module
uc_object_options_form in uc_attribute/uc_attribute.module

File

uc_attribute/uc_attribute.module, line 1396

Code

function uc_class_get_attributes($pcid) {
  $attributes = array();
  $result = db_query("SELECT uca.aid FROM {uc_class_attributes} AS uca LEFT JOIN {uc_attributes} AS ua ON uca.aid = ua.aid WHERE uca.pcid = '%s' ORDER BY uca.ordering, ua.name", $pcid);
  while ($attribute = db_fetch_object($result)) {
    $attributes[$attribute->aid] = uc_attribute_load($attribute->aid, $pcid, 'class');
  }
  return $attributes;
}