/** @page commonglobalparams How to get some common global parameters
  1. Current URL address:
  2. In the php code: @code ewConfig::getInstance()->getShopUrl() @endcode In the smarty templates: @code $shop->selflink @endcode
  3. Current Language:
  4. @code oxLang::getInstance()->getLanguageAbbr($oOrder->getOrderLanguage()) @endcode
  5. Add String to translated:
  6. In the php code: @code Zend_Registry::get('Zend_Translate')->translate('string'); @endcode In the smarty templates: @code [{ t ident="string" }] @endcode
*/