Example #1
0
 /**
  * Load data container and create template
  * @param   object
  */
 public function __construct($objModule)
 {
     parent::__construct($objModule);
     \System::loadLanguageFile(\Isotope\Model\Address::getTable());
     $this->loadDataContainer(\Isotope\Model\Address::getTable());
     $this->Template = new \Isotope\Template('iso_checkout_address');
 }
 /**
  * Return short name of current class (e.g. for CSS)
  * @return string
  */
 public function getStepClass()
 {
     $strClass = get_parent_class($this);
     $strClass = substr($strClass, strrpos($strClass, '\\') + 1);
     return parent::getStepClass() . ' ' . standardize($strClass);
 }