API15

JPagination/orderUpIcon

From Joomla! Documentation

< API15:JPagination

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.

Description[edit]

Return the icon to move an item UP

[<! removed edit link to red link >]

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

Syntax[edit]

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[edit]

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

Defined in[edit]

libraries/joomla/html/pagination.php

Importing[edit]

jimport( 'joomla.html.pagination' );

Source Body[edit]

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[edit]

Code Examples[edit]