Login or Register

RSS IconRecent posts in this topic

avatar
evoque on Jan 28. 2007. 8: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 on Jan 29. 2007. 3:26 pm
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 issues discussed on this page please write at hi@a51dev.com.

RSS IconRecent posts in this topic