├── .dok └── image │ ├── Demo_1s.gif │ ├── Demo_1s5.gif │ ├── Demo_2s.gif │ ├── Demo_s8.gif │ └── sip_model.jpg ├── .gitignore ├── README.md ├── README.ru.md ├── Sccp_manager.class.php ├── Sccp_manager.inc ├── aminterface │ ├── Event.class.php │ ├── Message.class.php │ ├── Response.class.php │ ├── aminterface.class.php │ └── oldinterface.class.php ├── dbinterface.class.php ├── extconfigs.class.php ├── sipconfigs.class.php ├── srvinterface.class.php └── xmlinterface.class.php ├── Technical.note ├── ATA.txt ├── Conferencing.txt ├── RedialMenu.txt ├── SEP0000000000.cnf.xml_annotated ├── SEPXML.txt ├── backgroundImage.txt ├── dialplan.txt ├── freppbx.txt ├── help.tftprewrite ├── make_sccp.txt └── sccp.conf.annotated ├── assets ├── css │ └── sccp_manager.css ├── images │ └── arrow_up_down.png └── js │ ├── jquery.selectlistactions.js │ └── sccp_manager.js ├── conf ├── SEP0000000000.cnf.xml_791x_sip_template ├── SEP0000000000.cnf.xml_791x_template ├── SEP0000000000.cnf.xml_7925_sip_template ├── SEP0000000000.cnf.xml_7925_template ├── SEP0000000000.cnf.xml_7937_template ├── SEP0000000000.cnf.xml_7940_template ├── SEP0000000000.cnf.xml_796x_template ├── SEP0000000000.cnf.xml_7975_template ├── SEP0000000000.cnf.xml_797x_template ├── SEP0000000000.cnf.xml_79df_sip_template ├── SEP0000000000.cnf.xml_79df_template ├── SEP0000000000.cnf.xml_99xx_sip_template ├── SEP0000000000.cnf.xml_ATA_template ├── SIPDefaultSoftKey.xml_template ├── SIPTypeSoftKey.xml_template ├── Sccp.class.php ├── Sccp.class.php.v431 ├── Sccp.class.php.v433 ├── XMLDefault.cnf.xml_template ├── dialplan.xml_template ├── sccp.conf ├── sccpgeneral.xml ├── sccpgeneral.xml.v431 ├── sccpgeneral.xml.v433 ├── sccpsimple.xml.v431 └── sccpsimple.xml.v433 ├── contrib ├── index.cnf ├── rewrite.rules └── tftp.xinetd ├── functions.inc.php ├── i18n ├── ru_RU │ └── LC_MESSAGES │ │ ├── sccp_manager.mo │ │ └── sccp_manager.po └── sccp_manager.pot ├── install.php ├── module.xml ├── page.html.php ├── page.sccp_adv.php ├── page.sccp_phone.php ├── page.sccpsettings.php ├── uninstall.php └── views ├── advserver.dialtemplate.php ├── advserver.keyset.php ├── advserver.model.php ├── form.adddevice.php ├── form.addruser.php ├── form.addsdevice.php ├── form.buttons.php ├── form.devadvanced.php ├── form.dptemplate.php ├── form.sbuttons.php ├── formShow.php ├── formShowError.php ├── hardware.extension.php ├── hardware.phone.php ├── hardware.rnav.php ├── hardware.sphone.php ├── server.advanced.php ├── server.codec.php ├── server.datetime.php ├── server.device.php ├── server.info.php ├── server.setting.php └── server.url.php /.dok/image/Demo_1s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/.dok/image/Demo_1s.gif -------------------------------------------------------------------------------- /.dok/image/Demo_1s5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/.dok/image/Demo_1s5.gif -------------------------------------------------------------------------------- /.dok/image/Demo_2s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/.dok/image/Demo_2s.gif -------------------------------------------------------------------------------- /.dok/image/Demo_s8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/.dok/image/Demo_s8.gif -------------------------------------------------------------------------------- /.dok/image/sip_model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/.dok/image/sip_model.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/README.ru.md -------------------------------------------------------------------------------- /Sccp_manager.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/aminterface/Event.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/aminterface/Event.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/aminterface/Message.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/aminterface/Message.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/aminterface/Response.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/aminterface/Response.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/aminterface/aminterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/aminterface/aminterface.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/aminterface/oldinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/aminterface/oldinterface.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/dbinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/dbinterface.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/extconfigs.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/extconfigs.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/sipconfigs.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/sipconfigs.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/srvinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/srvinterface.class.php -------------------------------------------------------------------------------- /Sccp_manager.inc/xmlinterface.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Sccp_manager.inc/xmlinterface.class.php -------------------------------------------------------------------------------- /Technical.note/ATA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/ATA.txt -------------------------------------------------------------------------------- /Technical.note/Conferencing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/Conferencing.txt -------------------------------------------------------------------------------- /Technical.note/RedialMenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/RedialMenu.txt -------------------------------------------------------------------------------- /Technical.note/SEP0000000000.cnf.xml_annotated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/SEP0000000000.cnf.xml_annotated -------------------------------------------------------------------------------- /Technical.note/SEPXML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/SEPXML.txt -------------------------------------------------------------------------------- /Technical.note/backgroundImage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/backgroundImage.txt -------------------------------------------------------------------------------- /Technical.note/dialplan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/dialplan.txt -------------------------------------------------------------------------------- /Technical.note/freppbx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/freppbx.txt -------------------------------------------------------------------------------- /Technical.note/help.tftprewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/help.tftprewrite -------------------------------------------------------------------------------- /Technical.note/make_sccp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/make_sccp.txt -------------------------------------------------------------------------------- /Technical.note/sccp.conf.annotated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/Technical.note/sccp.conf.annotated -------------------------------------------------------------------------------- /assets/css/sccp_manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/assets/css/sccp_manager.css -------------------------------------------------------------------------------- /assets/images/arrow_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/assets/images/arrow_up_down.png -------------------------------------------------------------------------------- /assets/js/jquery.selectlistactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/assets/js/jquery.selectlistactions.js -------------------------------------------------------------------------------- /assets/js/sccp_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/assets/js/sccp_manager.js -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_791x_sip_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_791x_sip_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_791x_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_791x_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_7925_sip_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_7925_sip_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_7925_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_7925_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_7937_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_7937_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_7940_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_7940_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_796x_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_796x_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_7975_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_7975_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_797x_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_797x_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_79df_sip_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_79df_sip_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_79df_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_79df_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_99xx_sip_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_99xx_sip_template -------------------------------------------------------------------------------- /conf/SEP0000000000.cnf.xml_ATA_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SEP0000000000.cnf.xml_ATA_template -------------------------------------------------------------------------------- /conf/SIPDefaultSoftKey.xml_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SIPDefaultSoftKey.xml_template -------------------------------------------------------------------------------- /conf/SIPTypeSoftKey.xml_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/SIPTypeSoftKey.xml_template -------------------------------------------------------------------------------- /conf/Sccp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/Sccp.class.php -------------------------------------------------------------------------------- /conf/Sccp.class.php.v431: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/Sccp.class.php.v431 -------------------------------------------------------------------------------- /conf/Sccp.class.php.v433: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/Sccp.class.php.v433 -------------------------------------------------------------------------------- /conf/XMLDefault.cnf.xml_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/XMLDefault.cnf.xml_template -------------------------------------------------------------------------------- /conf/dialplan.xml_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/dialplan.xml_template -------------------------------------------------------------------------------- /conf/sccp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/sccp.conf -------------------------------------------------------------------------------- /conf/sccpgeneral.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/sccpgeneral.xml -------------------------------------------------------------------------------- /conf/sccpgeneral.xml.v431: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/sccpgeneral.xml.v431 -------------------------------------------------------------------------------- /conf/sccpgeneral.xml.v433: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/sccpgeneral.xml.v433 -------------------------------------------------------------------------------- /conf/sccpsimple.xml.v431: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/sccpsimple.xml.v431 -------------------------------------------------------------------------------- /conf/sccpsimple.xml.v433: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/conf/sccpsimple.xml.v433 -------------------------------------------------------------------------------- /contrib/index.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/contrib/index.cnf -------------------------------------------------------------------------------- /contrib/rewrite.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/contrib/rewrite.rules -------------------------------------------------------------------------------- /contrib/tftp.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/contrib/tftp.xinetd -------------------------------------------------------------------------------- /functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/functions.inc.php -------------------------------------------------------------------------------- /i18n/ru_RU/LC_MESSAGES/sccp_manager.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/i18n/ru_RU/LC_MESSAGES/sccp_manager.mo -------------------------------------------------------------------------------- /i18n/ru_RU/LC_MESSAGES/sccp_manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/i18n/ru_RU/LC_MESSAGES/sccp_manager.po -------------------------------------------------------------------------------- /i18n/sccp_manager.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/i18n/sccp_manager.pot -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/install.php -------------------------------------------------------------------------------- /module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/module.xml -------------------------------------------------------------------------------- /page.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/page.html.php -------------------------------------------------------------------------------- /page.sccp_adv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/page.sccp_adv.php -------------------------------------------------------------------------------- /page.sccp_phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/page.sccp_phone.php -------------------------------------------------------------------------------- /page.sccpsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/page.sccpsettings.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/uninstall.php -------------------------------------------------------------------------------- /views/advserver.dialtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/advserver.dialtemplate.php -------------------------------------------------------------------------------- /views/advserver.keyset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/advserver.keyset.php -------------------------------------------------------------------------------- /views/advserver.model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/advserver.model.php -------------------------------------------------------------------------------- /views/form.adddevice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/form.adddevice.php -------------------------------------------------------------------------------- /views/form.addruser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/form.addruser.php -------------------------------------------------------------------------------- /views/form.addsdevice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/form.addsdevice.php -------------------------------------------------------------------------------- /views/form.buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/form.buttons.php -------------------------------------------------------------------------------- /views/form.devadvanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/form.devadvanced.php -------------------------------------------------------------------------------- /views/form.dptemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/form.dptemplate.php -------------------------------------------------------------------------------- /views/form.sbuttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/form.sbuttons.php -------------------------------------------------------------------------------- /views/formShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/formShow.php -------------------------------------------------------------------------------- /views/formShowError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/formShowError.php -------------------------------------------------------------------------------- /views/hardware.extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/hardware.extension.php -------------------------------------------------------------------------------- /views/hardware.phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/hardware.phone.php -------------------------------------------------------------------------------- /views/hardware.rnav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/hardware.rnav.php -------------------------------------------------------------------------------- /views/hardware.sphone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/hardware.sphone.php -------------------------------------------------------------------------------- /views/server.advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/server.advanced.php -------------------------------------------------------------------------------- /views/server.codec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/server.codec.php -------------------------------------------------------------------------------- /views/server.datetime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/server.datetime.php -------------------------------------------------------------------------------- /views/server.device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/server.device.php -------------------------------------------------------------------------------- /views/server.info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/server.info.php -------------------------------------------------------------------------------- /views/server.setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/server.setting.php -------------------------------------------------------------------------------- /views/server.url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomVl/sccp_manager/HEAD/views/server.url.php --------------------------------------------------------------------------------