Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.12.5 #147

Merged
merged 6 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ Types of changes
Security in case of vulnerabilities.
)

## [2.13.4](https://github.com/pdir/social-feed-bundle/tree/2.13.4) - 2024-08-20

This version is currently only available via the “early adopter” program (EAP). You can find out more at [Social Feed EAP](https://pdir.de/crowdfunding/social-feed-bundle.html).

Diese Version ist aktuell nur über das "early adopter"-Programm (EAP) verfügbar. Mehr erfährst du unter [Social Feed EAP](https://pdir.de/crowdfunding/social-feed-bundle.html).

- [Fixed] Fix newslist module (remove void)
- [Fixed] Missing images in moderated instagram import

## [2.13.3](https://github.com/pdir/social-feed-bundle/tree/2.13.3) - 2024-08-07

This version is currently only available via the “early adopter” program (EAP). You can find out more at [Social Feed EAP](https://pdir.de/crowdfunding/social-feed-bundle.html).
Expand Down Expand Up @@ -55,6 +64,7 @@ Diese Version ist aktuell nur über das "early adopter"-Programm (EAP) verfügba
- [Changed] guzzlehttp/guzzle from 6.3 to ^7.3
- [Changed] Change translations and texts
- [Fixed] temporarily supplemented samoritano/linkedin-api-php-client-v2 to support guzzle 7.3
- [Fixed] Fix newslist module (remove void)

## [2.12.4](https://github.com/pdir/social-feed-bundle/tree/2.12.4) - 2023-07-31

Expand Down
2 changes: 1 addition & 1 deletion src/ContaoManager/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand All @@ -20,7 +20,7 @@

namespace Pdir\SocialFeedBundle\ContaoManager;

use Codefog\NewsCategoriesBundle\CodefogNewsCategoriesBundle; // @phpstan-ignore-line

Check failure on line 23 in src/ContaoManager/Plugin.php

View workflow job for this annotation

GitHub Actions / PHPStan

No error to ignore is reported on line 23.

Check failure on line 23 in src/ContaoManager/Plugin.php

View workflow job for this annotation

GitHub Actions / PHPStan

No error to ignore is reported on line 23.
use Contao\CoreBundle\ContaoCoreBundle;
use Contao\ManagerPlugin\Bundle\BundlePluginInterface;
use Contao\ManagerPlugin\Bundle\Config\BundleConfig;
Expand All @@ -39,7 +39,7 @@
{
return [
BundleConfig::create(PdirSocialFeedBundle::class)
->setLoadAfter([ContaoCoreBundle::class, CodefogNewsCategoriesBundle::class]) // @phpstan-ignore-line

Check failure on line 42 in src/ContaoManager/Plugin.php

View workflow job for this annotation

GitHub Actions / PHPStan

Class Codefog\NewsCategoriesBundle\CodefogNewsCategoriesBundle not found.

Check failure on line 42 in src/ContaoManager/Plugin.php

View workflow job for this annotation

GitHub Actions / PHPStan

Class Codefog\NewsCategoriesBundle\CodefogNewsCategoriesBundle not found.
->setReplace(['socialfeedbundle']),
];
}
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/FacebookController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/InstagramController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/LinkedinController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down Expand Up @@ -87,7 +87,7 @@
$this->db->update('tl_social_feed', ['linkedin_access_token' => $token->access_token, 'access_token_expires' => time() + $token->expires_in, 'linkedin_refresh_token' => $token->refresh_token, 'linkedin_refresh_token_expires' => time() + $token->refresh_token_expires_in], ['id' => $sessionData['socialFeedId']]);
$this->session->remove(SocialFeedListener::SESSION_KEY);
} catch (\Exception $e) {
System::log($e->getMessage(), __METHOD__, TL_GENERAL);

Check failure on line 90 in src/Controller/LinkedinController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Constant TL_GENERAL not found.

Check failure on line 90 in src/Controller/LinkedinController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Constant TL_GENERAL not found.
}

return new RedirectResponse($sessionData['backUrl']);
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/ModerateController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down Expand Up @@ -97,7 +97,7 @@

$socialFeedAccount = $request->request->get('account');
//$numberPosts = $request->request->get('number_posts');
$objSocialFeedModel = SocialFeedModel::findById($socialFeedAccount);

Check failure on line 100 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Call to an undefined static method Pdir\SocialFeedBundle\Model\SocialFeedModel::findById().

Check failure on line 100 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Call to an undefined static method Pdir\SocialFeedBundle\Model\SocialFeedModel::findById().
$newsArchiveId = Input::get('id');

$objImporter = new Importer();
Expand All @@ -106,9 +106,9 @@
// import selected items
$importItems = $request->request->get('importItems');

if ($importItems && \count($importItems) > 0) {

Check failure on line 109 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #1 $var of function count expects array|Countable, float|int<min, -1>|int<1, max>|string|true given.

Check failure on line 109 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #1 $var of function count expects array|Countable, float|int<min, -1>|int<1, max>|string|true given.
foreach ($items as $item) {
if (\in_array($item['id'], $importItems, true)) {

Check failure on line 111 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #2 $haystack of function in_array expects array, float|int<min, -1>|int<1, max>|string|true given.

Check failure on line 111 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #2 $haystack of function in_array expects array, float|int<min, -1>|int<1, max>|string|true given.
$importer = new NewsImporter($item);
$importer->accountImage = $objImporter->getAccountImage();
$importer->execute($newsArchiveId, $objSocialFeedModel->socialFeedType, $objSocialFeedModel->id);
Expand All @@ -117,8 +117,8 @@
}

// set import message
if (\is_array($items) && isset($importItems) && \count($importItems) > 0) {

Check failure on line 120 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #1 $var of function count expects array|Countable, bool|float|int|string given.

Check failure on line 120 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #1 $var of function count expects array|Countable, bool|float|int|string given.
$this->message = sprintf($GLOBALS['TL_LANG']['BE_MOD']['socialFeedModerate']['importMessage'], \count($importItems));

Check failure on line 121 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #1 $var of function count expects array|Countable, bool|float|int|string given.

Check failure on line 121 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Parameter #1 $var of function count expects array|Countable, bool|float|int|string given.
}

if (null === $items) {
Expand All @@ -137,7 +137,7 @@
}

$this->template->activeAccount = $request->request->get('account');
$this->template->moderationList = $html;

Check failure on line 140 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Variable $html might not be defined.

Check failure on line 140 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Variable $html might not be defined.
$this->template->message = $this->message;
}

Expand Down Expand Up @@ -182,7 +182,7 @@
*
* @codeCoverageIgnore
*/
protected function generateOptions()

Check failure on line 185 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Method Pdir\SocialFeedBundle\Controller\ModerateController::generateOptions() return type has no value type specified in iterable type array.

Check failure on line 185 in src/Controller/ModerateController.php

View workflow job for this annotation

GitHub Actions / PHPStan

Method Pdir\SocialFeedBundle\Controller\ModerateController::generateOptions() return type has no value type specified in iterable type array.
{
$options = [];

Expand Down
2 changes: 1 addition & 1 deletion src/Dca/tl_social_feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/PdirSocialFeedExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/EventListener/CronListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/EventListener/SocialFeedListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Importer/Importer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Importer/InstagramClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Importer/InstagramRequestCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Importer/NewsImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Model/SocialFeedModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
6 changes: 3 additions & 3 deletions src/Module/ModuleCustomNewslist.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand All @@ -31,8 +31,8 @@ class ModuleCustomNewslist extends ModuleNewsList
* @var string
*/
protected $strTemplate = 'mod_newslist';

protected function compile(): void
protected function compile()
{
parent::compile();

Expand Down
4 changes: 2 additions & 2 deletions src/Module/NewsCategoriesModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand All @@ -32,7 +32,7 @@ class NewsCategoriesModule extends NewsListModule
*/
protected $strTemplate = 'mod_newslist';

protected function compile(): void
protected function compile()
{
parent::compile();

Expand Down
2 changes: 1 addition & 1 deletion src/PdirSocialFeedBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/dca/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/dca/tl_news.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/dca/tl_news_archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/dca/tl_social_feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/de/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/de/modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/de/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/de/tl_news.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
44 changes: 22 additions & 22 deletions src/Resources/contao/languages/de/tl_social_feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down Expand Up @@ -74,28 +74,28 @@
$GLOBALS['TL_LANG']['tl_social_feed']['user'] = ['Benutzer', 'Geben Sie hier bitte an, welcher Benutzer für neu importierte Nachrichten gesetzt werden soll.'];

$GLOBALS['TL_LANG']['tl_social_feed']['setupWelcome'] = 'Social Feed Bundle';
$GLOBALS['TL_LANG']['tl_social_feed']['setupLinks'] = <<<HTML
<p>Das SocialFeedBundle ist gesponsert von der <a href="http://www.pdir.de/" target="_blank">pdir / digital agentur</a></p>
<h2>Interessante Links</h2>
<ul class="link-list">
<li><a href="https://pdir.de/docs/de/contao/extensions/socialfeed/" target="_blank" style="text-decoration: underline;">Dokumentation</a></li>
<li><a href="https://github.com/pdir/social-feed-bundle/issues" target="_blank" style="text-decoration: underline;">Probleme melden</a></li>
<li><a href="https://github.com/pdir/social-feed-bundle/" target="_blank" style="text-decoration: underline;">Github</a></li>
<li><a href="https://contao-themes.net/sponsoring.html?isorc=3" target="_blank" style="text-decoration: underline;">Sponsoring / Unterstützen</a></li>
</ul>
HTML;
$GLOBALS['TL_LANG']['tl_social_feed']['setupLinks'] = <<<'HTML'
<p>Das SocialFeedBundle ist gesponsert von der <a href="http://www.pdir.de/" target="_blank">pdir / digital agentur</a></p>
<h2>Interessante Links</h2>
<ul class="link-list">
<li><a href="https://pdir.de/docs/de/contao/extensions/socialfeed/" target="_blank" style="text-decoration: underline;">Dokumentation</a></li>
<li><a href="https://github.com/pdir/social-feed-bundle/issues" target="_blank" style="text-decoration: underline;">Probleme melden</a></li>
<li><a href="https://github.com/pdir/social-feed-bundle/" target="_blank" style="text-decoration: underline;">Github</a></li>
<li><a href="https://contao-themes.net/sponsoring.html?isorc=3" target="_blank" style="text-decoration: underline;">Sponsoring / Unterstützen</a></li>
</ul>
HTML;

$GLOBALS['TL_LANG']['tl_social_feed']['setupHeadline'] = 'Willkommen beim Social Feed Bundle für Contao';
$GLOBALS['TL_LANG']['tl_social_feed']['setupDesc'] = 'Die Social Feed Erweiterung zeigt einen Feed aus den beliebtesten sozialen Netzwerken an. Zur Zeit werden Facebook, Instagram, Twitter und LinkedIn unterstützt. Die Erweiterung kann kostenfrei genutzt werden. Es gibt eine kostenpflichtige Plus Version um Beiträge in allen sozialen Medien auf einmal zu veröffentlichen oder dies manuell durchzuführen.';
$GLOBALS['TL_LANG']['tl_social_feed']['setupPlus'] = <<<HTML
<h3>Social Feed<span class="high-plus"></span> Version</h3>
<ul class="benefit">
<li>Auf mehreren Social Media Kanälen gleichzeitig veröffentlichen</li>
<li>Automatisches veröffentlichen von geplanten und normalen Beiträgen</li>
<li>Anpassen der Texte in der Vorschau bevor die Veröffentlichung erfolgt</li>
<li>Unterstützung von Tags die automatisch am Ende eingefügt werden</li>
<li>Schnelle Hilfe bei Problemen über unser Ticketsystem</li>
</ul>
<p><br><span class="price">99,- €</span> <a href="https://pdir.de/socialfeed+" target="_blank" class="tl_submit">Jetzt kaufen</a></p>
HTML;
$GLOBALS['TL_LANG']['tl_social_feed']['setupPlus'] = <<<'HTML'
<h3>Social Feed<span class="high-plus"></span> Version</h3>
<ul class="benefit">
<li>Auf mehreren Social Media Kanälen gleichzeitig veröffentlichen</li>
<li>Automatisches veröffentlichen von geplanten und normalen Beiträgen</li>
<li>Anpassen der Texte in der Vorschau bevor die Veröffentlichung erfolgt</li>
<li>Unterstützung von Tags die automatisch am Ende eingefügt werden</li>
<li>Schnelle Hilfe bei Problemen über unser Ticketsystem</li>
</ul>
<p><br><span class="price">99,- €</span> <a href="https://pdir.de/socialfeed+" target="_blank" class="tl_submit">Jetzt kaufen</a></p>
HTML;
$GLOBALS['TL_LANG']['tl_social_feed']['setupFooter'] = 'Ihr Team der <img src="/bundles/pdirsocialfeed/img/pdir_logo.svg" width="50" alt="pdir logo" style="vertical-align: sub;"> / digital agentur';
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/en/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/en/modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/en/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/languages/en/tl_news.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/*
* social feed bundle for Contao Open Source CMS
*
* Copyright (c) 2023 pdir / digital agentur // pdir GmbH
* Copyright (c) 2024 pdir / digital agentur // pdir GmbH
*
* @package social-feed-bundle
* @link https://github.com/pdir/social-feed-bundle
Expand Down
Loading
Loading