Viewing file: 7f79d616e5204021a4d3aad0bba736979cd7aff94cb744adb203abeac4f580db.php (1.36 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template;
/* database/designer/canvas.twig */ class __TwigTemplate_6710607a2a8bbdd8b853ebe039a888254be63c9a77f59770e0e385bcadf5a7cd extends \Twig\Template { private $source; private $macros = [];
public function __construct(Environment $env) { parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [ ]; }
protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 echo "<div id=\"osn_tab\"> <canvas class=\"designer\" id=\"canvas\" width=\"100\" height=\"100\"></canvas> </div> "; }
public function getTemplateName() { return "database/designer/canvas.twig"; }
public function getDebugInfo() { return array ( 37 => 1,); }
public function getSourceContext() { return new Source("", "database/designer/canvas.twig", "/usr/share/phpmyadmin/templates/database/designer/canvas.twig"); } }
|