Changeset 752
- Timestamp:
- 09/04/08 15:28:33 (3 months ago)
- Files:
-
- addons/camper/AppLauncher.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
addons/camper/AppLauncher.php
r653 r752 8 8 */ 9 9 class AppLauncher extends AbstractController{ 10 pr ivate$app_name=null;11 pr ivate$app_params=array();12 pr ivate$output=null;13 pr ivate$command_line='';14 pr ivate$passthru=false; // indicates whether to use passthru command instead of exec15 pr ivate$use_shell=false;16 10 protected $app_name=null; 11 protected $app_params=array(); 12 protected $output=null; 13 protected $command_line=''; 14 protected $passthru=false; // indicates whether to use passthru command instead of exec 15 protected $use_shell=false; 16 17 17 function setApplication($app_name,$app_params=array()){ 18 18 $this->app_name=$app_name; … … 66 66 return is_array($this->output)?$this->output:array(); 67 67 } 68 68 69 69 function getCommandLine(){ 70 70 // returns the last command line executed
