Mage_Customer_Block_Widget_Abstract Class Reference

Inheritance diagram for Mage_Customer_Block_Widget_Abstract:

Mage_Core_Block_Template Mage_Core_Block_Abstract Varien_Object Mage_Customer_Block_Widget_Dob Mage_Customer_Block_Widget_Name Mage_Customer_Block_Widget_Taxvat

List of all members.

Public Member Functions

 getConfig ($key)
 getFieldIdFormat ()
 getFieldNameFormat ()
 getFieldId ($field)
 getFieldName ($field)


Detailed Description

Definition at line 27 of file Abstract.php.


Member Function Documentation

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     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:24:02 2009 for Magento by  doxygen 1.5.8