Dodano sortowanie form dostawy oraz zaktualizowano wersję na 0.224

This commit is contained in:
2024-11-24 21:33:58 +01:00
parent 42210bad4b
commit 6470a77719
6 changed files with 12 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ class Transport implements \ArrayAccess
static public function transport_list()
{
global $mdb;
return $mdb -> select( 'pp_shop_transports', '*', [ 'status' => 1 ] );
return $mdb -> select( 'pp_shop_transports', '*', [ 'status' => 1 ], [ 'ORDER' => [ 'o' => 'ASC' ] ] );
}
public function offsetExists( $offset )