基于Zend的SocialEngine是什么结构

What is the structure of SocialEngine based on Zend

我想知道社交引擎的结构是什么。例如,如果我想转到一个页面,该页面的 URL 是“http://example.com/stores/products”,我如何找到控制器、模型、视图? 当我去方向应用程序时,我看到这些:

languages
libraries
modules
plugins
settings
themes
widgets

当我进入模块时,我看到添加到站点的所有模块包括:

Sitestore
Sitestorealbum
Sitestoreform
Sitestoreproduct
Siteverify
Sitevideo

等等...

当我以 Sitestore 为例,我看到了这些:

Api
controllers
externals
Form
Model
Plugin
settings
View
views
widgets

但即使是现在我也不知道在哪里可以找到我需要的与上述 URL 相关的文件。

如果您想知道每个文件中的内容,请告诉我。

赞赏

您可以从 modules/XYZ/settings/manifest.php 下的 manifest.php 获取控制器和动作名称。

例如,/stores/products

转到模块/Sitestoreproduct/settings/manifest.php

这里可以看到slug_Store模块和Products模块

对于核心模块,您只会在 /settings/manifest.php 中找到 url 结构,但在第三方模块中,SEAO 和其他模块已通过动态扩展子模块。

希望对您的理解有所帮助。