2012-10-29 70 views
3

的direct_front_name標籤有些模塊在其模塊的配置有<request><direct_front_name>...</direct_front_name></request>,例如xmlconnectapi。這個標籤是用來做什麼的?什麼是在Magento

我認爲這是:
xmlconnectapi均用作網站的直接入口點(作爲從工地內達到大多不是正常的模塊)。因此,在與選項組合在您的商店網址,使用店內碼,你可以指定一個direct_front_end代碼,從而使存儲代碼沒有必要爲這些模塊。這樣在沒有商店代碼的情況下調用它們時不會有404。

(類回答它自己,但不能在網上找到關於它的任何信息。可能是使用的他人。也許有人有一些補充。)

+0

你的意思是'direct_front_name'? – benmarks

+0

你說得對,對不起。編輯它:-) –

回答

2

你是完全正確的。而PHP的DOC清楚地說明如此:

Mage_Core_Controller_Request_Http::isDirectAccessFrontendName() : 

/** 
    * Check if code declared as direct access frontend name 
    * this mean what this url can be used without store code 
    * 
    * @param string $code 
    * @return bool 
    */ 
    public function isDirectAccessFrontendName($code) 
+0

啊,你說得對。應該檢查一下..謝謝:-) –