mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 09:00:18 +01:00 
			
		
		
		
	ADVICE: there is no Backwards Compatibility with custom tasks, those using the _config instance will be broken or those using the getEnvironmentName().
		
			
				
	
	
		
			14 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class Mage_Command_BuiltIn_Lock
 | 
						|
    extends Mage_Command_CommandAbstract
 | 
						|
    implements Mage_Command_RequiresEnvironment
 | 
						|
{
 | 
						|
    public function run()
 | 
						|
    {
 | 
						|
        $lockFile = '.mage/' . $this->getConfig()->getEnvironment() . '.lock';
 | 
						|
        file_put_contents($lockFile, 'Locked environment at date: ' . date('Y-m-d H:i:s'));
 | 
						|
 | 
						|
        Mage_Console::output('Locked deployment to <light_purple>' . $this->getConfig()->getEnvironment() . '</light_purple> environment', 1, 2);
 | 
						|
    }
 | 
						|
 | 
						|
} |