widget_currency.php 557 B

1234567891011121314151617181920212223
  1. <?php
  2. class widget_currency extends TaskbarWidget {
  3. public function render() {
  4. $result = '';
  5. $script = '
  6. <div style="text-align:center;background-color:#A8A8A8;width:100%;font-size:13px;font-weight:bold;height:18px;padding-top:2px;">
  7. Currency Converter
  8. </div>
  9. <script type="text/javascript" src="//www.exchangeratewidget.com/converter.php?l=ru&f=USD&t=UAH&a=1&d=E8E8E8&n=FFFFFF&o=000000&v=1"></script>
  10. ';
  11. $result.=$this->widgetContainer($script, 'style="width:256px; height:256px;"');
  12. return ($result);
  13. }
  14. }
  15. ?>