Merge pull request #5758 from yguedidi/migrate-to-new-template-reference-notation

Migrate to new template reference notation
This commit is contained in:
Jérémy Benoist 2022-08-26 16:23:34 +02:00 committed by GitHub
commit 50a941d8b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
81 changed files with 108 additions and 108 deletions

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'menu.left.internal_settings'|trans }}{% endblock %} {% block title %}{{ 'menu.left.internal_settings'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "FOSUserBundle::layout.html.twig" %} {% extends "@FOSUser/layout.html.twig" %}
{% trans_default_domain 'FOSUserBundle' %} {% trans_default_domain 'FOSUserBundle' %}

View file

@ -1,4 +1,4 @@
{% extends "FOSUserBundle::layout.html.twig" %} {% extends "@FOSUser/layout.html.twig" %}
{% trans_default_domain 'FOSUserBundle' %} {% trans_default_domain 'FOSUserBundle' %}

View file

@ -1,4 +1,4 @@
{% extends "FOSUserBundle::layout.html.twig" %} {% extends "@FOSUser/layout.html.twig" %}
{% trans_default_domain 'FOSUserBundle' %} {% trans_default_domain 'FOSUserBundle' %}

View file

@ -1,4 +1,4 @@
{% extends "FOSUserBundle::layout.html.twig" %} {% extends "@FOSUser/layout.html.twig" %}
{% block fos_user_content %} {% block fos_user_content %}
<form action="{{ path('fos_user_security_check') }}" method="post" name="loginform"> <form action="{{ path('fos_user_security_check') }}" method="post" name="loginform">

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'security.login.page_title'|trans }}{% endblock %} {% block title %}{{ 'security.login.page_title'|trans }}{% endblock %}

View file

@ -39,7 +39,7 @@ twig:
debug: "%kernel.debug%" debug: "%kernel.debug%"
strict_variables: "%kernel.debug%" strict_variables: "%kernel.debug%"
form_themes: form_themes:
- "LexikFormFilterBundle:Form:form_div_layout.html.twig" - "@LexikFormFilter/Form/form_div_layout.html.twig"
exception_controller: Wallabag\CoreBundle\Controller\ExceptionController:showAction exception_controller: Wallabag\CoreBundle\Controller\ExceptionController:showAction
globals: globals:
registration_enabled: '%fosuser_registration%' registration_enabled: '%fosuser_registration%'
@ -212,13 +212,13 @@ scheb_two_factor:
google: google:
enabled: "%twofactor_auth%" enabled: "%twofactor_auth%"
issuer: "%server_name%" issuer: "%server_name%"
template: WallabagUserBundle:Authentication:form.html.twig template: "@WallabagUser/Authentication/form.html.twig"
email: email:
enabled: "%twofactor_auth%" enabled: "%twofactor_auth%"
sender_email: "%twofactor_sender%" sender_email: "%twofactor_sender%"
digits: 6 digits: 6
template: WallabagUserBundle:Authentication:form.html.twig template: "@WallabagUser/Authentication/form.html.twig"
mailer: Wallabag\UserBundle\Mailer\AuthCodeMailer mailer: Wallabag\UserBundle\Mailer\AuthCodeMailer
kphoen_rulerz: kphoen_rulerz:

View file

@ -223,7 +223,7 @@ class ConfigController extends Controller
return $this->redirect($this->generateUrl('config') . '#set6'); return $this->redirect($this->generateUrl('config') . '#set6');
} }
return $this->render('WallabagCoreBundle:Config:index.html.twig', [ return $this->render('@WallabagCore/Config/index.html.twig', [
'form' => [ 'form' => [
'config' => $configForm->createView(), 'config' => $configForm->createView(),
'feed' => $feedForm->createView(), 'feed' => $feedForm->createView(),
@ -354,7 +354,7 @@ class ConfigController extends Controller
'flashes.config.notice.otp_enabled' 'flashes.config.notice.otp_enabled'
); );
return $this->render('WallabagCoreBundle:Config:otp_app.html.twig', [ return $this->render('@WallabagCore/Config/otp_app.html.twig', [
'backupCodes' => $backupCodes, 'backupCodes' => $backupCodes,
'qr_code' => $this->get('scheb_two_factor.security.google_authenticator')->getQRContent($user), 'qr_code' => $this->get('scheb_two_factor.security.google_authenticator')->getQRContent($user),
'secret' => $secret, 'secret' => $secret,

View file

@ -133,7 +133,7 @@ class EntryController extends Controller
return $this->showEntries('search', $request, $page); return $this->showEntries('search', $request, $page);
} }
return $this->render('WallabagCoreBundle:Entry:search_form.html.twig', [ return $this->render('@WallabagCore/Entry/search_form.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
'currentRoute' => $currentRoute, 'currentRoute' => $currentRoute,
]); ]);
@ -176,7 +176,7 @@ class EntryController extends Controller
return $this->redirect($this->generateUrl('homepage')); return $this->redirect($this->generateUrl('homepage'));
} }
return $this->render('WallabagCoreBundle:Entry:new_form.html.twig', [ return $this->render('@WallabagCore/Entry/new_form.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
]); ]);
} }
@ -212,7 +212,7 @@ class EntryController extends Controller
*/ */
public function addEntryAction() public function addEntryAction()
{ {
return $this->render('WallabagCoreBundle:Entry:new.html.twig'); return $this->render('@WallabagCore/Entry/new.html.twig');
} }
/** /**
@ -243,7 +243,7 @@ class EntryController extends Controller
return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()])); return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()]));
} }
return $this->render('WallabagCoreBundle:Entry:edit.html.twig', [ return $this->render('@WallabagCore/Entry/edit.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
]); ]);
} }
@ -374,7 +374,7 @@ class EntryController extends Controller
$this->checkUserAction($entry); $this->checkUserAction($entry);
return $this->render( return $this->render(
'WallabagCoreBundle:Entry:entry.html.twig', '@WallabagCore/Entry/entry.html.twig',
['entry' => $entry] ['entry' => $entry]
); );
} }
@ -666,7 +666,7 @@ class EntryController extends Controller
->countUntaggedEntriesByUser($this->getUser()->getId()); ->countUntaggedEntriesByUser($this->getUser()->getId());
return $this->render( return $this->render(
'WallabagCoreBundle:Entry:entries.html.twig', [ '@WallabagCore/Entry/entries.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
'entries' => $entries, 'entries' => $entries,
'currentPage' => $page, 'currentPage' => $page,

View file

@ -20,7 +20,7 @@ class ExceptionController extends BaseExceptionController
// For error pages, try to find a template for the specific HTTP status code and format // For error pages, try to find a template for the specific HTTP status code and format
if (!$showException) { if (!$showException) {
$template = sprintf('WallabagCoreBundle:Exception:%s.%s.twig', $name, $format); $template = sprintf('@WallabagCore/Exception/%s.%s.twig', $name, $format);
if ($this->templateExists($template)) { if ($this->templateExists($template)) {
return $template; return $template;
} }

View file

@ -24,7 +24,7 @@ class IgnoreOriginInstanceRuleController extends Controller
{ {
$rules = $this->get(IgnoreOriginInstanceRuleRepository::class)->findAll(); $rules = $this->get(IgnoreOriginInstanceRuleRepository::class)->findAll();
return $this->render('WallabagCoreBundle:IgnoreOriginInstanceRule:index.html.twig', [ return $this->render('@WallabagCore/IgnoreOriginInstanceRule/index.html.twig', [
'rules' => $rules, 'rules' => $rules,
]); ]);
} }
@ -56,7 +56,7 @@ class IgnoreOriginInstanceRuleController extends Controller
return $this->redirectToRoute('ignore_origin_instance_rules_index'); return $this->redirectToRoute('ignore_origin_instance_rules_index');
} }
return $this->render('WallabagCoreBundle:IgnoreOriginInstanceRule:new.html.twig', [ return $this->render('@WallabagCore/IgnoreOriginInstanceRule/new.html.twig', [
'rule' => $ignoreOriginInstanceRule, 'rule' => $ignoreOriginInstanceRule,
'form' => $form->createView(), 'form' => $form->createView(),
]); ]);
@ -88,7 +88,7 @@ class IgnoreOriginInstanceRuleController extends Controller
return $this->redirectToRoute('ignore_origin_instance_rules_index'); return $this->redirectToRoute('ignore_origin_instance_rules_index');
} }
return $this->render('WallabagCoreBundle:IgnoreOriginInstanceRule:edit.html.twig', [ return $this->render('@WallabagCore/IgnoreOriginInstanceRule/edit.html.twig', [
'rule' => $ignoreOriginInstanceRule, 'rule' => $ignoreOriginInstanceRule,
'edit_form' => $editForm->createView(), 'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(), 'delete_form' => $deleteForm->createView(),

View file

@ -28,7 +28,7 @@ class SiteCredentialController extends Controller
$credentials = $this->get(SiteCredentialRepository::class)->findByUser($this->getUser()); $credentials = $this->get(SiteCredentialRepository::class)->findByUser($this->getUser());
return $this->render('WallabagCoreBundle:SiteCredential:index.html.twig', [ return $this->render('@WallabagCore/SiteCredential/index.html.twig', [
'credentials' => $credentials, 'credentials' => $credentials,
]); ]);
} }
@ -65,7 +65,7 @@ class SiteCredentialController extends Controller
return $this->redirectToRoute('site_credentials_index'); return $this->redirectToRoute('site_credentials_index');
} }
return $this->render('WallabagCoreBundle:SiteCredential:new.html.twig', [ return $this->render('@WallabagCore/SiteCredential/new.html.twig', [
'credential' => $credential, 'credential' => $credential,
'form' => $form->createView(), 'form' => $form->createView(),
]); ]);
@ -104,7 +104,7 @@ class SiteCredentialController extends Controller
return $this->redirectToRoute('site_credentials_index'); return $this->redirectToRoute('site_credentials_index');
} }
return $this->render('WallabagCoreBundle:SiteCredential:edit.html.twig', [ return $this->render('@WallabagCore/SiteCredential/edit.html.twig', [
'credential' => $siteCredential, 'credential' => $siteCredential,
'edit_form' => $editForm->createView(), 'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(), 'delete_form' => $deleteForm->createView(),

View file

@ -49,7 +49,7 @@ class TagController extends Controller
return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()])); return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()]));
} }
return $this->render('WallabagCoreBundle:Tag:new_form.html.twig', [ return $this->render('@WallabagCore/Tag/new_form.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
'entry' => $entry, 'entry' => $entry,
]); ]);
@ -98,7 +98,7 @@ class TagController extends Controller
$renameForms[$tag['id']] = $this->createForm(RenameTagType::class, new Tag())->createView(); $renameForms[$tag['id']] = $this->createForm(RenameTagType::class, new Tag())->createView();
} }
return $this->render('WallabagCoreBundle:Tag:tags.html.twig', [ return $this->render('@WallabagCore/Tag/tags.html.twig', [
'tags' => $tags, 'tags' => $tags,
'renameForms' => $renameForms, 'renameForms' => $renameForms,
'nbEntriesUntagged' => $nbEntriesUntagged, 'nbEntriesUntagged' => $nbEntriesUntagged,
@ -135,7 +135,7 @@ class TagController extends Controller
} }
} }
return $this->render('WallabagCoreBundle:Entry:entries.html.twig', [ return $this->render('@WallabagCore/Entry/entries.html.twig', [
'form' => null, 'form' => null,
'entries' => $entries, 'entries' => $entries,
'currentPage' => $page, 'currentPage' => $page,

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'config.page_title'|trans }}{% endblock %} {% block title %}{{ 'config.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'config.page_title'|trans }} > {{ 'config.otp.page_title'|trans }}{% endblock %} {% block title %}{{ 'config.page_title'|trans }} > {{ 'config.otp.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'entry.edit.page_title'|trans }}{% endblock %} {% block title %}{{ 'entry.edit.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block head %} {% block head %}
{{ parent() }} {{ parent() }}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ entry.title|e|default('entry.default_title'|trans)|raw }} ({{ entry.domainName|removeWww }}){% endblock %} {% block title %}{{ entry.title|e|default('entry.default_title'|trans)|raw }} ({{ entry.domainName|removeWww }}){% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'entry.new.page_title'|trans }}{% endblock %} {% block title %}{{ 'entry.new.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'error.page_title'|trans }}{% endblock %} {% block title %}{{ 'error.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %} {% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %} {% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %} {% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %} {% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %} {% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %} {% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'tag.page_title'|trans }}{% endblock %} {% block title %}{{ 'tag.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::base.html.twig" %} {% extends "@WallabagCore/base.html.twig" %}
{% block css %} {% block css %}
{{ parent() }} {{ parent() }}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'developer.client.page_title'|trans }}{% endblock %} {% block title %}{{ 'developer.client.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'developer.client_parameter.page_title'|trans }}{% endblock %} {% block title %}{{ 'developer.client_parameter.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'developer.howto.page_title'|trans }}{% endblock %} {% block title %}{{ 'developer.howto.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'developer.page_title'|trans }}{% endblock %} {% block title %}{{ 'developer.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'about.page_title'|trans }}{% endblock %} {% block title %}{{ 'about.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'howto.page_title'|trans }}{% endblock %} {% block title %}{{ 'howto.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'quickstart.page_title'|trans }}{% endblock %} {% block title %}{{ 'quickstart.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'config.page_title'|trans }}{% endblock %} {% block title %}{{ 'config.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'config.page_title'|trans }} > {{ 'config.otp.page_title'|trans }}{% endblock %} {% block title %}{{ 'config.page_title'|trans }} > {{ 'config.otp.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'entry.edit.page_title'|trans }}{% endblock %} {% block title %}{{ 'entry.edit.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block head %} {% block head %}
{{ parent() }} {{ parent() }}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ entry.title|striptags|default('entry.default_title'|trans)|raw }} ({{ entry.domainName|removeWww }}){% endblock %} {% block title %}{{ entry.title|striptags|default('entry.default_title'|trans)|raw }} ({{ entry.domainName|removeWww }}){% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'entry.new.page_title'|trans }}{% endblock %} {% block title %}{{ 'entry.new.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'error.page_title'|trans }}{% endblock %} {% block title %}{{ 'error.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %} {% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %} {% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %} {% block title %}{{ 'ignore_origin_instance_rule.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %} {% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %} {% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %} {% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'tag.page_title'|trans }}{% endblock %} {% block title %}{{ 'tag.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::base.html.twig" %} {% extends "@WallabagCore/base.html.twig" %}
{% block css %} {% block css %}
{{ parent() }} {{ parent() }}

View file

@ -37,6 +37,6 @@ class ChromeController extends BrowserController
*/ */
protected function getImportTemplate() protected function getImportTemplate()
{ {
return 'WallabagImportBundle:Chrome:index.html.twig'; return '@WallabagImport/Chrome/index.html.twig';
} }
} }

View file

@ -70,7 +70,7 @@ class DeliciousController extends Controller
); );
} }
return $this->render('WallabagImportBundle:Delicious:index.html.twig', [ return $this->render('@WallabagImport/Delicious/index.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
'import' => $delicious, 'import' => $delicious,
]); ]);

View file

@ -37,6 +37,6 @@ class ElcuratorController extends WallabagController
*/ */
protected function getImportTemplate() protected function getImportTemplate()
{ {
return 'WallabagImportBundle:Elcurator:index.html.twig'; return '@WallabagImport/Elcurator/index.html.twig';
} }
} }

View file

@ -37,6 +37,6 @@ class FirefoxController extends BrowserController
*/ */
protected function getImportTemplate() protected function getImportTemplate()
{ {
return 'WallabagImportBundle:Firefox:index.html.twig'; return '@WallabagImport/Firefox/index.html.twig';
} }
} }

View file

@ -14,7 +14,7 @@ class ImportController extends Controller
*/ */
public function importAction() public function importAction()
{ {
return $this->render('WallabagImportBundle:Import:index.html.twig', [ return $this->render('@WallabagImport/Import/index.html.twig', [
'imports' => $this->get(ImportChain::class)->getAll(), 'imports' => $this->get(ImportChain::class)->getAll(),
]); ]);
} }
@ -31,7 +31,7 @@ class ImportController extends Controller
$rabbitNotInstalled = false; $rabbitNotInstalled = false;
if (!$this->get('security.authorization_checker')->isGranted('ROLE_SUPER_ADMIN')) { if (!$this->get('security.authorization_checker')->isGranted('ROLE_SUPER_ADMIN')) {
return $this->render('WallabagImportBundle:Import:check_queue.html.twig'); return $this->render('@WallabagImport/Import/check_queue.html.twig');
} }
if ($this->get('craue_config')->get('import_with_rabbitmq')) { if ($this->get('craue_config')->get('import_with_rabbitmq')) {
@ -71,7 +71,7 @@ class ImportController extends Controller
} }
} }
return $this->render('WallabagImportBundle:Import:check_queue.html.twig', [ return $this->render('@WallabagImport/Import/check_queue.html.twig', [
'nbRedisMessages' => $nbRedisMessages, 'nbRedisMessages' => $nbRedisMessages,
'nbRabbitMessages' => $nbRabbitMessages, 'nbRabbitMessages' => $nbRabbitMessages,
'redisNotInstalled' => $redisNotInstalled, 'redisNotInstalled' => $redisNotInstalled,

View file

@ -70,7 +70,7 @@ class InstapaperController extends Controller
); );
} }
return $this->render('WallabagImportBundle:Instapaper:index.html.twig', [ return $this->render('@WallabagImport/Instapaper/index.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
'import' => $instapaper, 'import' => $instapaper,
]); ]);

View file

@ -70,7 +70,7 @@ class PinboardController extends Controller
); );
} }
return $this->render('WallabagImportBundle:Pinboard:index.html.twig', [ return $this->render('@WallabagImport/Pinboard/index.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
'import' => $pinboard, 'import' => $pinboard,
]); ]);

View file

@ -24,7 +24,7 @@ class PocketController extends Controller
]) ])
->getForm(); ->getForm();
return $this->render('WallabagImportBundle:Pocket:index.html.twig', [ return $this->render('@WallabagImport/Pocket/index.html.twig', [
'import' => $this->getPocketImportService(), 'import' => $this->getPocketImportService(),
'has_consumer_key' => '' === trim($this->getUser()->getConfig()->getPocketConsumerKey()) ? false : true, 'has_consumer_key' => '' === trim($this->getUser()->getConfig()->getPocketConsumerKey()) ? false : true,
'form' => $form->createView(), 'form' => $form->createView(),

View file

@ -70,7 +70,7 @@ class ReadabilityController extends Controller
); );
} }
return $this->render('WallabagImportBundle:Readability:index.html.twig', [ return $this->render('@WallabagImport/Readability/index.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
'import' => $readability, 'import' => $readability,
]); ]);

View file

@ -37,6 +37,6 @@ class WallabagV1Controller extends WallabagController
*/ */
protected function getImportTemplate() protected function getImportTemplate()
{ {
return 'WallabagImportBundle:WallabagV1:index.html.twig'; return '@WallabagImport/WallabagV1/index.html.twig';
} }
} }

View file

@ -37,6 +37,6 @@ class WallabagV2Controller extends WallabagController
*/ */
protected function getImportTemplate() protected function getImportTemplate()
{ {
return 'WallabagImportBundle:WallabagV2:index.html.twig'; return '@WallabagImport/WallabagV2/index.html.twig';
} }
} }

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.chrome.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.chrome.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
<div class="row"> <div class="row">
<blockquote>{{ import.description|trans|raw }}</blockquote> <blockquote>{{ import.description|trans|raw }}</blockquote>

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.delicious.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.delicious.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
<div class="row"> <div class="row">
<blockquote>{{ import.description|trans }}</blockquote> <blockquote>{{ import.description|trans }}</blockquote>

View file

@ -1,3 +1,3 @@
{% extends "WallabagImportBundle:WallabagV1:index.html.twig" %} {% extends "@WallabagImport/WallabagV1/index.html.twig" %}
{% block title %}{{ 'import.elcurator.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.elcurator.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.firefox.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.firefox.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
<div class="row"> <div class="row">
<blockquote>{{ import.description|trans|raw }}</blockquote> <blockquote>{{ import.description|trans|raw }}</blockquote>

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.page_title'|trans }}{% endblock %}
@ -12,7 +12,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
{{ 'import.page_description'|trans }} {{ 'import.page_description'|trans }}
<ul> <ul>

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.instapaper.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.instapaper.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
<div class="row"> <div class="row">
<blockquote>{{ import.description|trans }}</blockquote> <blockquote>{{ import.description|trans }}</blockquote>

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.pinboard.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.pinboard.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
<div class="row"> <div class="row">
<blockquote>{{ import.description|trans }}</blockquote> <blockquote>{{ import.description|trans }}</blockquote>

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.pocket.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.pocket.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
{% if not has_consumer_key %} {% if not has_consumer_key %}
<div class="card-panel red white-text"> <div class="card-panel red white-text">

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.readability.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.readability.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
<div class="row"> <div class="row">
<blockquote>{{ import.description|trans }}</blockquote> <blockquote>{{ import.description|trans }}</blockquote>

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'import.wallabag_v1.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.wallabag_v1.page_title'|trans }}{% endblock %}
@ -6,7 +6,7 @@
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="card-panel settings"> <div class="card-panel settings">
{% include 'WallabagImportBundle:Import:_information.html.twig' %} {% include '@WallabagImport/Import/_information.html.twig' %}
<div class="row"> <div class="row">
<blockquote>{{ import.description|trans }}</blockquote> <blockquote>{{ import.description|trans }}</blockquote>

View file

@ -1,3 +1,3 @@
{% extends "WallabagImportBundle:WallabagV1:index.html.twig" %} {% extends "@WallabagImport/WallabagV1/index.html.twig" %}
{% block title %}{{ 'import.wallabag_v2.page_title'|trans }}{% endblock %} {% block title %}{{ 'import.wallabag_v2.page_title'|trans }}{% endblock %}

View file

@ -49,7 +49,7 @@ class ManageController extends Controller
return $this->redirectToRoute('user_edit', ['id' => $user->getId()]); return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
} }
return $this->render('WallabagUserBundle:Manage:new.html.twig', [ return $this->render('@WallabagUser/Manage/new.html.twig', [
'user' => $user, 'user' => $user,
'form' => $form->createView(), 'form' => $form->createView(),
]); ]);
@ -94,7 +94,7 @@ class ManageController extends Controller
return $this->redirectToRoute('user_edit', ['id' => $user->getId()]); return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
} }
return $this->render('WallabagUserBundle:Manage:edit.html.twig', [ return $this->render('@WallabagUser/Manage/edit.html.twig', [
'user' => $user, 'user' => $user,
'edit_form' => $form->createView(), 'edit_form' => $form->createView(),
'delete_form' => $deleteForm->createView(), 'delete_form' => $deleteForm->createView(),
@ -162,7 +162,7 @@ class ManageController extends Controller
} }
} }
return $this->render('WallabagUserBundle:Manage:index.html.twig', [ return $this->render('@WallabagUser/Manage/index.html.twig', [
'searchForm' => $form->createView(), 'searchForm' => $form->createView(),
'users' => $pagerFanta, 'users' => $pagerFanta,
]); ]);

View file

@ -77,7 +77,7 @@ class AuthCodeMailer implements AuthCodeMailerInterface
*/ */
public function sendAuthCode(TwoFactorInterface $user): void public function sendAuthCode(TwoFactorInterface $user): void
{ {
$template = $this->twig->loadTemplate('WallabagUserBundle:TwoFactor:email_auth_code.html.twig'); $template = $this->twig->loadTemplate('@WallabagUser/TwoFactor/email_auth_code.html.twig');
$subject = $template->renderBlock('subject', []); $subject = $template->renderBlock('subject', []);
$bodyHtml = $template->renderBlock('body_html', [ $bodyHtml = $template->renderBlock('body_html', [

View file

@ -1,5 +1,5 @@
{# Override `vendor/scheb/two-factor-bundle/Resources/views/Authentication/form.html.twig` #} {# Override `vendor/scheb/two-factor-bundle/Resources/views/Authentication/form.html.twig` #}
{% extends "FOSUserBundle::layout.html.twig" %} {% extends "@FOSUser/layout.html.twig" %}
{% block fos_user_content %} {% block fos_user_content %}
<form class="form" action="{{ path("2fa_login_check") }}" method="post"> <form class="form" action="{{ path("2fa_login_check") }}" method="post">

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'user.page_title'|trans }}{% endblock %} {% block title %}{{ 'user.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'user.page_title'|trans }}{% endblock %} {% block title %}{{ 'user.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'user.page_title'|trans }}{% endblock %} {% block title %}{{ 'user.page_title'|trans }}{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "FOSUserBundle::layout.html.twig" %} {% extends "@FOSUser/layout.html.twig" %}
{% trans_default_domain 'FOSUserBundle' %} {% trans_default_domain 'FOSUserBundle' %}

View file

@ -1,4 +1,4 @@
{% extends "WallabagCoreBundle::layout.html.twig" %} {% extends "@WallabagCore/layout.html.twig" %}
{% block title %}{{ 'user.manage.page_title'|trans }}{% endblock %} {% block title %}{{ 'user.manage.page_title'|trans }}{% endblock %}

View file

@ -29,7 +29,7 @@ class AuthCodeMailerTest extends TestCase
{% block body_text %}text body {{ support_url }}{% endblock %} {% block body_text %}text body {{ support_url }}{% endblock %}
TWIG; TWIG;
$this->twig = new Environment(new ArrayLoader(['WallabagUserBundle:TwoFactor:email_auth_code.html.twig' => $twigTemplate])); $this->twig = new Environment(new ArrayLoader(['@WallabagUser/TwoFactor/email_auth_code.html.twig' => $twigTemplate]));
} }
public function testSendEmail() public function testSendEmail()