fediplan/src/Twig/AppExtension.php

72 lines
2 KiB
PHP
Raw Normal View History

2019-08-10 09:41:59 +02:00
<?php
/**
* Created by fediplan.
* User: tom79
* Date: 09/08/19
* Time: 17:37
*/
namespace App\Twig;
use App\SocialEntity\MastodonAccount;
use App\SocialEntity\Status;
use Twig\Extension\AbstractExtension;
use Twig\TwigFunction;
class AppExtension extends AbstractExtension
{
public function getFunctions()
{
return [
new TwigFunction('convertAccountEmoji', [$this, 'accountEmoji']),
new TwigFunction('convertStatusEmoji', [$this, 'statusEmoji']),
2019-08-22 12:24:02 +02:00
new TwigFunction('getLanguage', [$this, 'language']),
2019-08-10 09:41:59 +02:00
];
}
public function accountEmoji($account, $content)
{
if( $account instanceof MastodonAccount){
foreach( $account->getEmojis() as $emoji){
$content = preg_replace("(:" . $emoji->getShortcode() .":)", "<img src='". $emoji->getUrl() . "' alt='".$emoji->getShortcode()."' title='".$emoji->getShortcode()."' width='20'/>", $content);
}
}
return $content;
}
public function statusEmoji($status, $content)
{
if( $status instanceof Status){
foreach( $status->getEmojis() as $emoji){
$content = preg_replace("(:" . $emoji->getShortcode() . ":)", "<img src='". $emoji->getUrl() . "' alt='".$emoji->getShortcode()."' title='".$emoji->getShortcode()."' width='20'/>", $content);
}
}
return $content;
}
2019-08-22 12:24:02 +02:00
public function language($locale)
{
switch ($locale){
case "en":
return "English";
case "fr":
return "Français";
case "de":
return "Deutsch";
case "nl":
return "Nederlands";
case "pt-PT":
return "Português";
case "pt-BR":
return "Brasil";
2019-08-22 16:08:43 +02:00
case "it":
return "Italiano";
case "ca":
return "Català";
case "ar":
return "العربية";
2019-08-22 12:24:02 +02:00
}
}
2019-08-10 09:41:59 +02:00
}