?? 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 + -