API15

JButtonHelp/fetchId: Difference between revisions

From Joomla! Documentation

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


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


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


===Syntax===
===Syntax===
Line 38: Line 36:
</source>
</source>


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


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

Latest revision as of 00:20, 25 March 2017

Description

Get the button id


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

Syntax

fetchId($name)
Parameter Name Default Value Description
$name $name Button name

Returns

string Button CSS Id

Defined in

libraries/joomla/html/toolbar/button/help.php

Importing

jimport( 'joomla.html.toolbar.button.help' );

Source Body

function fetchId($name)
{
        return $this->_parent->_name.'-'."help";
}


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

Examples

Code Examples