mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
111 lines
No EOL
2.4 KiB
PHP
111 lines
No EOL
2.4 KiB
PHP
<?php
|
|
|
|
function js_start()
|
|
{
|
|
ob_start('Response::jsOutputCallback');
|
|
}
|
|
|
|
function js_end()
|
|
{
|
|
ob_end_flush();
|
|
}
|
|
|
|
class View
|
|
{
|
|
const LAYOUT_PARAMS = '_layout_params';
|
|
|
|
protected static $metaDescription = '',
|
|
$metaImg = '';
|
|
|
|
public static function render($template, array $vars = [])
|
|
{
|
|
if (!static::exists($template) || substr_count($template, '/') !== 1)
|
|
{
|
|
throw new InvalidArgumentException(sprintf('The template "%s" does not exist or is unreadable.', $template));
|
|
}
|
|
|
|
list($module, $view) = explode('/', $template);
|
|
|
|
$isPartial = $view[0] === '_';
|
|
$actionClass = ucfirst($module) . 'Actions';
|
|
$method = 'prepare' . ucfirst(ltrim($view, '_')) . ($isPartial ? 'Partial' : '');
|
|
|
|
if (method_exists($actionClass, $method))
|
|
{
|
|
$vars = $actionClass::$method($vars);
|
|
}
|
|
|
|
extract($vars);
|
|
ob_start();
|
|
ob_implicit_flush(0);
|
|
|
|
try
|
|
{
|
|
require(static::getFullPath($template));
|
|
}
|
|
catch (Exception $e)
|
|
{
|
|
// need to end output buffering before throwing the exception
|
|
ob_end_clean();
|
|
throw $e;
|
|
}
|
|
|
|
return ob_get_clean();
|
|
}
|
|
|
|
public static function exists($template)
|
|
{
|
|
return is_readable(static::getFullPath($template));
|
|
}
|
|
|
|
protected static function getFullPath($template)
|
|
{
|
|
return ROOT_DIR . '/view/template/' . $template . '.php';
|
|
}
|
|
|
|
public static function imagePath($image)
|
|
{
|
|
return '/img/' . $image;
|
|
}
|
|
|
|
public static function setMetaDescription($description)
|
|
{
|
|
static::$metaDescription = $description;
|
|
}
|
|
|
|
public static function setMetaImage($url)
|
|
{
|
|
static::$metaImg = $url;
|
|
}
|
|
|
|
public static function getMetaDescription()
|
|
{
|
|
return static::$metaDescription ?: 'A Content Revolution';
|
|
}
|
|
|
|
public static function getMetaImage()
|
|
{
|
|
return static::$metaImg ?: '//lbry.io/img/lbry-dark-1600x528.png';
|
|
}
|
|
|
|
public static function compileCss()
|
|
{
|
|
$scssCompiler = new \Leafo\ScssPhp\Compiler();
|
|
|
|
$scssCompiler->setImportPaths([ROOT_DIR.'/web/scss']);
|
|
|
|
$compress = true;
|
|
if ($compress)
|
|
{
|
|
$scssCompiler->setFormatter('Leafo\ScssPhp\Formatter\Crunched');
|
|
}
|
|
else
|
|
{
|
|
$scssCompiler->setFormatter('Leafo\ScssPhp\Formatter\Expanded');
|
|
$scssCompiler->setLineNumberStyle(Leafo\ScssPhp\Compiler::LINE_COMMENTS);
|
|
}
|
|
|
|
$css = $scssCompiler->compile(file_get_contents(ROOT_DIR.'/web/scss/all.scss'));
|
|
file_put_contents(ROOT_DIR.'/web/css/all.css', $css);
|
|
}
|
|
} |