mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
* Update provision.php
* Update y000000000124.cfg
Added {$yealink_dnd_allow} so that you can remove DND from the phone
* Added all the Polycom Templates separately
* Update app_config.php
* Update app_config.php
* Delete resources/templates/provision/polycom/IP321 directory
* Revert "Delete resources/templates/provision/polycom/IP321 directory"
This reverts commit 6f532a37bb.
* Delete resources/templates/provision/polycom directory
* Working on making the file Lowercase
* Still working on making it lowercase
* Update the Description of Polycom Firmwares
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Update {$mac}.cfg
* Updated the name of the Sound Station Duo to just Duo
* Update app_config.php
29 lines
622 B
XML
29 lines
622 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<directory>
|
|
<item_list>
|
|
{assign var=x value=1}
|
|
{foreach $contacts as $row}
|
|
<item>
|
|
{if $row.contact_name_given != ""}
|
|
<ln>{$row.contact_name_family}</ln>
|
|
<fn>{$row.contact_name_given}</fn>
|
|
{else}
|
|
<ln>{$row.contact_organization}</ln>
|
|
{/if}
|
|
{if $row.phone_number != ""}
|
|
<ct>{$row.phone_number}</ct>
|
|
{else}
|
|
<ct>{$row.phone_extension}</ct>
|
|
{/if}
|
|
<rt>7</rt>
|
|
<dc/>
|
|
<ad>0</ad>
|
|
<ar>0</ar>
|
|
<bw>0</bw>
|
|
<bb>0</bb>
|
|
</item>
|
|
{assign var=x value=$x+1}
|
|
{/foreach}
|
|
</item_list>
|
|
</directory>
|