Beispiel #1
0
 /**
  * @access private
  */
 function ProcessInput()
 {
     $lastSelected = $this->Selected;
     parent::ProcessInput();
     $this->GetSourceOptions();
     if ($this->Selected != $lastSelected) {
         $this->Click();
     }
 }
Beispiel #2
0
 function Dump()
 {
     parent::Dump();
     echo "Selected: {$this->Selected}<br>";
     if ($this->Source) {
         echo "Source: " . $this->Source->Name . "<br>";
     }
     echo "Options: <pre>";
     print_r($this->Options);
     echo "</pre><br>";
 }