API15

API15:JPagination/orderUpIcon

From Joomla! Documentation

Description

Return the icon to move an item UP

[<! removed edit link to red link >]

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

Syntax

orderUpIcon($i, $condition=true, $task= 'orderup', $alt= 'Move Up', $enabled=true)
Parameter Name Default Value Description
$i $i The row index
$condition true $condition True to show the icon
$task 'orderup' $task The task to fire
$alt 'Move Up' $alt The image alternate text string
$enabled true

Returns

string Either the icon to move an item up or a space

Defined in

libraries/joomla/html/pagination.php

Importing

jimport( 'joomla.html.pagination' );

Source Body

function orderUpIcon($i, $condition = true, $task = 'orderup', $alt = 'Move Up', $enabled = true)
{
        $alt = JText::_($alt);

        $html = '&nbsp;';
        if (($i > 0 || ($i + $this->limitstart > 0)) && $condition)
        {
                if($enabled) {
                        $html   = '<a href="#reorder" onclick="return listItemTask(\'cb'.$i.'\',\''.$task.'\')" title="'.$alt.'">';
                        $html   .= '   <img src="images/uparrow.png" width="16" height="16" border="0" alt="'.$alt.'" />';
                        $html   .= '</a>';
                } else {
                        $html   = '<img src="images/uparrow0.png" width="16" height="16" border="0" alt="'.$alt.'" />';
                }
        }

        return $html;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples