API16

JButtonCustom/fetchId: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Get the button CSS Id <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </...
 
m preparing for archive only
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
Get the button CSS Id
Get the button CSS Id


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JButtonCustom/fetchId|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JButtonCustom/fetchId}}
 
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 46: Line 44:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JButtonCustom/fetchId|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JButtonCustom/fetchId}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=fetchId
  category=fetchId
  category=JButtonCustom
  category=JButtonCustom
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Latest revision as of 01:21, 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

public function fetchId($type='Custom', $html = '', $id = 'custom')
{
        return $this->_parent->getName().'-'.$id;
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples