Parantatatam
mag Cookies & Kekse
Da ich gerade etwas wenig Zeit habe: füge einfach folgende Methode zur Klasse Joinable hinzu:
PHP:
public function sort( $key ) {
if ( !in_array( $key, $this->columns ) ) {
return;
}
uksort( $this->rows, function ( $a, $b ) use ( $key ) {
return strcmp( $a[ $key ], $b[ $key ] );
});
}