JButtonCustom/fetchId: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 48: | Line 48: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=fetchId | category=fetchId | ||
category=JButtonCustom | category=JButtonCustom | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 00:20, 25 March 2017
Description
Get the button CSS Id
<! removed transcluded page call, red link never existed >
Syntax
fetchId($type='Custom', $html= '', $id= 'custom')
| Parameter Name | Default Value | Description |
|---|---|---|
| $type | 'Custom' | |
| $html | ||
| $id | 'custom' |
Returns
string Button CSS Id
Defined in
libraries/joomla/html/toolbar/button/custom.php
Importing
jimport( 'joomla.html.toolbar.button.custom' );
Source Body
function fetchId( $type='Custom', $html = '', $id = 'custom' )
{
return $this->_parent->_name.'-'.$id;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples