API15:JButtonHelp/fetchButton/ja
出典: Joomla! ドキュメンテーション
目次 |
Syntax
fetchButton($type='Help', $ref= '', $com=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $type | 'Help' | |
| $ref | ||
| $com | false |
Defined in
libraries/joomla/html/toolbar/button/help.php
Importing
jimport( 'joomla.html.toolbar.button.help' );
Source Body
function fetchButton( $type='Help', $ref = '', $com = false ) { $text = JText::_('Help'); $class = $this->fetchIconClass('help'); $doTask = $this->_getCommand($ref, $com); $html = "<a href=\"#\" onclick=\"$doTask\" class=\"toolbar\">\n"; $html .= "<span class=\"$class\" title=\"$text\">\n"; $html .= "</span>\n"; $html .= "$text\n"; $html .= "</a>\n"; return $html; }
Examples
<CodeExamplesForm />
