mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 09:00:18 +01:00 
			
		
		
		
	
		
			
	
	
		
			27 lines
		
	
	
		
			748 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			748 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								class Mage_Task_BuiltIn_Symfony2_AssetsInstall
							 | 
						||
| 
								 | 
							
								    extends Mage_Task_TaskAbstract
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public function getName()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        return 'Symfony v2 - Assets Install [built-in]';
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public function run()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								    	// Options
							 | 
						||
| 
								 | 
							
								    	$target = $this->getParameter('target', 'web');
							 | 
						||
| 
								 | 
							
								    	$symlink = $this->getParameter('symlink', false);
							 | 
						||
| 
								 | 
							
								    	$relative = $this->getParameter('relative', false);
							 | 
						||
| 
								 | 
							
								    	$env = $this->getParameter('env', 'dev');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    	if ($relative) {
							 | 
						||
| 
								 | 
							
								    		$symlink = true;
							 | 
						||
| 
								 | 
							
								    	}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        $command = 'app/console assets:install ' . ($symlink ? '--symlink' : '') .  ' ' . ($relative ? '--relative' : '') .  ' --env=' . $env . ' ' . $target;
							 | 
						||
| 
								 | 
							
								        $result = $this->_runLocalCommand($command);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        return $result;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |