Exemplo n.º 1
0
 public function capture()
 {
     $collector = new Moeroas_Commercebug_Model_Collectorfiles();
     $o = new stdClass();
     $o->information = get_included_files();
     //selfishly do this in a few steps so symlinked module folders are also removed
     //and not placed into the "other" folder
     $o->information = preg_replace('%^.+?/app%', 'app', $o->information);
     $o->information = str_replace($this->getShim()->getBaseDir() . '/', '', $o->information);
     $o->otherInformation = new stdClass();
     $o->otherInformation->baseDir = $this->getBaseDir();
     $collector->collectInformation($o);
 }
Exemplo n.º 2
0
 public function collectInformation($observer)
 {
     $collector = $this->getCollector();
     self::$_phpFiles = $observer->information;
     self::$_otherInfo = $observer->otherInformation;
 }