/** * @access private */ function ProcessInput() { $lastSelected = $this->Selected; parent::ProcessInput(); $this->GetSourceOptions(); if ($this->Selected != $lastSelected) { $this->Click(); } }
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>"; }