<?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;
/* Entry/school_certification.twig */
class __TwigTemplate_d80ac9515890670e3e304d88eb93f3eb extends \Eccube\Twig\Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'javascript' => [$this, 'block_javascript'],
'stylesheet' => [$this, 'block_stylesheet'],
'main' => [$this, 'block_main'],
];
$this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension');
$this->checkSecurity();
}
protected function doGetParent(array $context)
{
// line 22
return "default_frame.twig";
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Entry/school_certification.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Entry/school_certification.twig"));
// line 24
$context["body_class"] = "registration_page";
// line 22
$this->parent = $this->loadTemplate("default_frame.twig", "Entry/school_certification.twig", 22);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
}
// line 26
public function block_javascript($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascript"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascript"));
// line 27
echo " <script>
";
// line 28
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable((isset($context["Schools"]) || array_key_exists("Schools", $context) ? $context["Schools"] : (function () { throw new RuntimeError('Variable "Schools" does not exist.', 28, $this->source); })()));
foreach ($context['_seq'] as $context["_key"] => $context["school"]) {
// line 29
echo " \$('#School option[value=\"";
echo twig_escape_filter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, $context["school"], "school_id", [], "any", false, false, true, 29), 29, $this->source), "html", null, true);
echo "\"]').attr('data-key-visible', ";
echo ((twig_get_attribute($this->env, $this->source, $context["school"], "visible_school_key", [], "any", false, false, true, 29)) ? (1) : (0));
echo ");
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['school'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 31
echo " \$('#School').change(function(){
if(\$('option:selected', \$(this)).data('key-visible')) {
\$('#top_box__name').show();
}
else {
\$('#top_box__name').hide();
}
});
\$('#top_box__body').submit(function(){
\$('#top_box__name .form-group .error').remove();
if(\$('#top_box__name').is(\":visible\") && !\$('#school_key').val()) {
\$('#top_box__name .form-group').append('<p class=\"red error\">入力してください</p>');
return false;
}
});
// パスワード表示/非表示を切り替える関数
function togglePasswordVisibility(event) {
const parent = \$(event.target).closest('.password-wrap');
const eyeSlash = parent.find('.eye-slash-solid');
const eye = parent.find('.eye-solid');
const passwordInput = parent.find('.password-input');
// 表示/非表示を切り替える処理
eyeSlash.toggle();
eye.toggle();
passwordInput.attr('type', passwordInput.attr('type') === 'password' ? 'text' : 'password');
}
// イベントリスナーの設定
\$('.eye-slash-solid, .eye-solid').on('click', togglePasswordVisibility);
\$('.eye-solid').click();
</script>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
}
// line 67
public function block_stylesheet($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheet"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheet"));
// line 68
echo "<style>
.input_School select{
width: 48% !important;
}
.password-wrap {
position: relative;
}
.password-wrap img {
position: absolute;
top: 50%;
right: 16px;
transform: translateY(-50%);
width: 15px;
}
.input_School select,
input#school_key{
\twidth: 100% !important;
\t}
a.forgot{
\tcolor: #007EBE;
\ttext-decoration: underline;
\tfont-size:90%;
\ttext-align:center;
}
@media only screen and (min-width: 768px){
.input_School select,
input#school_key{
\twidth: 55% !important;
\t}
.password-wrap img {
\tright: 48%;
\t}
}
</style>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
}
// line 104
public function block_main($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "main"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "main"));
// line 105
echo "<h1 class=\"title_bar nikke\">学校情報認証</h1>
<div id=\"top_wrap\" class=\"container-fluid\">
<div id=\"top_box\" class=\"row\">
<div id=\"top_box__body\" class=\"col-md-10 col-md-offset-1\">
";
// line 110
if (((null === (isset($context["School"]) || array_key_exists("School", $context) ? $context["School"] : (function () { throw new RuntimeError('Variable "School" does not exist.', 110, $this->source); })())) || twig_get_attribute($this->env, $this->source, (isset($context["School"]) || array_key_exists("School", $context) ? $context["School"] : (function () { throw new RuntimeError('Variable "School" does not exist.', 110, $this->source); })()), "visible", [], "any", false, false, true, 110))) {
// line 111
echo " ";
if ((isset($context["school_not_found"]) || array_key_exists("school_not_found", $context) ? $context["school_not_found"] : (function () { throw new RuntimeError('Variable "school_not_found" does not exist.', 111, $this->source); })())) {
// line 112
echo " <p>※ 学校コードに該当していないので、ご確認お願い致します。</p>
";
} else {
// line 114
echo " <form method=\"post\" action=\"";
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("entry", ["gcd" => (isset($context["gcd"]) || array_key_exists("gcd", $context) ? $context["gcd"] : (function () { throw new RuntimeError('Variable "gcd" does not exist.', 114, $this->source); })())]), "html", null, true);
echo "\">
";
// line 116
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 116, $this->source); })()), "_token", [], "any", false, false, true, 116), 116, $this->source), 'widget');
echo "
<div id=\"top_box__body_inner\" class=\"dl_table\">
";
// line 118
if ((null === (isset($context["School"]) || array_key_exists("School", $context) ? $context["School"] : (function () { throw new RuntimeError('Variable "School" does not exist.', 118, $this->source); })()))) {
// line 119
echo " <dl id=\"top_box__School\" class=\"entrybox_select_input\">
<dt>";
// line 120
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 120, $this->source); })()), "School", [], "any", false, false, true, 120), 120, $this->source), 'label');
echo "</dt>
<dd class=\"form-group input_School\">
";
// line 122
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 122, $this->source); })()), "School", [], "any", false, false, true, 122), 122, $this->source), 'widget');
echo "
";
// line 123
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 123, $this->source); })()), "School", [], "any", false, false, true, 123), 123, $this->source), 'errors');
echo "
</dd>
</dl>
";
} else {
// line 127
echo " <dl id=\"top_box__kana\">
<dt></dt>
<dd class=\"form-group input_name\">
";
// line 130
echo twig_escape_filter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["School"]) || array_key_exists("School", $context) ? $context["School"] : (function () { throw new RuntimeError('Variable "School" does not exist.', 130, $this->source); })()), "school_name", [], "any", false, false, true, 130), 130, $this->source), "html", null, true);
echo "
</dd>
</dl>
";
}
// line 134
echo " ";
if (((isset($context["School"]) || array_key_exists("School", $context) ? $context["School"] : (function () { throw new RuntimeError('Variable "School" does not exist.', 134, $this->source); })()) && (twig_get_attribute($this->env, $this->source, (isset($context["School"]) || array_key_exists("School", $context) ? $context["School"] : (function () { throw new RuntimeError('Variable "School" does not exist.', 134, $this->source); })()), "visible_school_key", [], "any", false, false, true, 134) != 1))) {
// line 135
echo " <div style=\"display:none\">
";
// line 136
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 136, $this->source); })()), "school_key", [], "any", false, false, true, 136), 136, $this->source), 'widget', ["attr" => ["value" => twig_get_attribute($this->env, $this->source, (isset($context["School"]) || array_key_exists("School", $context) ? $context["School"] : (function () { throw new RuntimeError('Variable "School" does not exist.', 136, $this->source); })()), "school_key", [], "any", false, false, true, 136)]]);
echo "
";
// line 137
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 137, $this->source); })()), "school_key", [], "any", false, false, true, 137), 137, $this->source), 'errors');
echo "
</div>
";
} else {
// line 140
echo " <dl id=\"top_box__name\" class=\"entrybox_select_input\">
<dt><label>学校キー</label></dt>
<dd class=\"form-group password-wrap\">
";
// line 143
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 143, $this->source); })()), "school_key", [], "any", false, false, true, 143), 143, $this->source), 'widget', ["attr" => ["class" => "password-input"]]);
echo "
";
// line 144
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, (isset($context["form"]) || array_key_exists("form", $context) ? $context["form"] : (function () { throw new RuntimeError('Variable "form" does not exist.', 144, $this->source); })()), "school_key", [], "any", false, false, true, 144), 144, $this->source), 'errors');
echo "
<img class=\"eye-slash-solid\" src=\"";
// line 145
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("assets/icon/eye-slash-solid.svg"), "html", null, true);
echo "\">
<img class=\"eye-solid\" src=\"";
// line 146
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("assets/icon/eye-solid.svg"), "html", null, true);
echo "\" style=\"display: none;\">
";
// line 147
if (((isset($context["certification_error_flg"]) || array_key_exists("certification_error_flg", $context) ? $context["certification_error_flg"] : (function () { throw new RuntimeError('Variable "certification_error_flg" does not exist.', 147, $this->source); })()) == 1)) {
// line 148
echo " <span>※認証に失敗しました。</span>
";
}
// line 150
echo " </dd>
</dl>
";
}
// line 153
echo " <input id=\"top_box__hidden_mode\" type=\"hidden\" name=\"mode\" value=\"certify\">
</div>
<div id=\"top_box__footer\" class=\"row no-padding\">
<div id=\"top_box__button_menu\" class=\"btn_group col-sm-offset-4 col-sm-4\">
<p>
<button type=\"submit\" class=\"btn btn-primary btn-block def_btn ya radius1\">生徒情報の登録へ</button>
</p>
\t\t\t\t<p>
\t\t\t\t\t<a class=\"def_btn ya radius1 color05\" href=\"";
// line 162
echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("mypage_login");
echo "\">会員登録済みの方はこちら</a>
\t\t\t\t</p>
</div>
</div>
</form>
";
}
// line 168
echo " ";
} else {
// line 169
echo " <p style=\"text-align: center\">この学校URLは現在非公開となっています。</p>
";
}
// line 171
echo " </div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
}
public function getTemplateName()
{
return "Entry/school_certification.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 336 => 171, 332 => 169, 329 => 168, 320 => 162, 309 => 153, 304 => 150, 300 => 148, 298 => 147, 294 => 146, 290 => 145, 286 => 144, 282 => 143, 277 => 140, 271 => 137, 267 => 136, 264 => 135, 261 => 134, 254 => 130, 249 => 127, 242 => 123, 238 => 122, 233 => 120, 230 => 119, 228 => 118, 223 => 116, 217 => 114, 213 => 112, 210 => 111, 208 => 110, 201 => 105, 191 => 104, 147 => 68, 137 => 67, 93 => 31, 82 => 29, 78 => 28, 75 => 27, 65 => 26, 54 => 22, 52 => 24, 39 => 22,);
}
public function getSourceContext()
{
return new Source("{#
This file is part of EC-CUBE
Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
http://www.lockon.co.jp/
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#}
{% extends 'default_frame.twig' %}
{% set body_class = 'registration_page' %}
{% block javascript %}
<script>
{% for school in Schools %}
\$('#School option[value=\"{{ school.school_id }}\"]').attr('data-key-visible', {{ school.visible_school_key ? 1 : 0 }});
{% endfor %}
\$('#School').change(function(){
if(\$('option:selected', \$(this)).data('key-visible')) {
\$('#top_box__name').show();
}
else {
\$('#top_box__name').hide();
}
});
\$('#top_box__body').submit(function(){
\$('#top_box__name .form-group .error').remove();
if(\$('#top_box__name').is(\":visible\") && !\$('#school_key').val()) {
\$('#top_box__name .form-group').append('<p class=\"red error\">入力してください</p>');
return false;
}
});
// パスワード表示/非表示を切り替える関数
function togglePasswordVisibility(event) {
const parent = \$(event.target).closest('.password-wrap');
const eyeSlash = parent.find('.eye-slash-solid');
const eye = parent.find('.eye-solid');
const passwordInput = parent.find('.password-input');
// 表示/非表示を切り替える処理
eyeSlash.toggle();
eye.toggle();
passwordInput.attr('type', passwordInput.attr('type') === 'password' ? 'text' : 'password');
}
// イベントリスナーの設定
\$('.eye-slash-solid, .eye-solid').on('click', togglePasswordVisibility);
\$('.eye-solid').click();
</script>
{% endblock javascript %}
{% block stylesheet %}
<style>
.input_School select{
width: 48% !important;
}
.password-wrap {
position: relative;
}
.password-wrap img {
position: absolute;
top: 50%;
right: 16px;
transform: translateY(-50%);
width: 15px;
}
.input_School select,
input#school_key{
\twidth: 100% !important;
\t}
a.forgot{
\tcolor: #007EBE;
\ttext-decoration: underline;
\tfont-size:90%;
\ttext-align:center;
}
@media only screen and (min-width: 768px){
.input_School select,
input#school_key{
\twidth: 55% !important;
\t}
.password-wrap img {
\tright: 48%;
\t}
}
</style>
{% endblock stylesheet %}
{% block main %}
<h1 class=\"title_bar nikke\">学校情報認証</h1>
<div id=\"top_wrap\" class=\"container-fluid\">
<div id=\"top_box\" class=\"row\">
<div id=\"top_box__body\" class=\"col-md-10 col-md-offset-1\">
{% if School is null or School.visible %}
{% if school_not_found %}
<p>※ 学校コードに該当していないので、ご確認お願い致します。</p>
{% else %}
<form method=\"post\" action=\"{{ url('entry', { gcd : gcd }) }}\">
{{ form_widget(form._token) }}
<div id=\"top_box__body_inner\" class=\"dl_table\">
{% if School is null %}
<dl id=\"top_box__School\" class=\"entrybox_select_input\">
<dt>{{ form_label(form.School) }}</dt>
<dd class=\"form-group input_School\">
{{ form_widget(form.School) }}
{{ form_errors(form.School) }}
</dd>
</dl>
{% else %}
<dl id=\"top_box__kana\">
<dt></dt>
<dd class=\"form-group input_name\">
{{ School.school_name }}
</dd>
</dl>
{% endif %}
{% if School and School.visible_school_key != 1 %}
<div style=\"display:none\">
{{ form_widget(form.school_key, {'attr': {'value': School.school_key}}) }}
{{ form_errors(form.school_key) }}
</div>
{% else %}
<dl id=\"top_box__name\" class=\"entrybox_select_input\">
<dt><label>学校キー</label></dt>
<dd class=\"form-group password-wrap\">
{{ form_widget(form.school_key, {attr : {class : 'password-input'}}) }}
{{ form_errors(form.school_key) }}
<img class=\"eye-slash-solid\" src=\"{{ asset('assets/icon/eye-slash-solid.svg') }}\">
<img class=\"eye-solid\" src=\"{{ asset('assets/icon/eye-solid.svg') }}\" style=\"display: none;\">
{% if certification_error_flg == 1 %}
<span>※認証に失敗しました。</span>
{% endif %}
</dd>
</dl>
{% endif %}
<input id=\"top_box__hidden_mode\" type=\"hidden\" name=\"mode\" value=\"certify\">
</div>
<div id=\"top_box__footer\" class=\"row no-padding\">
<div id=\"top_box__button_menu\" class=\"btn_group col-sm-offset-4 col-sm-4\">
<p>
<button type=\"submit\" class=\"btn btn-primary btn-block def_btn ya radius1\">生徒情報の登録へ</button>
</p>
\t\t\t\t<p>
\t\t\t\t\t<a class=\"def_btn ya radius1 color05\" href=\"{{ url('mypage_login') }}\">会員登録済みの方はこちら</a>
\t\t\t\t</p>
</div>
</div>
</form>
{% endif %}
{% else %}
<p style=\"text-align: center\">この学校URLは現在非公開となっています。</p>
{% endif %}
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
{% endblock %}", "Entry/school_certification.twig", "/home/nmmito01/mu-ecshop.com/public_html/app/template/unishop/Entry/school_certification.twig");
}
public function checkSecurity()
{
static $tags = array("set" => 24, "for" => 28, "if" => 110);
static $filters = array("escape" => 29);
static $functions = array("url" => 114, "form_widget" => 116, "form_label" => 120, "form_errors" => 123, "asset" => 145);
try {
$this->sandbox->checkSecurity(
['set', 'for', 'if'],
['escape'],
['url', 'form_widget', 'form_label', 'form_errors', 'asset']
);
} catch (SecurityError $e) {
$e->setSourceContext($this->source);
if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
$e->setTemplateLine($tags[$e->getTagName()]);
} elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
$e->setTemplateLine($filters[$e->getFilterName()]);
} elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
$e->setTemplateLine($functions[$e->getFunctionName()]);
}
throw $e;
}
}
}