This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/qr_code/theme.php

14 lines
295 B
PHP
Raw Normal View History

2010-01-24 10:40:07 +00:00
<?php
class QRImageTheme extends Themelet {
2014-04-28 06:56:58 +00:00
/**
* @param string $link
*/
public function links_block($link) {
global $page;
2010-01-24 10:40:07 +00:00
$page->add_block( new Block(
"QR Code","<img alt='QR Code' src='//chart.apis.google.com/chart?chs=150x150&amp;cht=qr&amp;chl={$link}' />","left",50));
2010-01-24 10:40:07 +00:00
}
}