Skip to content

Commit

Permalink
Remove dependency on old Horizon driver
Browse files Browse the repository at this point in the history
  • Loading branch information
mdnoble73 committed Jun 12, 2024
1 parent f7c5465 commit fcb723d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/web/Drivers/HorizonAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require_once ROOT_DIR . '/Drivers/Horizon.php';

abstract class HorizonAPI extends Horizon {
abstract class HorizonAPI extends AbstractIlsDriver {

//TODO: Additional caching of sessionIds by patron
private static $sessionIdsForUsers = [];
Expand Down
8 changes: 8 additions & 0 deletions code/web/Drivers/SirsiDynixROA.php
Original file line number Diff line number Diff line change
Expand Up @@ -3449,6 +3449,10 @@ public function showDateWhenSuspending(): bool {
return true;
}

public function showOutDateInCheckouts(): bool {
return true;
}

public function reactivateDateNotRequired(): bool {
return true;
}
Expand All @@ -3457,6 +3461,10 @@ public function showTimesRenewed(): bool {
return true;
}

public function showWaitListInCheckouts(): bool {
return true;
}

public function showHoldPlacedDate(): bool {
return true;
}
Expand Down
3 changes: 3 additions & 0 deletions code/web/release_notes/24.05.10.MD
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
- Update phone numbers appropriately based on primary and work phone numbers in Contact Information. (Ticket 126596) (*MDN*)
- When using the "Pickup at" setting within the Format Map, properly load available locations when the location code is not the entire location code of the item. (Tickets 128864, 130706) (*MDN*)

### Symphony Updates
- Remove dependency on old Horizon driver. (*MDN*)

### User Account Updates
- Allow work phone to be updated independently of the main phone number.

Expand Down

0 comments on commit fcb723d

Please sign in to comment.