Viewing file: 066f0982998709c0d4581278b736a35cd35305ad6b84be87dffc37cc4afb5a62.php (6.14 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/new_relation_panel.twig */ class __TwigTemplate_5d41e7c9ad093a16b728b5c422838bc43bdd2e2a5e75cca38faf2d3ade00ac4d 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 "<table id=\"layer_new_relation\" class=\"hide\" width=\"5%\" cellpadding=\"0\" cellspacing=\"0\"> <tbody> <tr> <td class=\"frams1\" width=\"10px\"> </td> <td class=\"frams5\" width=\"99%\" > </td> <td class=\"frams2\" width=\"10px\"> <div class=\"bor\"> </div> </td> </tr> <tr> <td class=\"frams8\"> </td> <td class=\"input_tab\"> <table width=\"168\" class=\"center\" cellpadding=\"2\" cellspacing=\"0\"> <thead> <tr> <td colspan=\"2\" class=\"center nowrap\"> <strong> "; // line 22 echo _gettext("Create relationship"); // line 23 echo " </strong> </td> </tr> </thead> <tbody id=\"foreign_relation\"> <tr> <td colspan=\"2\" class=\"center nowrap\"> <strong> FOREIGN KEY </strong> </td> </tr> <tr> <td width=\"58\" class=\"nowrap\"> on delete </td> <td width=\"102\"> <select name=\"on_delete\" id=\"on_delete\"> <option value=\"nix\" selected=\"selected\"> -- </option> <option value=\"CASCADE\"> CASCADE </option> <option value=\"SET NULL\"> SET NULL </option> <option value=\"NO ACTION\"> NO ACTION </option> <option value=\"RESTRICT\"> RESTRICT </option> </select> </td> </tr> <tr> <td class=\"nowrap\"> on update </td> <td> <select name=\"on_update\" id=\"on_update\"> <option value=\"nix\" selected=\"selected\"> -- </option> <option value=\"CASCADE\"> CASCADE </option> <option value=\"SET NULL\"> SET NULL </option> <option value=\"NO ACTION\"> NO ACTION </option> <option value=\"RESTRICT\"> RESTRICT </option> </select> </td> </tr> </tbody> <tbody> <tr> <td colspan=\"2\" class=\"center nowrap\"> <input type=\"button\" id=\"ok_new_rel_panel\" class=\"butt\" name=\"Button\" value=\""; // line 88 echo _gettext("OK"); echo "\" /> <input type=\"button\" id=\"cancel_new_rel_panel\" class=\"butt\" name=\"Button\" value=\""; // line 90 echo _gettext("Cancel"); echo "\" /> </td> </tr> </tbody> </table> </td> <td class=\"frams6\"> </td> </tr> <tr> <td class=\"frams4\"> <div class=\"bor\"> </div> </td> <td class=\"frams7\"> </td> <td class=\"frams3\"> </td> </tr> </tbody> </table> "; }
public function getTemplateName() { return "database/designer/new_relation_panel.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 134 => 90, 129 => 88, 62 => 23, 60 => 22, 37 => 1,); }
public function getSourceContext() { return new Source("", "database/designer/new_relation_panel.twig", "/usr/share/phpmyadmin/templates/database/designer/new_relation_panel.twig"); } }
|