echo "yes/no\n"; $confirmation = trim(fgets(STDIN)); if ($confirmation !== 'yes') { echo "abort...\n"; exit(0); } } //-- Clear cache if ($command == 'cc') { if (Vars::tableExist() && ($var = Vars::findByName('system'))) { $var->delete(); echo " - System var cache has been cleared.\n"; } if ($arg1 == 'all') { echo " - Drop table 'vars' "; echo Vars::dropTable() ? "success\n" : "fail\n"; echo " - Drop table 'user' "; echo User::dropTable() ? "success\n" : "fail\n"; } } //-- Import DB if ($command == 'import' && $arg1 == 'db' && (is_null($arg2) || $arg2 == 'core')) { echo " - Create table 'vars' "; echo Vars::createTableIfNotExist() ? "success\n" : "fail\n"; echo " - Create table 'user' "; echo User::createTableIfNotExist() ? "success\n" : "fail\n"; } //-- Import Fixture if ($command == 'import' && $arg1 == 'fixture' && (is_null($arg2) || $arg2 == 'user')) { User::importFixture(); echo " - Import fixture for User\n";