API17

Difference between revisions of "JHtmlJGrid::checkedout"

From Joomla! Documentation

(Layout updates)
m (preparing for archive only)
 
(5 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
Returns a checked-out icon.  
 
Returns a checked-out icon.  
  
{{Description:JHtmlJGrid::checkedout}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JHtmlJGrid::checkedout|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public static JHtmlJGrid::checkedout ($i, $editorName, $time, $prefix='', $enabled=false, $checkbox='cb')
+
public static function checkedout (
 +
        $i
 +
        $editorName
 +
        $time
 +
        $prefix=''
 +
        $enabled=false
 +
        $checkbox='cb'
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 52: Line 54:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' string The required HTML.
string The required HTML.
+
* '''Defined''' on line 264 of libraries/joomla/html/html/jgrid.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/html/html/jgrid.php (line 264)
 
* see source code in [[jplatform:html/html/jgrid.php#cl-264|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
<span class="editsection" style="font-size:76%;">
+
* {{JVer|11.1}} '''JHtmlJGrid::checkedout source code''' on [[jplatform:html/html/jgrid.php#cl-256|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JHtmlJGrid::checkedout|Edit See Also]]<nowiki>]</nowiki>
+
* {{JVer|11.1}} Class [[API17:JHtmlJGrid|JHtmlJGrid]]
</span>
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Html|Html]]
* [[JHtmlJGrid/11.1|JHtmlJGrid]]
+
* [[API17:JHtmlJGrid::checkedout|Other versions of JHtmlJGrid::checkedout]]
* [[JHtmlJGrid::checkedout|Other versions of this method]]
+
 
{{SeeAlso:JHtmlJGrid::checkedout}}
+
 
===Examples===
+
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JHtmlJGrid::checkedout
 
category=JHtmlJGrid::checkedout
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JHtmlJGrid]][[Category:JHtmlJGrid::checkedout]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:12, 24 March 2017

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JHtmlJGrid::checkedout[edit]

Description[edit]

Returns a checked-out icon.


public static function checkedout (
        $i
        $editorName
        $time
        $prefix=''
        $enabled=false
        $checkbox='cb'
)
Parameter Type Default Description
$i integer The row index.
$editorName string The name of the editor.
$time string The time that the object was checked out.
$prefix array An optional task prefix or an array of options
$enabled string false $text The text to display
$checkbox boolean 'cb' $enabled True to enable the action.
  • Returns string The required HTML.
  • Defined on line 264 of libraries/joomla/html/html/jgrid.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]