joomla系统分析
option=com_helloworld对应/components/com_helloworld 不分前后台
默认值display
比如如访问: index.php?option=com_helloworld&view=helloworld&task=display&layout=default 则先定位到helloworld.php 然后调实例化HelloWorldController
components/com_helloworld/views/helloworld/view.html.php
默认值:default
入口 $app = JFactory::getApplication('site'); Execute the application. $app→execute(); JFactory是什么?