Changing template engine to Mustache. Updating Bootstrap. Creating mustache helpers. Changing plugins on the base template
This commit is contained in:
Executable → Regular
+87
-62
@@ -2,92 +2,125 @@
|
||||
|
||||
namespace App\Core\Template;
|
||||
|
||||
class Output {
|
||||
use Mustache_Engine as Mustache_Engine;
|
||||
use Mustache_Loader_FilesystemLoader as Mustache_Loader_FilesystemLoader;
|
||||
|
||||
class Output
|
||||
{
|
||||
|
||||
private static $_instance;
|
||||
|
||||
private $view = false;
|
||||
protected $values = Array();
|
||||
|
||||
private $_template = '';
|
||||
private $_extension = '';
|
||||
|
||||
private function __construct() {
|
||||
$this->_template = ( defined('TEMPLATE_DEFAULT') ) ? TEMPLATE_DEFAULT : 'DefaultTemplate';
|
||||
$this->_extension = ( defined('TEMPLATE_FILETYPE') ) ? TEMPLATE_FILETYPE : '.mustache';
|
||||
private $_engine;
|
||||
|
||||
private function __construct()
|
||||
{
|
||||
$this->_template = (defined('TEMPLATE_DEFAULT')) ? TEMPLATE_DEFAULT : 'DefaultTemplate';
|
||||
$this->_extension = (defined('TEMPLATE_FILETYPE')) ? TEMPLATE_FILETYPE : '.mustache';
|
||||
|
||||
$this->_engine = new Mustache_Engine(array(
|
||||
'entity_flags' => ENT_QUOTES,
|
||||
'partials_loader' => new Mustache_Loader_FilesystemLoader(DIR_APP),
|
||||
'pragmas' => [Mustache_Engine::PRAGMA_FILTERS],
|
||||
));
|
||||
|
||||
// ========================
|
||||
// Helpers
|
||||
//
|
||||
|
||||
// Format {{#icons}}xx{{/icons}} as a font awesome icon
|
||||
$this->_engine->addHelper('icons', function ($icon) {
|
||||
return "<i class='fa fa-" . trim($icon) . "' aria-hidden='true'></i>";
|
||||
});
|
||||
|
||||
// Change the {{#strings}}string,module{{/strings}} for the requested localized string
|
||||
$this->_engine->addHelper('string', function ($string) {
|
||||
return \Lang::getString(...explode(',', trim($string)));
|
||||
});
|
||||
|
||||
// ========================
|
||||
// Filters
|
||||
//
|
||||
|
||||
$this->_engine->addHelper('case', [
|
||||
'lower' => function ($value) {
|
||||
return strtolower((string) $value);
|
||||
},
|
||||
'upper' => function ($value) {
|
||||
return strtoupper((string) $value);
|
||||
}
|
||||
]);
|
||||
}
|
||||
|
||||
private static function newObj() {
|
||||
private static function newObj()
|
||||
{
|
||||
if (!isset(self::$_instance)) {
|
||||
self::$_instance = new Output();
|
||||
}
|
||||
return self::$_instance;
|
||||
}
|
||||
|
||||
public function getInstance() {
|
||||
public static function getInstance()
|
||||
{
|
||||
if (!isset(self::$_instance)) {
|
||||
return self::newObj();
|
||||
}
|
||||
return self::$_instance;
|
||||
}
|
||||
|
||||
public function setTemplate($template = 'DefaultTemplate') {
|
||||
//
|
||||
// ----------------------------------------
|
||||
// Done with singletone and template boot
|
||||
//
|
||||
//
|
||||
|
||||
public static function setTemplate($template = 'DefaultTemplate')
|
||||
{
|
||||
self::getInstance()->_template = $template;
|
||||
// self::getInstance()->_template = '';
|
||||
return self::getInstance();
|
||||
}
|
||||
|
||||
public static function renderView($name, $values = null, $location = null) {
|
||||
if (!$location) {
|
||||
$segments = explode('/', debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)[0]['file']);
|
||||
array_pop($segments);
|
||||
$location = implode('/', $segments) . '/views/';
|
||||
}
|
||||
|
||||
self::getInstance()->setView($name, $values, $location)->render();
|
||||
}
|
||||
|
||||
public static function setView($name = '', $values = Array(), $location = null) {
|
||||
if($name == ''){ return self::getInstance(); }
|
||||
$instance = self::getInstance();
|
||||
$folder = '';
|
||||
if (!$location) {
|
||||
$segments = explode('/', debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)[0]['file']);
|
||||
array_pop($segments);
|
||||
$location = implode('/', $segments) . '/views/';
|
||||
}
|
||||
$folder = $location;
|
||||
$location .= $name;
|
||||
|
||||
if (strpos($instance->_extension, $location) == 0) {
|
||||
$location .= $instance->_extension;
|
||||
}
|
||||
|
||||
$instance->view = Array();
|
||||
$instance->view['location'] = $location;
|
||||
$instance->view['folder'] = $folder;
|
||||
$instance->view['values'] = $values;
|
||||
return self::getInstance();
|
||||
}
|
||||
|
||||
public static function addValue($key, $value){
|
||||
self::getInstance()->view['values'][$key] = $value;
|
||||
}
|
||||
|
||||
public static function render() {
|
||||
public static function render($view = '', $values = array())
|
||||
{
|
||||
$instance = self::getInstance();
|
||||
|
||||
if(!is_file(__DIR__."/classes/".strtolower($instance->_template)."/".$instance->_template.'.php') ){
|
||||
$template = '';
|
||||
|
||||
if ($view != '') {
|
||||
$segments = explode('/', debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)[0]['file']);
|
||||
array_pop($segments);
|
||||
$location = implode('/', $segments) . '/views/';
|
||||
|
||||
if (is_file($location . $view . $instance->_extension)) {
|
||||
$template = file_get_contents($location . $view . $instance->_extension);
|
||||
}
|
||||
}
|
||||
|
||||
if (is_ajax_request()) {
|
||||
echo $instance->_engine->render($template, $values);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!is_file(__DIR__ . "/classes/" . strtolower($instance->_template) . "/" . $instance->_template . '.php')) {
|
||||
$instance->_template = 'DefaultTemplate';
|
||||
}
|
||||
|
||||
include_once __DIR__."/classes/".strtolower($instance->_template)."/".$instance->_template.'.php';
|
||||
|
||||
$class = new $instance->_template;
|
||||
$class->setView($instance->view)->render();
|
||||
include_once __DIR__ . "/classes/" . strtolower($instance->_template) . "/" . $instance->_template . '.php';
|
||||
|
||||
$wrapper = new $instance->_template;
|
||||
$wrapper = $wrapper->render($template);
|
||||
echo $instance->_engine->render($wrapper, $values);
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// ----------------------------------------
|
||||
// Menu Stuff Here
|
||||
//
|
||||
//
|
||||
|
||||
public static function addMenu($route, $name, $icon = '', $attributes = [], $weight = 0){
|
||||
global $SIDEBAR;
|
||||
$SIDEBAR->add($route, $name, $icon, $attributes, $weight);
|
||||
@@ -103,8 +136,6 @@ class Output {
|
||||
$SIDEBAR->add_on_new($key, $route, $name, $icon, $attributes, $weight);
|
||||
}
|
||||
|
||||
//========
|
||||
|
||||
public static function headAdd($route, $name){
|
||||
global $DROPDOWN;
|
||||
$DROPDOWN[] = ['route' => $route, 'name' => $name];
|
||||
@@ -119,10 +150,4 @@ class Output {
|
||||
global $DROPDOWN;
|
||||
$DROPDOWN->add_on_new($key, $route, $name, $icon, $attributes, $weight);
|
||||
}
|
||||
|
||||
|
||||
public static function icon($icon){
|
||||
return "<i class='$icon' aria-hidden='true'></i>";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user