Ejemplo n.º 1
0
 /**
  * Returns the part of the html output that occurred since the call to start_capture
  * and removes this part from the current html output
  * @param $offset mixed The value returned by start_capture
  * @return string The part of the html output that was added since the call to start_capture
  */
 public function end_capture($offset)
 {
     if (is_array($offset)) {
         if ($this->m_oTabs->TabExists($offset['tc'], $offset['tab'])) {
             $sCaptured = $this->m_oTabs->TruncateTab($offset['tc'], $offset['tab'], $offset['offset']);
         } else {
             $sCaptured = '';
         }
     } else {
         $sCaptured = parent::end_capture($offset);
     }
     return $sCaptured;
 }