Lines Matching refs:sort
29 * Where to sort in?
57 'sort' => 'none',
70 if( $item == 'sort' ) $data['sort'] = $item;
71 else if( $item == 'rsort' ) $data['sort'] = $item;
118 $sort = $data['sort'] == '' ? 'sort' : $data['sort'];
123 if( $sort == 'sort' ) ksort($json);
124 else if( $sort == 'rsort' ) krsort($json);
129 if( $sort == 'sort' ) asort( $json );
130 else if( $sort == 'rsort' ) arsort( $json );