mirror of
https://github.com/friendica/friendica
synced 2024-11-11 17:42:55 +00:00
33 lines
737 B
PHP
33 lines
737 B
PHP
<?php
|
|
|
|
namespace Friendica\Module;
|
|
|
|
use Friendica\BaseModule;
|
|
use Friendica\Core\Theme;
|
|
|
|
/**
|
|
* Prints theme specific details as a JSON string
|
|
*/
|
|
class ThemeDetails extends BaseModule
|
|
{
|
|
public static function rawContent(array $parameters = [])
|
|
{
|
|
if (!empty($_REQUEST['theme'])) {
|
|
$theme = $_REQUEST['theme'];
|
|
$info = Theme::getInfo($theme);
|
|
|
|
// Unfortunately there will be no translation for this string
|
|
$description = $info['description'] ?? '';
|
|
$version = $info['version'] ?? '';
|
|
$credits = $info['credits'] ?? '';
|
|
|
|
echo json_encode([
|
|
'img' => Theme::getScreenshot($theme),
|
|
'desc' => $description,
|
|
'version' => $version,
|
|
'credits' => $credits,
|
|
]);
|
|
}
|
|
exit();
|
|
}
|
|
}
|