Exemplo n.º 1
0
// prod protection for cc all
if ($command == 'cc' && $arg1 == 'all' && ENV == 'prod') {
    echo "*********************************************************************\n";
    echo " !!! This site is now under PROD mode. ARE YOU SURE TO CLEAR ALL !!! \n";
    echo "*********************************************************************\n";
    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' ";