Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->_convertTable['Ä'] = 'ae';
     $this->_convertTable['ä'] = 'ae';
     $this->_convertTable['Ö'] = 'oe';
     $this->_convertTable['ö'] = 'oe';
     $this->_convertTable['Ü'] = 'ue';
     $this->_convertTable['ü'] = 'ue';
 }
 public function __construct()
 {
     parent::__construct();
     $this->_convertTable['ä'] = 'ae';
     $this->_convertTable['Ä'] = 'Ae';
     $this->_convertTable['ö'] = 'oe';
     $this->_convertTable['Ö'] = 'Oe';
     $this->_convertTable['ü'] = 'ue';
     $this->_convertTable['Ü'] = 'Ue';
     $this->_convertTable['ß'] = 'ss';
     $this->_convertTable['/'] = '_';
     $this->_convertTable['-'] = '_';
     $this->_convertTable['"'] = '_';
     $this->_convertTable['&'] = '_';
     $this->_convertTable[' '] = '_';
     $this->_convertTable['('] = '_';
     $this->_convertTable[')'] = '_';
     $this->_convertTable['='] = '_';
 }
Example #3
0
 public function testFormat()
 {
     $this->assertEquals('TM', $this->_helper->format('™'));
 }