
Public Member Functions | |
| getConfig ($key) | |
| getFieldIdFormat () | |
| getFieldNameFormat () | |
| getFieldId ($field) | |
| getFieldName ($field) | |
Definition at line 27 of file Abstract.php.
| getConfig | ( | $ | key | ) |
Definition at line 29 of file Abstract.php.
00030 { 00031 return $this->helper('customer/address')->getConfig($key); 00032 }
| getFieldId | ( | $ | field | ) |
Definition at line 50 of file Abstract.php.
00051 { 00052 return sprintf($this->getFieldIdFormat(), $field); 00053 }
| getFieldIdFormat | ( | ) |
Definition at line 34 of file Abstract.php.
00035 { 00036 if (!$this->hasData('field_id_format')) { 00037 $this->setData('field_id_format', '%s'); 00038 } 00039 return $this->getData('field_id_format'); 00040 }
| getFieldName | ( | $ | field | ) |
Definition at line 55 of file Abstract.php.
00056 { 00057 return sprintf($this->getFieldNameFormat(), $field); 00058 }
| getFieldNameFormat | ( | ) |
Definition at line 42 of file Abstract.php.
00043 { 00044 if (!$this->hasData('field_name_format')) { 00045 $this->setData('field_name_format', '%s'); 00046 } 00047 return $this->getData('field_name_format'); 00048 }
1.5.8