mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 01:36:23 +01:00 
			
		
		
		
	Compare commits
	
		
			10 Commits
		
	
	
		
			feature/cs
			...
			feature/de
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					94a61f32ae | ||
| 
						 | 
					8227303b89 | ||
| 
						 | 
					7a402ec0e0 | ||
| 
						 | 
					790d85a88a | ||
| 
						 | 
					577725690d | ||
| 
						 | 
					c227fd4e96 | ||
| 
						 | 
					9fef84bffe | ||
| 
						 | 
					dedd54286f | ||
| 
						 | 
					7403a24030 | ||
| 
						 | 
					cc7aec8e28 | 
@@ -30,6 +30,27 @@ if(!$db->hasTable('myaac_account_actions')) {
 | 
			
		||||
	throw new RuntimeException('Seems that the table <strong>myaac_account_actions</strong> of MyAAC doesn\'t exist in the database. This is a fatal error. You can try to reinstall MyAAC by visiting <a href="' . BASE_URL . 'install">this</a> url.');
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
$hooks->register('debugbar_admin_head_end', HOOK_ADMIN_HEAD_END, function ($params) {
 | 
			
		||||
	global $debugBar;
 | 
			
		||||
 | 
			
		||||
	if (!isset($debugBar)) {
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	$debugBarRenderer = $debugBar->getJavascriptRenderer();
 | 
			
		||||
	echo $debugBarRenderer->renderHead();
 | 
			
		||||
});
 | 
			
		||||
$hooks->register('debugbar_admin_body_end', HOOK_ADMIN_BODY_END, function ($params) {
 | 
			
		||||
	global $debugBar;
 | 
			
		||||
 | 
			
		||||
	if (!isset($debugBar)) {
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	$debugBarRenderer = $debugBar->getJavascriptRenderer();
 | 
			
		||||
	echo $debugBarRenderer->render();
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
require SYSTEM . 'status.php';
 | 
			
		||||
require SYSTEM . 'login.php';
 | 
			
		||||
require __DIR__ . '/includes/functions.php';
 | 
			
		||||
 
 | 
			
		||||
@@ -26,7 +26,7 @@
 | 
			
		||||
if (version_compare(phpversion(), '8.0', '<')) die('PHP version 8.0 or higher is required.');
 | 
			
		||||
 | 
			
		||||
const MYAAC = true;
 | 
			
		||||
const MYAAC_VERSION = '0.10.0-dev';
 | 
			
		||||
const MYAAC_VERSION = '1.0-dev';
 | 
			
		||||
const DATABASE_VERSION = 36;
 | 
			
		||||
const TABLE_PREFIX = 'myaac_';
 | 
			
		||||
define('START_TIME', microtime(true));
 | 
			
		||||
 
 | 
			
		||||
@@ -16,7 +16,8 @@
 | 
			
		||||
        "peppeocchi/php-cron-scheduler": "4.*"
 | 
			
		||||
    },
 | 
			
		||||
    "require-dev": {
 | 
			
		||||
        "filp/whoops": "^2.15"
 | 
			
		||||
        "filp/whoops": "^2.15",
 | 
			
		||||
        "maximebf/debugbar": "dev-master"
 | 
			
		||||
    },
 | 
			
		||||
    "autoload": {
 | 
			
		||||
        "psr-4": {
 | 
			
		||||
 
 | 
			
		||||
@@ -469,20 +469,30 @@ function tickers()
 | 
			
		||||
 */
 | 
			
		||||
function template_place_holder($type): string
 | 
			
		||||
{
 | 
			
		||||
	global $twig, $template_place_holders;
 | 
			
		||||
	global $twig, $template_place_holders, $debugBar;
 | 
			
		||||
	$ret = '';
 | 
			
		||||
 | 
			
		||||
	if (isset($debugBar)) {
 | 
			
		||||
		$debugBarRenderer = $debugBar->getJavascriptRenderer();
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if(array_key_exists($type, $template_place_holders) && is_array($template_place_holders[$type]))
 | 
			
		||||
		$ret = implode($template_place_holders[$type]);
 | 
			
		||||
 | 
			
		||||
	if($type === 'head_start') {
 | 
			
		||||
		$ret .= template_header();
 | 
			
		||||
		if (isset($debugBar)) {
 | 
			
		||||
			$ret .= $debugBarRenderer->renderHead();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	elseif ($type === 'body_start') {
 | 
			
		||||
		$ret .= $twig->render('browsehappy.html.twig');
 | 
			
		||||
	}
 | 
			
		||||
	elseif($type === 'body_end') {
 | 
			
		||||
		$ret .= template_ga_code();
 | 
			
		||||
		if (isset($debugBar)) {
 | 
			
		||||
			$ret .= $debugBarRenderer->render();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return $ret;
 | 
			
		||||
 
 | 
			
		||||
@@ -16,10 +16,16 @@ if(!isset($config['installed']) || !$config['installed']) {
 | 
			
		||||
	throw new RuntimeException('MyAAC has not been installed yet or there was error during installation. Please install again.');
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
use DebugBar\StandardDebugBar;
 | 
			
		||||
 | 
			
		||||
if(config('env') === 'dev') {
 | 
			
		||||
	require SYSTEM . 'exception.php';
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
if (config('env') === 'dev' || getBoolean(config('enable_debugbar'))) {
 | 
			
		||||
	$debugBar = new StandardDebugBar();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
if(empty($config['server_path'])) {
 | 
			
		||||
	throw new RuntimeException('Server Path has been not set. Go to config.php and set it.');
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -370,7 +370,14 @@ class POT
 | 
			
		||||
            throw new RuntimeException('Please install PHP pdo extension. MyAAC will not work without it.');
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
	    global $debugBar;
 | 
			
		||||
		if (isset($debugBar)) {
 | 
			
		||||
			$this->db = new DebugBar\DataCollector\PDO\TraceablePDO(new OTS_DB_MySQL($params));
 | 
			
		||||
			$debugBar->addCollector(new DebugBar\DataCollector\PDO\PDOCollector($this->db));
 | 
			
		||||
		}
 | 
			
		||||
		else {
 | 
			
		||||
			$this->db = new OTS_DB_MySQL($params);
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
        $this->db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -123,7 +123,7 @@ if(isset($config['boxes']))
 | 
			
		||||
		  document.getElementById("submenu_"+activeSubmenuItem).style.color = "white";
 | 
			
		||||
		  document.getElementById("ActiveSubmenuItemIcon_"+activeSubmenuItem).style.visibility = "visible";
 | 
			
		||||
		  menus = localStorage.getItem('menus');
 | 
			
		||||
		  if(menus.lastIndexOf("&") === -1) {
 | 
			
		||||
		  if(menus == null || menus.lastIndexOf("&") === -1) {
 | 
			
		||||
			  menus = "news=1&account=0&community=0&library=0&forum=0<?php if (setting('core.gifts_system')) echo '&shops=0'; ?>&";
 | 
			
		||||
		  }
 | 
			
		||||
		  FillMenuArray();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user