2019-05-05 17:23:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Theme;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints theme specific details as a JSON string
|
|
|
|
*/
|
|
|
|
class ThemeDetails extends BaseModule
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-05 17:23:03 +00:00
|
|
|
{
|
|
|
|
if (!empty($_REQUEST['theme'])) {
|
|
|
|
$theme = $_REQUEST['theme'];
|
|
|
|
$info = Theme::getInfo($theme);
|
|
|
|
|
|
|
|
// Unfortunately there will be no translation for this string
|
2019-10-15 13:20:32 +00:00
|
|
|
$description = $info['description'] ?? '';
|
|
|
|
$version = $info['version'] ?? '';
|
|
|
|
$credits = $info['credits'] ?? '';
|
2019-05-05 17:23:03 +00:00
|
|
|
|
|
|
|
echo json_encode([
|
|
|
|
'img' => Theme::getScreenshot($theme),
|
|
|
|
'desc' => $description,
|
|
|
|
'version' => $version,
|
|
|
|
'credits' => $credits,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|