Example #1
1
 /**
  * Gets content panel for the Debugbar
  *
  * @return string
  */
 public function getPanel()
 {
     $html = '<h4>Registered Instances</h4>';
     $this->_registry->ksort();
     $html .= $this->_cleanData($this->_registry);
     return $html;
 }
Example #2
1
 /**
  * Gets content panel for the Debugbar
  *
  * @return string
  */
 public function getPanel()
 {
     $html = '<h4>Entr&eacute;es du registre (Zend_Registry)</h4>';
     $this->_registry->ksort();
     $html .= $this->_cleanData($this->_registry);
     return $html;
 }
Example #3
1
 /**
  * Gets content panel for the Debugbar
  *
  * @return string
  */
 public function getPanel()
 {
     $html = '<h4>Registered Instances</h4>';
     $this->_registry->ksort();
     foreach ($this->_registry as $k => $v) {
         if (is_object($v)) {
             $this->message->addRow(array($k, get_class($v)));
         } else {
             $this->message->addRow(array($k, $v));
         }
     }
 }