You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
3.1 KiB
75 lines
3.1 KiB
12 years ago
|
#!/usr/bin/env php
|
||
|
<?php
|
||
12 years ago
|
/* For licensing terms, see /license.txt */
|
||
|
|
||
12 years ago
|
set_time_limit(0);
|
||
|
|
||
12 years ago
|
if (PHP_SAPI != 'cli') {
|
||
|
die("Cannot be called by any other method than the command line.");
|
||
|
}
|
||
|
|
||
12 years ago
|
require_once dirname(__FILE__).'/main/inc/global.inc.php';
|
||
12 years ago
|
|
||
|
// Variable $helperSet is defined inside cli-config.php
|
||
12 years ago
|
require __DIR__.'/console-config.php';
|
||
12 years ago
|
|
||
12 years ago
|
$cli = new \Symfony\Component\Console\Application('Chamilo CLI');
|
||
12 years ago
|
$cli->setCatchExceptions(true);
|
||
|
|
||
|
$helperSet = $cli->getHelperSet();
|
||
|
foreach ($helpers as $name => $helper) {
|
||
|
$helperSet->set($helper, $name);
|
||
|
}
|
||
|
|
||
|
$cli->addCommands(array(
|
||
12 years ago
|
// DBAL Commands
|
||
|
new \Doctrine\DBAL\Tools\Console\Command\RunSqlCommand(),
|
||
|
new \Doctrine\DBAL\Tools\Console\Command\ImportCommand(),
|
||
12 years ago
|
|
||
12 years ago
|
// ORM Commands
|
||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\MetadataCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\ResultCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\QueryCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\DropCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\EnsureProductionSettingsCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\ConvertDoctrine1SchemaCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateRepositoriesCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateEntitiesCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\ConvertMappingCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\RunDqlCommand(),
|
||
|
new \Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand(),
|
||
12 years ago
|
|
||
12 years ago
|
// Migrations Commands
|
||
|
new \Doctrine\DBAL\Migrations\Tools\Console\Command\DiffCommand(),
|
||
|
new \Doctrine\DBAL\Migrations\Tools\Console\Command\ExecuteCommand(),
|
||
|
new \Doctrine\DBAL\Migrations\Tools\Console\Command\GenerateCommand(),
|
||
|
new \Doctrine\DBAL\Migrations\Tools\Console\Command\MigrateCommand(),
|
||
|
new \Doctrine\DBAL\Migrations\Tools\Console\Command\StatusCommand(),
|
||
|
new \Doctrine\DBAL\Migrations\Tools\Console\Command\VersionCommand(),
|
||
12 years ago
|
|
||
12 years ago
|
//Chamilo commands
|
||
|
new ChamiloLMS\Command\Database\UpgradeCommand(),
|
||
|
new ChamiloLMS\Command\Database\InstallCommand(),
|
||
12 years ago
|
//new ChamiloLMS\Command\Database\InstallExtendCommand(),
|
||
12 years ago
|
new ChamiloLMS\Command\Database\StatusCommand(),
|
||
|
new ChamiloLMS\Command\Database\SetupCommand(),
|
||
12 years ago
|
|
||
12 years ago
|
//new ChamiloLMS\Command\Template\AsseticDumpCommand(),
|
||
|
|
||
12 years ago
|
//Chash commands
|
||
|
new Chash\Command\Database\RunSQLCommand(),
|
||
|
new Chash\Command\Database\DumpCommand(),
|
||
|
new Chash\Command\Database\RestoreCommand(),
|
||
|
new Chash\Command\Database\SQLCountCommand(),
|
||
|
new Chash\Command\Database\FullBackupCommand(),
|
||
|
new Chash\Command\Database\DropDatabaseCommand(),
|
||
|
new Chash\Command\Files\CleanTempFolderCommand(),
|
||
|
new Chash\Command\Files\CleanConfigFiles(),
|
||
|
new Chash\Command\Translation\ExportLanguageCommand(),
|
||
|
new Chash\Command\Translation\ImportLanguageCommand()
|
||
|
));
|
||
12 years ago
|
$cli->run();
|