This topic is locked, no new messages can be posted
avatar evoque Pro Jan 28. 2007. 2:44 pm
I'd love to see phone numbers (except for the fax number) in the profile pages use callto:// URIs so calls can be initiated using Skype or Jajah.
avatar viceroy321 Jan 29. 2007. 9:26 am
that would be an ideal example for a very small, very particular plugin. plugin support will be added in version 0.8

if you want to add it yourself, it is only a trivial change to application\views\user\user_card.php

change

<code>
<div><span><?php echo lang('office phone number') ?>:</span> <?php echo $user->getOfficeNumber() ? clean($user->getOfficeNumber()) : lang('n/a') ?></div>
</code>

into

<code>
<div><span><?php echo lang('office phone number') ?>:</span> <a href="callto://<?php echo $user->getOfficeNumber() ? clean($user->getOfficeNumber()) : lang('n/a') ?>" ><?php echo $user->getOfficeNumber() ? clean($user->getOfficeNumber()) : lang('n/a') ?></a></div>
</code>


i have not tried this myself, and i don't quite know if my skype-url is correct, but have a look at it.

Topic is locked

If you have something important to say about the issues discussed in this post please write at hi@a51dev.com.