检索所有核心和自定义入口点列表的最佳方法是什么?

时间:2017-04-19 07:57:49

标签: sugarcrm suitecrm

我在SugarCRM和SuiteCRM中使用自定义入口点工作了很多。我想知道是否有一种快速的方法来列出每个入口点和与之相关的文件?

1 个答案:

答案 0 :(得分:0)

可以在很多地方定义入口点,这里的关键是查找所有定义文件,然后cat找到每个定义文件以查找他们正在做的事情。

可能的入口点位置

  • 自定义Extension-Framework,应用程序范围的入口点:
    • $ ls -1d custom/Extension/application/Ext/EntryPointRegistry
  • 自定义Extension-Framework,特定于模块的入口点:
    • $ ls -1d custom/Extension/modules/*/Ext/EntryPointRegistry
  • 自定义非ext-framework(旧版),应用程序范围的入口点
    • $ ls custom/include/MVC/Controller/entry_point_registry.php
  • 自定义非ext-framework(传统)模块特定入口点位于自定义/模块中...
    • $ ls custom/modules/*/entry_point_registry.php
  • 这些也可以在根级别模块目录中。我认为没有任何开箱即用的模块可以做到这一点,但你可以使用自定义模块
    • $ ls modules/*/entry_point_registry.php
  • 开箱即用的应用程序广泛入口点......
    • include/MVC/Controller/entry_point_registry.php