从app目录中提取Windows中的magento事件

时间:2013-03-02 10:33:57

标签: windows magento grep

在这个Magento help page中,我看到了这个命令:

  

grep -rin -B2 -A2“Mage :: dispatchEvent”app / *> events.txt

如何通过Windows命令行或.bat文件执行此操作?或者你认为通过php编程更容易完成?

2 个答案:

答案 0 :(得分:1)

我是通过PHP Magento完成的,但我想知道是否可以通过Windows命令行完成。

//Load Magento
require_once('app/Mage.php');
Mage::app();
Mage::setIsDeveloperMode(true);

//Get Config
//header('Content-Type: text/xml');         
header('Content-Type: text/plain');         
$config = Mage::getConfig()->loadModulesConfiguration('config.xml')->getNode('global/events');              
$events = $config[0];
foreach($events as $item){      
    echo $item->getName()." \n";
}   

答案 1 :(得分:0)

有windows的grep: http://www.wingrep.com/

回答了问题:What are good grep tools for Windows?