mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-25 16:59:21 +02:00

* Migrations up down * Add forum model * Syntactic sugar for db structure changes * Refactor migrations with $up & $down * Fix migrations upgrade and downgrade + Add option to disable auto migrate * Add migrate:to command Usage: php aac migrate:to x (x - database version) * Show error when mail is not enabled * Fixes regarding to init.php * Add migrate command to manually upgrade db, incase auto migrate is disabled * Fixed rest of the migrations * Limit max version of database * Don't allow minus number * Option to clear specified plugin settings by name * Version is required * Fix PHPStan errors * Unset $up after migration, to prevent executing same migration twice * Add database version to output * This is not needed * Update 5.php * Set database_auto_migrate on install * Set blank & color only if current db version supports it * Fix duplicate function declaration
37 lines
783 B
PHP
37 lines
783 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require_once __DIR__ . '/common.php';
|
|
|
|
if(!IS_CLI) {
|
|
echo 'This script can be run only in command line mode.';
|
|
exit(1);
|
|
}
|
|
|
|
require_once SYSTEM . 'functions.php';
|
|
|
|
define('SELF_NAME', basename(__FILE__));
|
|
|
|
use MyAAC\Plugins;
|
|
use Symfony\Component\Console\Application;
|
|
|
|
$application = new Application('MyAAC', MYAAC_VERSION);
|
|
|
|
$commandsGlob = glob(SYSTEM . 'src/Commands/*.php');
|
|
foreach ($commandsGlob as $item) {
|
|
$name = pathinfo($item, PATHINFO_FILENAME);
|
|
if ($name == 'Command') { // ignore base Command class
|
|
continue;
|
|
}
|
|
|
|
$commandPre = '\\MyAAC\Commands\\';
|
|
$application->add(new ($commandPre . $name));
|
|
}
|
|
|
|
$pluginCommands = Plugins::getCommands();
|
|
foreach ($pluginCommands as $item) {
|
|
$application->add(require $item);
|
|
}
|
|
|
|
$application->run();
|