यहाँ एक छोटी सी स्क्रिप्ट है जिसका उपयोग मैं यह जांचने के लिए करता हूँ कि क्या कोई मॉडल, ब्लॉक या हेल्पर्स ओवरराइट किया गया है। दुर्भाग्य से यह नियंत्रकों के लिए काम नहीं करता है और यह अक्षम मॉड्यूल को भी ध्यान में रखता है। लेकिन मेरे दृष्टिकोण से यह कोई बड़ी बात नहीं है।
मुख्य विचार कॉन्फ़िगर फ़ाइलों को पार्स करना और <rewrite>
टैग की तलाश करना है। के रूप में एक ही स्तर पर एक php फ़ाइल बनाएँ index.php
। आइए इसे कॉल करते हैं rewrites.php
, इस सामग्री के साथ:
<?php
$folders = array('app/code/local/', 'app/code/community/');//folders to parse
$configFiles = array();
foreach ($folders as $folder){
$files = glob($folder.'*/*/etc/config.xml');//get all config.xml files in the specified folder
$configFiles = array_merge($configFiles, $files);//merge with the rest of the config files
}
$rewrites = array();//list of all rewrites
foreach ($configFiles as $file){
$dom = new DOMDocument;
$dom->loadXML(file_get_contents($file));
$xpath = new DOMXPath($dom);
$path = '//rewrite/*';//search for tags named 'rewrite'
$text = $xpath->query($path);
foreach ($text as $rewriteElement){
$type = $rewriteElement->parentNode->parentNode->parentNode->tagName;//what is overwritten (model, block, helper)
$parent = $rewriteElement->parentNode->parentNode->tagName;//module identifier that is being rewritten (core, catalog, sales, ...)
$name = $rewriteElement->tagName;//element that is rewritten (layout, product, category, order)
foreach ($rewriteElement->childNodes as $element){
$rewrites[$type][$parent.'/'.$name][] = $element->textContent;//class that rewrites it
}
}
}
echo "<pre>";print_r($rewrites);
इसे ब्राउज़र में कॉल करते समय आपको कुछ इस तरह से देखना चाहिए:
Array
(
[models] => Array
(
[core/layout] => Array
(
[0] => Namespace_Module_Model_Core_Layout
[1] => Namespace1_Module1_Model_Core_Layout //if the second element is present it means there is a possible conflict
)
[...] => ....
)
[blocks] => ...
[helpers] => ...
)
इसका मतलब यह है कि मॉडल 'core/layout'
द्वारा लिखित हैNamespace_Module_Model_Core_Layout
यदि आपके पास सरणी ['कोर / लेआउट'] में 2 या अधिक मान हैं, तो इसका मतलब है कि एक संघर्ष है।
और आप आसानी से उस मॉड्यूल की पहचान कर सकते हैं जो कुछ के आधार पर ओवरराइट करता है Namespace
औरModule
grep