Move templates

This commit is contained in:
Yassine Guedidi 2024-02-19 00:03:14 +01:00
parent 3c1a183e2d
commit 664b4baa3e
90 changed files with 119 additions and 118 deletions

View file

@ -43,6 +43,7 @@ framework:
# Twig Configuration
twig:
default_path: '%kernel.project_dir%/templates'
debug: "%kernel.debug%"
strict_variables: "%kernel.debug%"
form_themes:
@ -198,13 +199,13 @@ scheb_two_factor:
google:
enabled: true
issuer: "%server_name%"
template: "@WallabagCore/Authentication/form.html.twig"
template: "Authentication/form.html.twig"
email:
enabled: true
sender_email: "%twofactor_sender%"
digits: 6
template: "@WallabagCore/Authentication/form.html.twig"
template: "Authentication/form.html.twig"
mailer: Wallabag\CoreBundle\Mailer\AuthCodeMailer
rulerz:

View file

@ -26,7 +26,7 @@ class DeveloperController extends AbstractController
{
$clients = $repo->findByUser($this->getUser()->getId());
return $this->render('@WallabagCore/Developer/index.html.twig', [
return $this->render('Developer/index.html.twig', [
'clients' => $clients,
]);
}
@ -54,14 +54,14 @@ class DeveloperController extends AbstractController
$translator->trans('flashes.developer.notice.client_created', ['%name%' => $client->getName()])
);
return $this->render('@WallabagCore/Developer/client_parameters.html.twig', [
return $this->render('Developer/client_parameters.html.twig', [
'client_id' => $client->getPublicId(),
'client_secret' => $client->getSecret(),
'client_name' => $client->getName(),
]);
}
return $this->render('@WallabagCore/Developer/client.html.twig', [
return $this->render('Developer/client.html.twig', [
'form' => $clientForm->createView(),
]);
}
@ -103,7 +103,7 @@ class DeveloperController extends AbstractController
*/
public function howtoFirstAppAction()
{
return $this->render('@WallabagCore/Developer/howto_app.html.twig', [
return $this->render('Developer/howto_app.html.twig', [
'wallabag_url' => $this->getParameter('domain_name'),
]);
}

View file

@ -243,7 +243,7 @@ class ConfigController extends AbstractController
return $this->redirect($this->generateUrl('config') . '#set6');
}
return $this->render('@WallabagCore/Config/index.html.twig', [
return $this->render('Config/index.html.twig', [
'form' => [
'config' => $configForm->createView(),
'feed' => $feedForm->createView(),
@ -373,7 +373,7 @@ class ConfigController extends AbstractController
'flashes.config.notice.otp_enabled'
);
return $this->render('@WallabagCore/Config/otp_app.html.twig', [
return $this->render('Config/otp_app.html.twig', [
'backupCodes' => $backupCodes,
'qr_code' => $googleAuthenticator->getQRContent($user),
'secret' => $secret,

View file

@ -156,7 +156,7 @@ class EntryController extends AbstractController
return $this->showEntries('search', $request, $page);
}
return $this->render('@WallabagCore/Entry/search_form.html.twig', [
return $this->render('Entry/search_form.html.twig', [
'form' => $form->createView(),
'currentRoute' => $currentRoute,
]);
@ -198,7 +198,7 @@ class EntryController extends AbstractController
return $this->redirect($this->generateUrl('homepage'));
}
return $this->render('@WallabagCore/Entry/new_form.html.twig', [
return $this->render('Entry/new_form.html.twig', [
'form' => $form->createView(),
]);
}
@ -233,7 +233,7 @@ class EntryController extends AbstractController
*/
public function addEntryAction()
{
return $this->render('@WallabagCore/Entry/new.html.twig');
return $this->render('Entry/new.html.twig');
}
/**
@ -263,7 +263,7 @@ class EntryController extends AbstractController
return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()]));
}
return $this->render('@WallabagCore/Entry/edit.html.twig', [
return $this->render('Entry/edit.html.twig', [
'form' => $form->createView(),
]);
}
@ -390,7 +390,7 @@ class EntryController extends AbstractController
$this->checkUserAction($entry);
return $this->render(
'@WallabagCore/Entry/entry.html.twig',
'Entry/entry.html.twig',
['entry' => $entry]
);
}
@ -581,7 +581,7 @@ class EntryController extends AbstractController
}
return $this->render(
'@WallabagCore/Entry/share.html.twig',
'Entry/share.html.twig',
['entry' => $entry]
);
}
@ -671,7 +671,7 @@ class EntryController extends AbstractController
}
return $this->render(
'@WallabagCore/Entry/entries.html.twig', [
'Entry/entries.html.twig', [
'form' => $form->createView(),
'entries' => $entries,
'currentPage' => $page,

View file

@ -144,7 +144,7 @@ class FeedController extends AbstractController
}
return $this->render(
'@WallabagCore/Entry/entries.xml.twig',
'Entry/entries.xml.twig',
[
'type' => 'tag',
'url' => $url,
@ -226,7 +226,7 @@ class FeedController extends AbstractController
}
}
return $this->render('@WallabagCore/Entry/entries.xml.twig', [
return $this->render('Entry/entries.xml.twig', [
'type' => $type,
'url' => $url,
'entries' => $entries,

View file

@ -39,7 +39,7 @@ class IgnoreOriginInstanceRuleController extends AbstractController
{
$rules = $repository->findAll();
return $this->render('@WallabagCore/IgnoreOriginInstanceRule/index.html.twig', [
return $this->render('IgnoreOriginInstanceRule/index.html.twig', [
'rules' => $rules,
]);
}
@ -70,7 +70,7 @@ class IgnoreOriginInstanceRuleController extends AbstractController
return $this->redirectToRoute('ignore_origin_instance_rules_index');
}
return $this->render('@WallabagCore/IgnoreOriginInstanceRule/new.html.twig', [
return $this->render('IgnoreOriginInstanceRule/new.html.twig', [
'rule' => $ignoreOriginInstanceRule,
'form' => $form->createView(),
]);
@ -101,7 +101,7 @@ class IgnoreOriginInstanceRuleController extends AbstractController
return $this->redirectToRoute('ignore_origin_instance_rules_index');
}
return $this->render('@WallabagCore/IgnoreOriginInstanceRule/edit.html.twig', [
return $this->render('IgnoreOriginInstanceRule/edit.html.twig', [
'rule' => $ignoreOriginInstanceRule,
'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(),

View file

@ -46,6 +46,6 @@ class ChromeController extends BrowserController
protected function getImportTemplate()
{
return '@WallabagCore/Import/Chrome/index.html.twig';
return 'Import/Chrome/index.html.twig';
}
}

View file

@ -76,7 +76,7 @@ class DeliciousController extends AbstractController
$this->addFlash('notice', 'flashes.import.notice.failed_on_file');
}
return $this->render('@WallabagCore/Import/Delicious/index.html.twig', [
return $this->render('Import/Delicious/index.html.twig', [
'form' => $form->createView(),
'import' => $delicious,
]);

View file

@ -46,6 +46,6 @@ class ElcuratorController extends WallabagController
protected function getImportTemplate()
{
return '@WallabagCore/Import/Elcurator/index.html.twig';
return 'Import/Elcurator/index.html.twig';
}
}

View file

@ -46,6 +46,6 @@ class FirefoxController extends BrowserController
protected function getImportTemplate()
{
return '@WallabagCore/Import/Firefox/index.html.twig';
return 'Import/Firefox/index.html.twig';
}
}

View file

@ -24,7 +24,7 @@ class ImportController extends AbstractController
*/
public function importAction(ImportChain $importChain)
{
return $this->render('@WallabagCore/Import/index.html.twig', [
return $this->render('Import/index.html.twig', [
'imports' => $importChain->getAll(),
]);
}
@ -41,7 +41,7 @@ class ImportController extends AbstractController
$rabbitNotInstalled = false;
if (!$authorizationChecker->isGranted('ROLE_SUPER_ADMIN')) {
return $this->render('@WallabagCore/Import/check_queue.html.twig');
return $this->render('Import/check_queue.html.twig');
}
if ($craueConfig->get('import_with_rabbitmq')) {
@ -85,7 +85,7 @@ class ImportController extends AbstractController
}
}
return $this->render('@WallabagCore/Import/check_queue.html.twig', [
return $this->render('Import/check_queue.html.twig', [
'nbRedisMessages' => $nbRedisMessages,
'nbRabbitMessages' => $nbRabbitMessages,
'redisNotInstalled' => $redisNotInstalled,

View file

@ -76,7 +76,7 @@ class InstapaperController extends AbstractController
$this->addFlash('notice', 'flashes.import.notice.failed_on_file');
}
return $this->render('@WallabagCore/Import/Instapaper/index.html.twig', [
return $this->render('Import/Instapaper/index.html.twig', [
'form' => $form->createView(),
'import' => $instapaper,
]);

View file

@ -76,7 +76,7 @@ class PinboardController extends AbstractController
$this->addFlash('notice', 'flashes.import.notice.failed_on_file');
}
return $this->render('@WallabagCore/Import/Pinboard/index.html.twig', [
return $this->render('Import/Pinboard/index.html.twig', [
'form' => $form->createView(),
'import' => $pinboard,
]);

View file

@ -43,7 +43,7 @@ class PocketController extends AbstractController
])
->getForm();
return $this->render('@WallabagCore/Import/Pocket/index.html.twig', [
return $this->render('Import/Pocket/index.html.twig', [
'import' => $pocket,
'has_consumer_key' => '' === trim($this->getUser()->getConfig()->getPocketConsumerKey()) ? false : true,
'form' => $form->createView(),

View file

@ -46,6 +46,6 @@ class PocketHtmlController extends HtmlController
protected function getImportTemplate()
{
return '@WallabagCore/Import/PocketHtml/index.html.twig';
return 'Import/PocketHtml/index.html.twig';
}
}

View file

@ -76,7 +76,7 @@ class ReadabilityController extends AbstractController
$this->addFlash('notice', 'flashes.import.notice.failed_on_file');
}
return $this->render('@WallabagCore/Import/Readability/index.html.twig', [
return $this->render('Import/Readability/index.html.twig', [
'form' => $form->createView(),
'import' => $readability,
]);

View file

@ -46,6 +46,6 @@ class ShaarliController extends HtmlController
protected function getImportTemplate()
{
return '@WallabagCore/Import/Shaarli/index.html.twig';
return 'Import/Shaarli/index.html.twig';
}
}

View file

@ -46,6 +46,6 @@ class WallabagV1Controller extends WallabagController
protected function getImportTemplate()
{
return '@WallabagCore/Import/WallabagV1/index.html.twig';
return 'Import/WallabagV1/index.html.twig';
}
}

View file

@ -46,6 +46,6 @@ class WallabagV2Controller extends WallabagController
protected function getImportTemplate()
{
return '@WallabagCore/Import/WallabagV2/index.html.twig';
return 'Import/WallabagV2/index.html.twig';
}
}

View file

@ -48,7 +48,7 @@ class SiteCredentialController extends AbstractController
$credentials = $repository->findByUser($this->getUser());
return $this->render('@WallabagCore/SiteCredential/index.html.twig', [
return $this->render('SiteCredential/index.html.twig', [
'credentials' => $credentials,
]);
}
@ -84,7 +84,7 @@ class SiteCredentialController extends AbstractController
return $this->redirectToRoute('site_credentials_index');
}
return $this->render('@WallabagCore/SiteCredential/new.html.twig', [
return $this->render('SiteCredential/new.html.twig', [
'credential' => $credential,
'form' => $form->createView(),
]);
@ -122,7 +122,7 @@ class SiteCredentialController extends AbstractController
return $this->redirectToRoute('site_credentials_index');
}
return $this->render('@WallabagCore/SiteCredential/edit.html.twig', [
return $this->render('SiteCredential/edit.html.twig', [
'credential' => $siteCredential,
'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(),

View file

@ -14,7 +14,7 @@ class StaticController extends AbstractController
$addonsUrl = $this->getParameter('addons_url');
return $this->render(
'@WallabagCore/Static/howto.html.twig',
'Static/howto.html.twig',
[
'addonsUrl' => $addonsUrl,
]
@ -27,7 +27,7 @@ class StaticController extends AbstractController
public function aboutAction()
{
return $this->render(
'@WallabagCore/Static/about.html.twig',
'Static/about.html.twig',
[
'version' => $this->getParameter('wallabag_core.version'),
'paypal_url' => $this->getParameter('wallabag_core.paypal_url'),
@ -41,7 +41,7 @@ class StaticController extends AbstractController
public function quickstartAction()
{
return $this->render(
'@WallabagCore/Static/quickstart.html.twig'
'Static/quickstart.html.twig'
);
}
}

View file

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

View file

@ -67,7 +67,7 @@ class UserController extends AbstractController
return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
}
return $this->render('@WallabagCore/User/new.html.twig', [
return $this->render('User/new.html.twig', [
'user' => $user,
'form' => $form->createView(),
]);
@ -108,7 +108,7 @@ class UserController extends AbstractController
return $this->redirectToRoute('user_edit', ['id' => $user->getId()]);
}
return $this->render('@WallabagCore/User/edit.html.twig', [
return $this->render('User/edit.html.twig', [
'user' => $user,
'edit_form' => $form->createView(),
'delete_form' => $deleteForm->createView(),
@ -173,7 +173,7 @@ class UserController extends AbstractController
}
}
return $this->render('@WallabagCore/User/index.html.twig', [
return $this->render('User/index.html.twig', [
'searchForm' => $form->createView(),
'users' => $pagerFanta,
]);

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -9,9 +9,9 @@
<div class="{{ subClass|default('original grey-text') }}">
<a href="{{ entry.url|e }}" target="_blank" title="{{ entry.domainName|removeWww }}" class="tool grey-text">{{ entry.domainName|removeWww }}</a>
{% if withMetadata is defined %}
{% include "@WallabagCore/Entry/_tags.html.twig" with {'tags': entry.tags|slice(0, 3), 'entryId': entry.id, 'listClass': ' hide-on-med-and-down'} only %}
{% include "Entry/_tags.html.twig" with {'tags': entry.tags|slice(0, 3), 'entryId': entry.id, 'listClass': ' hide-on-med-and-down'} only %}
<div class="reading-time grey-text">
<div class="card-reading-time">{% include "@WallabagCore/Entry/_reading_time.html.twig" with {'entry': entry} only %}</div>
<div class="card-reading-time">{% include "Entry/_reading_time.html.twig" with {'entry': entry} only %}</div>
</div>
{% endif %}
</div>

View file

@ -1,6 +1,6 @@
<div class="card-action">
<div class="reading-time grey-text">
<div class="card-reading-time">{% include "@WallabagCore/Entry/_reading_time.html.twig" with {'entry': entry} only %}</div>
<div class="card-reading-time">{% include "Entry/_reading_time.html.twig" with {'entry': entry} only %}</div>
<div class="card-created-at">
<i class="material-icons" title="{{ 'entry.view.created_at'|trans }}">today</i>
<span>&nbsp;{{ entry.createdAt|date('Y-m-d') }}</span>

View file

@ -12,8 +12,8 @@
</a>
{% endif %}
</div>
{% include "@WallabagCore/Entry/Card/_content.html.twig" with {'entry': entry} only %}
{% include "Entry/Card/_content.html.twig" with {'entry': entry} only %}
</div>
{% include "@WallabagCore/Entry/_card_actions.html.twig" with {'entry': entry} only %}
{% include "Entry/_card_actions.html.twig" with {'entry': entry} only %}
</div>

View file

@ -1,5 +1,5 @@
<div class="card-stacked{% if currentRoute in routes and entry.isArchived %} archived{% endif %}">
{% include "@WallabagCore/Entry/Card/_mass_checkbox.html.twig" with {'entry': entry} only %}
{% include "Entry/Card/_mass_checkbox.html.twig" with {'entry': entry} only %}
{% if app.user.config.displayThumbnails %}
<div class="card-preview">
<a href="{{ path('view', {'id': entry.id}) }}">
@ -8,7 +8,7 @@
</a>
</div>
{% endif %}
{% include "@WallabagCore/Entry/Card/_content.html.twig" with {'entry': entry, 'withMetadata': true, 'subClass': 'metadata'} only %}
{% include "Entry/Card/_content.html.twig" with {'entry': entry, 'withMetadata': true, 'subClass': 'metadata'} only %}
{% set current_path = path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')) %}

View file

@ -1,5 +1,5 @@
<div class="card entry-card{% if currentRoute in routes and entry.isArchived %} archived{% endif %}">
{% include "@WallabagCore/Entry/Card/_mass_checkbox.html.twig" with {'entry': entry} only %}
{% include "Entry/Card/_mass_checkbox.html.twig" with {'entry': entry} only %}
<div class="card-body">
<div class="{% if app.user.config.displayThumbnails %}card-image{% endif %} waves-effect waves-block waves-light">
<ul class="card-entry-labels">
@ -14,7 +14,7 @@
</a>
{% endif %}
</div>
{% include "@WallabagCore/Entry/Card/_content.html.twig" with {'entry': entry, 'withPreview': true} only %}
{% include "Entry/Card/_content.html.twig" with {'entry': entry, 'withPreview': true} only %}
</div>
<div class="card-reveal">
@ -34,5 +34,5 @@
</ul>
</div>
{% include "@WallabagCore/Entry/_card_actions.html.twig" with {'entry': entry} only %}
{% include "Entry/_card_actions.html.twig" with {'entry': entry} only %}
</div>

View file

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

View file

@ -1,4 +1,4 @@
{% extends "@WallabagCore/layout.html.twig" %}
{% extends "layout.html.twig" %}
{% block head %}
{{ parent() }}
@ -15,7 +15,7 @@
{% if searchTerm is defined and searchTerm is not empty %}
{% set filter = searchTerm %}
{% endif %}
{% include "@WallabagCore/Entry/_title.html.twig" with {'filter': filter} %}
{% include "Entry/_title.html.twig" with {'filter': filter} %}
{% endblock %}
{% block content %}
@ -37,7 +37,7 @@
<label for="mass-action-inputs-displayed" class="mass-action-toggle results-item tooltipped" data-position="right" data-delay="50" data-tooltip="{{ 'entry.list.toggle_mass_action'|trans }}"><i class="material-icons">library_add_check</i></label>
{% endif %}
{% if app.user.config.feedToken %}
{% include "@WallabagCore/Entry/_feed_link.html.twig" %}
{% include "Entry/_feed_link.html.twig" %}
{% endif %}
</div>
{% if current_route == 'search' %}<div><a href="{{ path('tag_this_search', {'filter': searchTerm, 'currentRoute': app.request.get('currentRoute'), redirect: current_path}) }}" title="{{ 'entry.list.assign_search_tag'|trans }}">{{ 'entry.list.assign_search_tag'|trans }}</a></div>{% endif %}
@ -67,11 +67,11 @@
{% for entry in entries %}
<li id="entry-{{ entry.id|e }}" class="{% if list_mode != 0 %}col collection-item{% endif %} s12" data-entry-id="{{ entry.id|e }}" data-test="entry">
{% if list_mode == 1 %}
{% include "@WallabagCore/Entry/_card_list.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
{% include "Entry/_card_list.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
{% elseif not entry.previewPicture is null and entry.mimetype starts with 'image/' %}
{% include "@WallabagCore/Entry/_card_full_image.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
{% include "Entry/_card_full_image.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
{% else %}
{% include "@WallabagCore/Entry/_card_preview.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
{% include "Entry/_card_preview.html.twig" with {'entry': entry, 'currentRoute': current_route, 'routes': entries_with_archived_class_routes} only %}
{% endif %}
</li>
{% endfor %}

View file

@ -1,4 +1,4 @@
{% extends "@WallabagCore/layout.html.twig" %}
{% extends "layout.html.twig" %}
{% block title %}{{ entry.title|striptags|default('entry.default_title'|trans)|raw }} ({{ entry.domainName|removeWww }}){% endblock %}
@ -241,7 +241,7 @@
<div class="tools entry-tools grey-text" dir="auto">
<ul class="stats">
<li>
{% include "@WallabagCore/Entry/_reading_time.html.twig" with {'entry': entry} only %}
{% include "Entry/_reading_time.html.twig" with {'entry': entry} only %}
</li>
<li>
<i class="material-icons grey-text" title="{{ 'entry.view.created_at'|trans }}">today</i>
@ -282,7 +282,7 @@
</li>
{% endif %}
</ul>
{% include "@WallabagCore/Entry/_tags.html.twig" with {'tags': entry.tags, 'entryId': entry.id, 'withRemove': true} only %}
{% include "Entry/_tags.html.twig" with {'tags': entry.tags, 'entryId': entry.id, 'withRemove': true} only %}
</div>
<div class="input-field nav-panel-add-tag" style="display: none">

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,4 +1,4 @@
{% extends "@WallabagCore/layout.html.twig" %}
{% extends "layout.html.twig" %}
{% block title %}{{ 'howto.page_title'|trans }}{% endblock %}
@ -46,7 +46,7 @@
<div class="col s12">
<h5>{{ 'howto.top_menu.bookmarklet'|trans }}</h5>
{{ 'howto.bookmarklet.description'|trans }}
{% include '@WallabagCore/Static/_bookmarklet.html.twig' %}
{% include 'Static/_bookmarklet.html.twig' %}
</div>
</div>

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

Before

Width:  |  Height:  |  Size: 334 KiB

After

Width:  |  Height:  |  Size: 334 KiB

View file

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