for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class QRMarkupHTML
*
* @created 06.06.2022
* @author smiley <[email protected]>
* @copyright 2022 smiley
* @license MIT
*/
namespace chillerlan\QRCode\Output;
use function sprintf;
* HTML output
class QRMarkupHTML extends QRMarkup{
* @inheritDoc
protected function createMarkup(bool $saveToFile):string{
$html = empty($this->options->cssClass)
? '<div>'
: sprintf('<div class="%s">', $this->getCssClass(0)); // @todo $M_TYPE
$html .= $this->options->eol;
for($y = 0; $y < $this->moduleCount; $y++){
$html .= '<div>';
for($x = 0; $x < $this->moduleCount; $x++){
$html .= sprintf('<span style="background: %s;"></span>', $this->getModuleValueAt($x, $y));
}
$html .= '</div>'.$this->options->eol;
// wrap the snippet into a body when saving to file
if($saveToFile){
$html = sprintf(
'<!DOCTYPE html><html lang=""><head><meta charset="UTF-8"><title>QR Code</title></head><body>%s</body></html>',
$this->options->eol.$html
);
return $html;