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
2014-04-28 02:56:58 -04:00

12 lines
299 B
PHP

<?php
class QRImageTheme extends Themelet {
/**
* @param string $link
*/
public function links_block($link) {
global $page;
$page->add_block( new Block(
"QR Code","<img alt='QR Code' src='http://chart.apis.google.com/chart?chs=150x150&amp;cht=qr&amp;chl={$link}' />","left",50));
}
}