eZ Publish的社區項目2012.6是一個eZ Publish的5.0版本的eZ的發佈和你提到的模塊可能是一個自定義的基礎上,傳統項目。
這意味着它的源代碼應該在ezpublish_legacy/extension /中。
eZ Publish 5要求傳統模塊在其module.ini.append.php
中有明確的定義。
首先,找到您的自定義模塊的擴展名。你可能有這樣的ezpublish_legacy/extension/<EXTENSIONNAME>/modules/eventcalendar/
目錄定義了一個名爲fullcalendarprogramme.php
一個模塊視圖然後在ezpublish_legacy/extension/<EXTENSIONNAME>/settings/module.ini.append.php
編輯相關module.ini
文件,並確保它看起來像這樣:
<?php /* #?ini charset="utf-8"?
[ModuleSettings]
ExtensionRepositories[]=EXTENSIONNAME
ModuleList[]=eventcalendar
*/
注意,fullcalendarprogramme
觀點可能被定義在另一個腳本。您可以在模塊的module.php
文件中找到視圖名稱和腳本之間的映射:
$ViewList['fullcalendarprogramme'] = array(
'script' => 'fullcalendarprogramme.php'
);
您是否在該問題上取得了進展?如果是,請考慮將其標記爲已解決。 – foobar