| Current Path : /home/pteabiscqq/www/libraries/quix/app/ |
| Current File : /home/pteabiscqq/www/libraries/quix/app/init.php |
<?php
use Pimple\Container;
use ThemeXpert\Quix\Cache;
use ThemeXpert\Quix\Application;
use Doctrine\Common\Cache\FilesystemCache;
/**
* @return Application
*/
function quix() {
static $quix;
if ( !$quix ) {
$cache_time = 60 * 60 * 24;
$should_cache = QUIX_CACHE;
$container = new Container();
$fsCache = new FilesystemCache( QUIX_CACHE_PATH );
$cache = new Cache( $fsCache, $cache_time, $should_cache );
$quix = new Application( $container, $cache );
}
return $quix;
}
/**
* Load presets only when in editor
*/
if ( QUIX_EDITOR ) {
quix()->getPresetsBag()->fill( QUIX_PATH . "/app/presets", QUIX_URL . "/app/presets" );
if ( file_exists( QUIX_TEMPLATE_PATH . "/presets" ) ) {
quix()->getPresetsBag()->fill( QUIX_TEMPLATE_PATH . "/presets", QUIX_TEMPLATE_URL . "/presets" );
}
}
quix()->getElementsBag()->fill( QUIX_PATH . "/app/elements", QUIX_URL . "/app/elements" );
quix()->getNodesBag()->fill( QUIX_PATH . "/app/nodes", QUIX_URL . "/app/nodes" );
# [IMPORTANT] Need to decouple. So that, Quix can work with the other platform.
if(PLATFORM_NAME === 'Wordpress') {
// wordpress logic goes to here...
}
if(PLATFORM_NAME === 'Joomla') {
/** load elements from template if quix/elements*/
if ( file_exists( QUIX_TEMPLATE_PATH . "/elements" ) ) {
quix()->getElementsBag()->fill( QUIX_TEMPLATE_PATH . "/elements", QUIX_TEMPLATE_URL . "/elements" );
}
if ( file_exists( QUIX_TEMPLATE_PATH . "/nodes" ) ) {
quix()->getNodesBag()->fill( QUIX_TEMPLATE_PATH . "/nodes", QUIX_TEMPLATE_URL . "/nodes" );
}
if( file_exists( QUIX_TEMPLATE_PATH.'/quix.php' ) ){
require( QUIX_TEMPLATE_PATH.'/quix.php' );
}
}
// quix()->disableElements(['button', 'image']);