Exemplo n.º 1
0
 /**
  *
  * @return array
  */
 protected function _loadCollection()
 {
     $ret = array();
     foreach (Axis_Payment::getMethods() as $methodCode => $method) {
         $ret[$methodCode] = $method->getTitle();
     }
     return $ret;
 }
Exemplo n.º 2
0
 /**
  *
  * @static
  * @return array
  */
 public static function collect()
 {
     $ret = array();
     foreach (Axis_Payment::getMethods() as $methodCode => $method) {
         $ret[$methodCode] = $method->getTitle();
     }
     return $ret;
 }