Merge pull request #7162 from nupplaphil/task/mod_view

Move mod/view to src/Module/Theme
This commit is contained in:
Hypolite Petovan 2019-05-18 21:07:27 -04:00 committed by GitHub
commit d3a4ed0111
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 27 deletions

View File

@ -1,27 +0,0 @@
<?php
use Friendica\App;
use Friendica\Util\Strings;
/**
* load view/theme/$current_theme/style.php with friendica context
*
* @param App $a
*/
function view_init(App $a)
{
header("Content-Type: text/css");
if ($a->argc == 4) {
$theme = $a->argv[2];
$theme = Strings::sanitizeFilePathItem($theme);
// set the path for later use in the theme styles
$THEMEPATH = "view/theme/$theme";
if (file_exists("view/theme/$theme/style.php")) {
require_once("view/theme/$theme/style.php");
}
}
exit();
}

View File

@ -209,6 +209,7 @@ class Router
$this->routeCollector->addRoute(['GET'], '/statistics.json', Module\Statistics::class);
$this->routeCollector->addRoute(['GET'], '/toggle_mobile', Module\ToggleMobile::class);
$this->routeCollector->addRoute(['GET'], '/tos', Module\Tos::class);
$this->routeCollector->addRoute(['GET'], '/view/theme/{theme}/style.pcss', Module\Theme::class);
$this->routeCollector->addRoute(['GET'], '/viewsrc/{item:\d+}', Module\ItemBody::class);
$this->routeCollector->addRoute(['GET'], '/webfinger', Module\WebFinger::class);
$this->routeCollector->addRoute(['GET'], '/xrd', Module\Xrd::class);

32
src/Module/Theme.php Normal file
View File

@ -0,0 +1,32 @@
<?php
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\Util\Strings;
/**
* load view/theme/$current_theme/style.php with friendica context
*/
class Theme extends BaseModule
{
public static function rawContent()
{
header("Content-Type: text/css");
$a = self::getApp();
if ($a->argc == 4) {
$theme = $a->argv[2];
$theme = Strings::sanitizeFilePathItem($theme);
// set the path for later use in the theme styles
$THEMEPATH = "view/theme/$theme";
if (file_exists("view/theme/$theme/style.php")) {
require_once("view/theme/$theme/style.php");
}
}
exit();
}
}