Lines Matching full:sort

1351 		// sort columns according to explicit/implicit tabindex
1355 // sort record according to that index
1573 * @param string $sortColumn name of column to optionally sort by
1574 * @param boolean $sortAscendingly if true, request to sort ascendingly
1713 if ( trim( $state['sort'] ) === '' )
1714 $state['sort'] = $this->options['sort'];
1720 'sort' => trim( $state['sort'] ),
1729 if ( preg_match( '/^(skip|num|sort)(.+)$/i', $name, $m ) )
1734 $updated[$name] = ( $name == 'sort' ) ? trim( $m[2] )
1758 if ( $sort )
1761 $sortDescendingly = ( $sort[0] == '!' );
1762 $sortCol = $sortDescendingly ? strtok( substr( $sort, 1 ), ',' )
1763 : $sort;
1784 $skip, $sort, $meta, $expectInput,
1796 $sort, $meta, $expectInput, $listAll ) argument
1980 $sortDescendingly = ( $sort[0] == '!' );
1982 $sort = substr( $sort, 1 );
1984 $sort = trim( strtok( $sort, ',' ) );
1997 if ( ( $sort == $column ) && $sortDescendingly )
2003 else if ( $sort == $column )
2018 'type="image" name="' . $this->varname( 'sort' . $name ).
2446 * @param string $ruleName preferred sort of access to authorize for
2447 * @param string $optRuleName optional fallback sort of access if first
2450 * rule set is managing any selected sort of access
2462 // use row-related rule set if it's managing any given sort of access
2474 // use table-related rule set if it's managin any given sort of access
2634 $sort = preg_split( '/[,\s]+/', trim( $state['sort'] ) );
2636 foreach ( $sort as $key => $desc )
2652 $sort[$key] = $col . ( $dir ? ' DESC' : ' ASC' );
2656 unset( $sort[$key] );
2660 $order = count( $sort ) ? ' ORDER BY ' . implode( ', ', $sort ) : '';