Changeset 752

Show
Ignore:
Timestamp:
09/04/08 15:28:33 (3 months ago)
Author:
camper
Message:

AppLauncher?: private properties set protected

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • addons/camper/AppLauncher.php

    r653 r752  
    88 */ 
    99class AppLauncher extends AbstractController{ 
    10         private $app_name=null; 
    11         private $app_params=array(); 
    12         private $output=null; 
    13         private $command_line=''; 
    14         private $passthru=false;      // indicates whether to use passthru command instead of exec 
    15         private $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 
    1717        function setApplication($app_name,$app_params=array()){ 
    1818                $this->app_name=$app_name; 
     
    6666                return is_array($this->output)?$this->output:array(); 
    6767        } 
    68          
     68 
    6969        function getCommandLine(){ 
    7070                // returns the last command line executed