Example #1
0
 function __construct($plugin_name, $other_commands = "")
 {
     $this->other_commands = $other_commands;
     $this->commands_as_string = preg_replace("/\\s/", " ", $other_commands);
     $this->plugin_name = $plugin_name;
     parent::__construct();
 }
Example #2
0
 function __construct($name, $flags, $dependency)
 {
     $this->name = $name;
     $this->flags = $flags;
     $this->dependencies = array($dependency);
     parent::__construct();
 }
 function __construct($name, $command_line, $dependecy)
 {
     $this->name = $name;
     $this->command_line = $command_line;
     $this->dependencies = array($dependecy);
     parent::__construct();
 }
Example #4
0
 function __construct($pass, $dump = "dump", $dependency = "BasicParseTest")
 {
     $this->pass = $pass;
     // this might be dump-uppered
     $this->dump = $dump;
     $this->dependencies = array($dependency);
     parent::__construct();
 }
Example #5
0
 function __construct($last_pass, $dump = "dump", $dependency = "BasicParseTest")
 {
     $this->last_pass = $last_pass;
     $this->name = "cb_{$last_pass}";
     // this might be dump-uppered
     $this->dump = $dump;
     $this->dependencies = array($dependency);
     parent::__construct();
 }