Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for displaying mobile phone number in profile screen… #1050

Merged
merged 4 commits into from Oct 18, 2017

Conversation

EreMaijala
Copy link
Contributor

and for Voyager, select phone numbers to display by their type instead of randomly selecting the last one.

…ager: select phone numbers to display by their types instead of randomly selecting the last one.
Copy link
Member

@demiankatz demiankatz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This works for me, but one suggestion before merging....

Also, we should probably add a value to the Demo driver to match, and update the driver spec in the wiki. I can take care of those things if you do not have time; I'm most interested in your opinion on my suggested adjustment.

$patron['phone'] = utf8_encode($row['PHONE_NUMBER']);
} elseif ('Mobile' === $row['PHONE_DESC']) {
$patron['mobile_phone'] = utf8_encode($row['PHONE_NUMBER']);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How would you feel about adding an elseif (!isset($patron['phone'])) here? This way, the 'phone' value prefers the 'Primary' value if set, but if a user has only an "Other" value (or if a library has customized the phone number types to something unexpected) this change doesn't end up hiding phone numbers completely.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The problem here is that some libraries have used the 'Other number' as something different from a phone number altogether (such as a student number), so it should never be displayed. I'm not sure if they have a primary phone number in that case. It's of course possible to add a "display other phone number" setting too, but do you think this is a real need?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My concern is not so much about displaying the "other number" as making sure that we display something. Before making this change, the code is going to display whichever phone number comes last in the database, regardless of its registered type. That is obviously less desirable than what you are proposing. I'd just like to have a safety net so that we don't stop displaying values if they don't conform to our expectations -- what I was proposing would basically fail back to the current behavior in situations where weird values were encountered... but as long as a phone number is marked as primary, it would be smart enough to prefer that value and block out the "other" number. Does that make any sense?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense, but we need to block out the "other" number regardless of whether there's a primary phone number.

Perhaps a setting for what's displayed as the primary and mobile phone numbers would cater all needs, with these are the defaults:

[Profile]
primary_phone_type = "Primary"
mobile_phone_type = "Mobile"

This would also allow you to display just the mobile phone or whatever you want. What do you think?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess my thinking was that if there's a primary number, it would overwrite the other number, thus suppressing it... and if there's only an other number, displaying that might be better than nothing. But ultimately this is probably not an issue to lose a lot of sleep over, given that it has very little impact on anything. If you'd be more comfortable with the configurable [Profile] settings, that would certainly be fine with me, and we could worry about these edge cases if we ever discover that anyone actually cares about them. ;-)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand, but in our case we really need to make sure the "Other" number is never displayed. So the latest version now has the configuration options. We can of course do this locally too if you don't feel comfortable with it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it's fine. I'll likely merge later today if testing goes smoothly.

@EreMaijala
Copy link
Contributor Author

The latest commit adds support for defining which phone number type to use as primary and mobile.

@demiankatz demiankatz merged commit 8789ac9 into vufind-org:master Oct 18, 2017
@EreMaijala EreMaijala deleted the voyager-phone branch June 4, 2018 08:27
demiankatz pushed a commit to demiankatz/vufind that referenced this pull request Jan 14, 2020
…vocabularies

Style fixes for metadata vocabularies branch.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants