📄 view.html.php
字号:
<?php
/** * Hello View for Hello World Component * * @package Joomla.Tutorials * @subpackage Components * @link http://dev.joomla.org/component/option,com_jd-wiki/Itemid,31/id,tutorials:components/ * @license GNU/GPL */
jimport( 'joomla.application.component.view');
/**
* HTML View class for the HelloWorld Component
*
* @package Joomla.Tutorials * @subpackage Components
*/
class HelloViewHello extends JView
{
function display($tpl = null)
{ $greeting = $this->get( 'Greeting' ); $this->assignRef( 'greeting', $greeting );
parent::display($tpl);
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -