示例#1
0
 /**
  * @param Mage_Rule_Model_Rule $rule
  * @return string
  */
 public function formatCustomerGroups($rule)
 {
     $names = array();
     $ids = $rule->getCustomerGroupIds();
     foreach ($ids as $id) {
         $names[] = $this->_customerGroupNames[$id];
     }
     return implode(', ', $names);
 }