├── .gitattributes ├── .langignore ├── Backup.php ├── LICENSE ├── README.md ├── Restore.php ├── Webrtc.class.php ├── functions.inc.php ├── functions.inc ├── get_set.php └── hook_core.php ├── i18n ├── cs │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── de_DE │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── es_ES │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── fa_IR │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── pl │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── pt_BR │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── ru │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── uk_UA │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── vi │ └── LC_MESSAGES │ │ ├── webrtc.mo │ │ └── webrtc.po ├── webrtc.pot └── zh_CN │ └── LC_MESSAGES │ ├── webrtc.mo │ └── webrtc.po ├── module.xml ├── ucp ├── Webrtc.class.php ├── assets │ ├── images │ │ └── no_user_logo.png │ ├── js │ │ └── global.js │ ├── jssiplibs │ │ ├── sip-0.7.6.min.js │ │ └── sip-0.7.7.min.js │ ├── less │ │ └── bootstrap.less │ └── sounds │ │ ├── US_Ringback.mp3 │ │ ├── US_Ringback.ogg │ │ ├── ring.mp3 │ │ └── ring.ogg └── views │ ├── phone.php │ └── settings.php ├── utests ├── InstallVersionTest.php └── setuptests.php └── views └── ucp_config.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/webrtc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.langignore: -------------------------------------------------------------------------------- 1 | jssip-0.6.30.js 2 | -------------------------------------------------------------------------------- /Backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/webrtc/HEAD/Backup.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/webrtc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/webrtc/HEAD/README.md -------------------------------------------------------------------------------- /Restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/webrtc/HEAD/Restore.php -------------------------------------------------------------------------------- /Webrtc.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/webrtc/HEAD/Webrtc.class.php -------------------------------------------------------------------------------- /functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/webrtc/HEAD/functions.inc.php -------------------------------------------------------------------------------- /functions.inc/get_set.php: -------------------------------------------------------------------------------- 1 |