Example #1
0
 public static function getStoreCategeories()
 {
     $categories = array();
     foreach (self::$_store_categories as $key => $category) {
         $category_name = parent::_($category);
         $categories[$category_name] = new Core_Model_Default(array('id' => $key, 'name' => parent::_($category_name)));
     }
     ksort($categories);
     return $categories;
 }
Example #2
0
 public static function getMessageCardIsLocked()
 {
     return parent::_('We are sorry, your card is temporarily blocked');
 }