API15

JHTMLGrid/published

From Joomla! Documentation

< API15:JHTMLGrid

The "API15" 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.

[Edit Descripton]


Syntax[edit]

published(&$row, $i, $imgY= 'tick.png', $imgX= 'publish_x.png', $prefix='')
Parameter Name Default Value Description
&$row
$i
$imgY 'tick.png'
$imgX 'publish_x.png'
$prefix

Defined in[edit]

libraries/joomla/html/html/grid.php

Importing[edit]

jimport( 'joomla.html.html.grid' );

Source Body[edit]

function published( &$row, $i, $imgY = 'tick.png', $imgX = 'publish_x.png', $prefix='' )
{
        $img    = $row->published ? $imgY : $imgX;
        $task   = $row->published ? 'unpublish' : 'publish';
        $alt    = $row->published ? JText::_( 'Published' ) : JText::_( 'Unpublished' );
        $action = $row->published ? JText::_( 'Unpublish Item' ) : JText::_( 'Publish item' );

        $href = '
        <a href="javascript:void(0);" onclick="return listItemTask(\'cb'. $i .'\',\''. $prefix.$task .'\')" title="'. $action .'">
        <img src="images/'. $img .'" border="0" alt="'. $alt .'" /></a>'
        ;

        return $href;
}

[Edit See Also] Template:SeeAlso:JHTMLGrid/published

Examples[edit]

Code Examples[edit]