API15

JPagination/orderDownIcon

From Joomla! Documentation

< API15:JPagination
Revision as of 13:39, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

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 DOWN

[<! removed edit link to red link >]

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

Syntax[edit]

orderDownIcon($i, $n, $condition=true, $task= 'orderdown', $alt= 'Move Down', $enabled=true)
Parameter Name Default Value Description
$i $i The row index
$n $n The number of items in the list
$condition true $condition True to show the icon
$task 'orderdown' $task The task to fire
$alt 'Move Down' $alt The image alternate text string
$enabled true

Returns[edit]

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

Defined in[edit]

libraries/joomla/html/pagination.php

Importing[edit]

jimport( 'joomla.html.pagination' );

Source Body[edit]

function orderDownIcon($i, $n, $condition = true, $task = 'orderdown', $alt = 'Move Down', $enabled = true)
{
        $alt = JText::_($alt);

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

<CodeExamplesForm />