├── .gitignore ├── .hgignore ├── CHANGELOG ├── COPYING ├── README.md ├── TODO ├── htdocs ├── .htaccess ├── CHANGELOG ├── COPYING ├── README.md ├── application │ ├── .htaccess │ ├── 3rdparty │ │ └── tcpdf │ │ │ ├── 2dbarcodes.php │ │ │ ├── CHANGELOG.TXT │ │ │ ├── LICENSE.TXT │ │ │ ├── README.TXT │ │ │ ├── barcodes.php │ │ │ ├── cache │ │ │ ├── chapter_demo_1.txt │ │ │ ├── chapter_demo_2.txt │ │ │ ├── table_data_demo.txt │ │ │ └── utf8test.txt │ │ │ ├── config │ │ │ ├── lang │ │ │ │ ├── afr.php │ │ │ │ ├── ara.php │ │ │ │ ├── aze.php │ │ │ │ ├── bel.php │ │ │ │ ├── bra.php │ │ │ │ ├── cat.php │ │ │ │ ├── ces.php │ │ │ │ ├── chi.php │ │ │ │ ├── cym.php │ │ │ │ ├── dan.php │ │ │ │ ├── eng.php │ │ │ │ ├── est.php │ │ │ │ ├── eus.php │ │ │ │ ├── far.php │ │ │ │ ├── fra.php │ │ │ │ ├── ger.php │ │ │ │ ├── gle.php │ │ │ │ ├── glg.php │ │ │ │ ├── hat.php │ │ │ │ ├── heb.php │ │ │ │ ├── hrv.php │ │ │ │ ├── hun.php │ │ │ │ ├── hye.php │ │ │ │ ├── ind.php │ │ │ │ ├── ita.php │ │ │ │ ├── kat.php │ │ │ │ ├── kor.php │ │ │ │ ├── mkd.php │ │ │ │ ├── mlt.php │ │ │ │ ├── msa.php │ │ │ │ ├── nld.php │ │ │ │ ├── nob.php │ │ │ │ ├── pol.php │ │ │ │ ├── por.php │ │ │ │ ├── ron.php │ │ │ │ ├── rus.php │ │ │ │ ├── slv.php │ │ │ │ ├── spa.php │ │ │ │ ├── sqi.php │ │ │ │ ├── srp.php │ │ │ │ ├── swa.php │ │ │ │ ├── swe.php │ │ │ │ ├── urd.php │ │ │ │ ├── yid.php │ │ │ │ └── zho.php │ │ │ └── tcpdf_config.php │ │ │ ├── datamatrix.php │ │ │ ├── encodings_maps.php │ │ │ ├── examples │ │ │ └── example_048.php │ │ │ ├── fonts │ │ │ ├── aealarabiya.ctg.z │ │ │ ├── aealarabiya.php │ │ │ ├── aealarabiya.z │ │ │ ├── aefurat.ctg.z │ │ │ ├── aefurat.php │ │ │ ├── aefurat.z │ │ │ ├── cid0cs.php │ │ │ ├── cid0ct.php │ │ │ ├── cid0jp.php │ │ │ ├── cid0kr.php │ │ │ ├── courier.php │ │ │ ├── courierb.php │ │ │ ├── courierbi.php │ │ │ ├── courieri.php │ │ │ ├── dejavu-fonts-ttf-2.33 │ │ │ │ ├── AUTHORS │ │ │ │ ├── BUGS │ │ │ │ ├── LICENSE │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── langcover.txt │ │ │ │ ├── status.txt │ │ │ │ └── unicover.txt │ │ │ ├── dejavusans.ctg.z │ │ │ ├── dejavusans.php │ │ │ ├── dejavusans.z │ │ │ ├── dejavusansb.ctg.z │ │ │ ├── dejavusansb.php │ │ │ ├── dejavusansb.z │ │ │ ├── dejavusansbi.ctg.z │ │ │ ├── dejavusansbi.php │ │ │ ├── dejavusansbi.z │ │ │ ├── dejavusanscondensed.ctg.z │ │ │ ├── dejavusanscondensed.php │ │ │ ├── dejavusanscondensed.z │ │ │ ├── dejavusanscondensedb.ctg.z │ │ │ ├── dejavusanscondensedb.php │ │ │ ├── dejavusanscondensedb.z │ │ │ ├── dejavusanscondensedbi.ctg.z │ │ │ ├── dejavusanscondensedbi.php │ │ │ ├── dejavusanscondensedbi.z │ │ │ ├── dejavusanscondensedi.ctg.z │ │ │ ├── dejavusanscondensedi.php │ │ │ ├── dejavusanscondensedi.z │ │ │ ├── dejavusansextralight.ctg.z │ │ │ ├── dejavusansextralight.php │ │ │ ├── dejavusansextralight.z │ │ │ ├── dejavusansi.ctg.z │ │ │ ├── dejavusansi.php │ │ │ ├── dejavusansi.z │ │ │ ├── dejavusansmono.ctg.z │ │ │ ├── dejavusansmono.php │ │ │ ├── dejavusansmono.z │ │ │ ├── dejavusansmonob.ctg.z │ │ │ ├── dejavusansmonob.php │ │ │ ├── dejavusansmonob.z │ │ │ ├── dejavusansmonobi.ctg.z │ │ │ ├── dejavusansmonobi.php │ │ │ ├── dejavusansmonobi.z │ │ │ ├── dejavusansmonoi.ctg.z │ │ │ ├── dejavusansmonoi.php │ │ │ ├── dejavusansmonoi.z │ │ │ ├── dejavuserif.ctg.z │ │ │ ├── dejavuserif.php │ │ │ ├── dejavuserif.z │ │ │ ├── dejavuserifb.ctg.z │ │ │ ├── dejavuserifb.php │ │ │ ├── dejavuserifb.z │ │ │ ├── dejavuserifbi.ctg.z │ │ │ ├── dejavuserifbi.php │ │ │ ├── dejavuserifbi.z │ │ │ ├── dejavuserifcondensed.ctg.z │ │ │ ├── dejavuserifcondensed.php │ │ │ ├── dejavuserifcondensed.z │ │ │ ├── dejavuserifcondensedb.ctg.z │ │ │ ├── dejavuserifcondensedb.php │ │ │ ├── dejavuserifcondensedb.z │ │ │ ├── dejavuserifcondensedbi.ctg.z │ │ │ ├── dejavuserifcondensedbi.php │ │ │ ├── dejavuserifcondensedbi.z │ │ │ ├── dejavuserifcondensedi.ctg.z │ │ │ ├── dejavuserifcondensedi.php │ │ │ ├── dejavuserifcondensedi.z │ │ │ ├── dejavuserifi.ctg.z │ │ │ ├── dejavuserifi.php │ │ │ ├── dejavuserifi.z │ │ │ ├── freefont-20100919 │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── CREDITS │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ └── README │ │ │ ├── freemono.ctg.z │ │ │ ├── freemono.php │ │ │ ├── freemono.z │ │ │ ├── freemonob.ctg.z │ │ │ ├── freemonob.php │ │ │ ├── freemonob.z │ │ │ ├── freemonobi.ctg.z │ │ │ ├── freemonobi.php │ │ │ ├── freemonobi.z │ │ │ ├── freemonoi.ctg.z │ │ │ ├── freemonoi.php │ │ │ ├── freemonoi.z │ │ │ ├── freesans.ctg.z │ │ │ ├── freesans.php │ │ │ ├── freesans.z │ │ │ ├── freesansb.ctg.z │ │ │ ├── freesansb.php │ │ │ ├── freesansb.z │ │ │ ├── freesansbi.ctg.z │ │ │ ├── freesansbi.php │ │ │ ├── freesansbi.z │ │ │ ├── freesansi.ctg.z │ │ │ ├── freesansi.php │ │ │ ├── freesansi.z │ │ │ ├── freeserif.ctg.z │ │ │ ├── freeserif.php │ │ │ ├── freeserif.z │ │ │ ├── freeserifb.ctg.z │ │ │ ├── freeserifb.php │ │ │ ├── freeserifb.z │ │ │ ├── freeserifbi.ctg.z │ │ │ ├── freeserifbi.php │ │ │ ├── freeserifbi.z │ │ │ ├── freeserifi.ctg.z │ │ │ ├── freeserifi.php │ │ │ ├── freeserifi.z │ │ │ ├── helvetica.php │ │ │ ├── helveticab.php │ │ │ ├── helveticabi.php │ │ │ ├── helveticai.php │ │ │ ├── hysmyeongjostdmedium.php │ │ │ ├── kozgopromedium.php │ │ │ ├── kozminproregular.php │ │ │ ├── msungstdlight.php │ │ │ ├── pdfacourier.php │ │ │ ├── pdfacourier.z │ │ │ ├── pdfacourierb.php │ │ │ ├── pdfacourierb.z │ │ │ ├── pdfacourierbi.php │ │ │ ├── pdfacourierbi.z │ │ │ ├── pdfacourieri.php │ │ │ ├── pdfacourieri.z │ │ │ ├── pdfahelvetica.php │ │ │ ├── pdfahelvetica.z │ │ │ ├── pdfahelveticab.php │ │ │ ├── pdfahelveticab.z │ │ │ ├── pdfahelveticabi.php │ │ │ ├── pdfahelveticabi.z │ │ │ ├── pdfahelveticai.php │ │ │ ├── pdfahelveticai.z │ │ │ ├── pdfasymbol.php │ │ │ ├── pdfasymbol.z │ │ │ ├── pdfatimes.php │ │ │ ├── pdfatimes.z │ │ │ ├── pdfatimesb.php │ │ │ ├── pdfatimesb.z │ │ │ ├── pdfatimesbi.php │ │ │ ├── pdfatimesbi.z │ │ │ ├── pdfatimesi.php │ │ │ ├── pdfatimesi.z │ │ │ ├── pdfazapfdingbats.php │ │ │ ├── pdfazapfdingbats.z │ │ │ ├── stsongstdlight.php │ │ │ ├── symbol.php │ │ │ ├── times.php │ │ │ ├── timesb.php │ │ │ ├── timesbi.php │ │ │ ├── timesi.php │ │ │ ├── uni2cid_ac15.php │ │ │ ├── uni2cid_ag15.php │ │ │ ├── uni2cid_aj16.php │ │ │ ├── uni2cid_ak12.php │ │ │ └── zapfdingbats.php │ │ │ ├── htmlcolors.php │ │ │ ├── images │ │ │ └── logo.png │ │ │ ├── pdf417.php │ │ │ ├── qrcode.php │ │ │ ├── sRGB.icc │ │ │ ├── spotcolors.php │ │ │ ├── tcpdf.crt │ │ │ ├── tcpdf.fdf │ │ │ ├── tcpdf.p12 │ │ │ ├── tcpdf.php │ │ │ ├── tcpdf_filters.php │ │ │ ├── tcpdf_parser.php │ │ │ └── unicode_data.php │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ ├── tcpdf.php │ │ └── user_agents.php │ ├── controllers │ │ ├── billing.php │ │ ├── carriers.php │ │ ├── cdr.php │ │ ├── cron │ │ │ └── generate_invoices.php │ │ ├── customer.php │ │ ├── customers.php │ │ ├── did.php │ │ ├── freeswitch.php │ │ ├── groups.php │ │ ├── home.php │ │ ├── manage_accounts.php │ │ ├── reseller │ │ │ ├── billing.php │ │ │ ├── cdr.php │ │ │ ├── customers.php │ │ │ ├── groups.php │ │ │ ├── home.php │ │ │ ├── info.php │ │ │ └── settings.php │ │ └── settings.php │ ├── core │ │ └── index.html │ ├── errors │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── helpers │ │ ├── carriers_helper.php │ │ ├── esl_helper.php │ │ ├── global_helper.php │ │ ├── groups_helper.php │ │ └── user_login_helper.php │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ └── english │ │ │ └── index.html │ ├── libraries │ │ ├── Esl.php │ │ ├── Spreadsheet_Excel_Writer.php │ │ ├── excel_library_files │ │ │ ├── BIFFwriter.php │ │ │ ├── File.php │ │ │ ├── Format.php │ │ │ ├── OLE.php │ │ │ ├── PPS.php │ │ │ ├── Parser.php │ │ │ ├── Root.php │ │ │ ├── Validator.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── readme.txt │ │ ├── index.html │ │ └── pdf.php │ ├── logs │ │ └── index.html │ ├── models │ │ ├── billing_model.php │ │ ├── carriers_model.php │ │ ├── cdr_model.php │ │ ├── customer_model.php │ │ ├── did_model.php │ │ ├── freeswitch_model.php │ │ ├── groups_model.php │ │ ├── home_model.php │ │ ├── manage_accounts_model.php │ │ ├── reseller │ │ │ ├── billing_model.php │ │ │ ├── carriers_model.php │ │ │ ├── cdr_model.php │ │ │ ├── customer_model.php │ │ │ ├── freeswitch_model.php │ │ │ ├── groups_model.php │ │ │ ├── home_model.php │ │ │ ├── manage_accounts_model.php │ │ │ └── settings_model.php │ │ └── settings_model.php │ ├── third_party │ │ └── index.html │ └── views │ │ ├── accounts │ │ ├── accounts_view.php │ │ └── new_account_view.php │ │ ├── billing │ │ ├── billing_view.php │ │ └── invoices_view.php │ │ ├── carriers │ │ ├── add_carrier_view.php │ │ ├── carriers_view.php │ │ └── edit_carrier_view.php │ │ ├── cdr │ │ ├── call_destination_view.php │ │ ├── cdr_view.php │ │ ├── customer_stats_view.php │ │ └── gateways_stats_view.php │ │ ├── customer │ │ ├── balance_customer_view.php │ │ ├── cdr_customer_view.php │ │ ├── dashboard.php │ │ ├── edit_acl_node_view.php │ │ ├── edit_customer_view.php │ │ ├── edit_sip_view.php │ │ ├── invoices_view.php │ │ ├── ip_customer_view.php │ │ ├── my_account.php │ │ ├── new_acl_node_view.php │ │ ├── new_sip_view.php │ │ ├── pop_up_menu.php │ │ ├── rate_customer_view.php │ │ └── sip_customer_view.php │ │ ├── customers │ │ ├── add_customer_view.php │ │ ├── balance_customer_view.php │ │ ├── cdr_customer_view.php │ │ ├── customers_view.php │ │ ├── edit_acl_node_view.php │ │ ├── edit_customer_view.php │ │ ├── edit_sip_view.php │ │ ├── groups.php │ │ ├── invoices_view.php │ │ ├── ip_customer_view.php │ │ ├── new_acl_node_view.php │ │ ├── new_sip_view.php │ │ ├── pop_up_menu.php │ │ ├── rate_customer_view.php │ │ └── sip_customer_view.php │ │ ├── dashboard.php │ │ ├── default │ │ ├── empty.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── main_menu │ │ │ ├── main_menu.php │ │ │ └── reseller_main_menu.php │ │ ├── sub_menu │ │ │ ├── billing_sub_menu.php │ │ │ ├── carriers_sub_menu.php │ │ │ ├── cdr_sub_menu.php │ │ │ ├── customer_sub_menu.php │ │ │ ├── did_sub_menu.php │ │ │ ├── freeswitch_sub_menu.php │ │ │ ├── groups_sub_menu.php │ │ │ ├── manage_accounts_sub_menu.php │ │ │ ├── reseller │ │ │ │ ├── billing_sub_menu.php │ │ │ │ ├── cdr_sub_menu.php │ │ │ │ ├── customer_sub_menu.php │ │ │ │ ├── freeswitch_sub_menu.php │ │ │ │ ├── groups_sub_menu.php │ │ │ │ └── settings_sub_menu.php │ │ │ └── settings_sub_menu.php │ │ └── template.php │ │ ├── did │ │ ├── add_did_view.php │ │ ├── did_view.php │ │ └── edit_did_view.php │ │ ├── freeswitch │ │ ├── activity_view.php │ │ ├── esl_view.php │ │ ├── gateway_detail_view.php │ │ ├── gateway_edit_view.php │ │ ├── live_stats_view.php │ │ ├── new_gateway_view.php │ │ ├── new_profile_view.php │ │ ├── profile_view.php │ │ └── sofia_detail_view.php │ │ ├── groups │ │ ├── add-localization-group-view.php │ │ ├── add_group_view.php │ │ ├── add_rate_view.php │ │ ├── edit_group_view.php │ │ ├── edit_localization_group_view.php │ │ ├── edit_rate_view.php │ │ ├── groups_view.php │ │ ├── import_csv_view.php │ │ ├── list_rate_view.php │ │ └── localization-groups-view.php │ │ ├── login.php │ │ ├── my_account.php │ │ ├── reseller │ │ ├── billing │ │ │ ├── billing_view.php │ │ │ ├── invoices_view.php │ │ │ └── my_invoices_view.php │ │ ├── cdr │ │ │ ├── call_destination_view.php │ │ │ ├── cdr_view.php │ │ │ ├── customer_stats_view.php │ │ │ └── my_cdr_view.php │ │ ├── customers │ │ │ ├── add_customer_view.php │ │ │ ├── balance_customer_view.php │ │ │ ├── cdr_customer_view.php │ │ │ ├── customers_view.php │ │ │ ├── edit_acl_node_view.php │ │ │ ├── edit_customer_view.php │ │ │ ├── edit_sip_view.php │ │ │ ├── invoices_view.php │ │ │ ├── ip_customer_view.php │ │ │ ├── new_acl_node_view.php │ │ │ ├── new_sip_view.php │ │ │ ├── pop_up_menu.php │ │ │ ├── rate_customer_view.php │ │ │ └── sip_customer_view.php │ │ ├── dashboard.php │ │ ├── groups │ │ │ ├── add_group_view.php │ │ │ ├── add_rate_view.php │ │ │ ├── assigned_group_detail_view.php │ │ │ ├── assigned_group_view.php │ │ │ ├── edit_group_view.php │ │ │ ├── edit_rate_view.php │ │ │ ├── groups_view.php │ │ │ └── list_rate_view.php │ │ ├── my_account.php │ │ ├── reseller_info │ │ │ ├── balance_customer_view.php │ │ │ ├── edit_acl_node_view.php │ │ │ ├── edit_customer_view.php │ │ │ ├── edit_sip_view.php │ │ │ ├── ip_customer_view.php │ │ │ ├── my_balance_view.php │ │ │ ├── new_acl_node_view.php │ │ │ ├── new_sip_view.php │ │ │ ├── pop_up_menu.php │ │ │ └── sip_customer_view.php │ │ └── settings │ │ │ └── settings_view.php │ │ └── settings │ │ └── settings_view.php ├── assets │ ├── css │ │ ├── Book1.csv │ │ ├── ie_fix.css │ │ ├── jquery.mcdropdown.css │ │ ├── jquery.qtip.css │ │ ├── jquery.selectbox.css │ │ ├── jquery_ui │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.16.custom.css │ │ ├── login.css │ │ ├── style.css │ │ └── ui.multiselect.css │ ├── get_xml_status.php │ ├── images │ │ ├── activate-icon.gif │ │ ├── alert.png │ │ ├── assigned-icon.gif │ │ ├── bc_bg.png │ │ ├── bc_separator.png │ │ ├── bck_main.png │ │ ├── bck_white_10.png │ │ ├── bck_white_50.png │ │ ├── btn-submit.png │ │ ├── button_cancel.png │ │ ├── calendar.gif │ │ ├── chosen-sprite.png │ │ ├── cross.png │ │ ├── details.jpg │ │ ├── down_arrow.gif │ │ ├── error.png │ │ ├── export-csv.png │ │ ├── export-excel.png │ │ ├── export-pdf.gif │ │ ├── gradient.png │ │ ├── gradient3.gif │ │ ├── gradient_1.png │ │ ├── gradient_2.png │ │ ├── gradient_3.png │ │ ├── gradient_4.png │ │ ├── header.png │ │ ├── header_bg.jpg │ │ ├── icons │ │ │ ├── billing.png │ │ │ ├── cdr.png │ │ │ ├── customers.png │ │ │ ├── freeswitch.png │ │ │ ├── home.png │ │ │ ├── linkOn.png │ │ │ ├── lock.png │ │ │ ├── rss.png │ │ │ └── settings.png │ │ ├── info.png │ │ ├── line.png │ │ ├── loading.gif │ │ ├── login.jpg │ │ ├── login_header.png │ │ ├── logo.png │ │ ├── logo_sign.png │ │ ├── mcdropdown │ │ │ ├── mcdd_icon_hover.gif │ │ │ ├── mcdd_icon_normal.gif │ │ │ ├── mcdd_select_button_sprite.gif │ │ │ └── shadow.png │ │ ├── more.gif │ │ ├── plus.gif │ │ ├── select-icons.png │ │ ├── shadow.png │ │ ├── spacer.gif │ │ ├── success.png │ │ ├── tabing.png │ │ ├── tabingleft-hover.png │ │ ├── tabingleft.png │ │ ├── tabingright-hover.png │ │ ├── up_arrow.gif │ │ ├── w_pagination_bg.gif │ │ └── warning.png │ └── js │ │ ├── blockUI.js │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ ├── jquery.alphanumeric.pack.js │ │ ├── jquery.bgiframe.js │ │ ├── jquery.js │ │ ├── jquery.mcdropdown.js │ │ ├── jquery.mcdropdown.min.js │ │ ├── jquery.qtip.min.js │ │ ├── jquery.selectbox-0.1.3.js │ │ ├── jquery.tablednd_0_5.js │ │ ├── overlib.js │ │ ├── timepicker.js │ │ ├── ui.multiselect.js │ │ └── vBilling.js ├── bin │ ├── centos │ │ ├── index.html │ │ ├── x32 │ │ │ ├── index.html │ │ │ ├── vBilling.bin │ │ │ ├── vBilling.cfg │ │ │ └── vBilling_functions.bin │ │ └── x64 │ │ │ ├── index.html │ │ │ ├── vBilling.bin │ │ │ ├── vBilling.cfg │ │ │ └── vBilling_functions.bin │ ├── debian │ │ ├── index.html │ │ ├── x32 │ │ │ ├── index.html │ │ │ ├── vBilling.bin │ │ │ ├── vBilling.cfg │ │ │ └── vBilling_functions.bin │ │ └── x64 │ │ │ ├── index.html │ │ │ ├── vBilling.bin │ │ │ ├── vBilling.cfg │ │ │ └── vBilling_functions.bin │ ├── index.html │ └── ubuntu │ │ ├── index.html │ │ ├── x32 │ │ ├── index.html │ │ ├── vBilling.bin │ │ ├── vBilling.cfg │ │ └── vBilling_functions.bin │ │ └── x64 │ │ ├── index.html │ │ ├── vBilling.bin │ │ ├── vBilling.cfg │ │ └── vBilling_functions.bin ├── freeswitch_conf │ └── freeswitch.xml ├── index.php ├── media │ ├── images │ │ ├── index.html │ │ └── thumbs │ │ │ └── index.html │ ├── index.html │ └── invoices │ │ ├── Book1.csv │ │ └── index.html ├── sql │ ├── index.html │ ├── vBilling_complete.sql │ └── vBilling_upgrade_0_2_0.sql ├── system │ ├── .htaccess │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_active_rec.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── cubrid │ │ │ │ ├── cubrid_driver.php │ │ │ │ ├── cubrid_forge.php │ │ │ │ ├── cubrid_result.php │ │ │ │ ├── cubrid_utility.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── pdo │ │ │ │ ├── index.html │ │ │ │ ├── pdo_driver.php │ │ │ │ ├── pdo_forge.php │ │ │ │ ├── pdo_result.php │ │ │ │ └── pdo_utility.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ │ └── sqlsrv │ │ │ │ ├── index.html │ │ │ │ ├── sqlsrv_driver.php │ │ │ │ ├── sqlsrv_forge.php │ │ │ │ ├── sqlsrv_result.php │ │ │ │ └── sqlsrv_utility.php │ │ └── index.html │ ├── fonts │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ ├── upload_lang.php │ │ │ ├── vBilling_help_lang.php │ │ │ └── vBilling_lang.php │ │ ├── french │ │ │ ├── index.html │ │ │ ├── vBilling_help_lang.php │ │ │ └── vBilling_lang.php │ │ ├── index.html │ │ ├── spanish │ │ │ ├── index.html │ │ │ ├── vBilling_help_lang.php │ │ │ └── vBilling_lang.php │ │ └── urdu │ │ │ ├── index.html │ │ │ ├── vBilling_help_lang.php │ │ │ └── vBilling_lang.php │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ └── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ └── Cache_memcached.php │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Log.php │ │ ├── Migration.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session.php │ │ ├── Sha1.php │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ ├── index.html │ │ └── javascript │ │ └── Jquery.php └── xmlcurl │ ├── configuration │ ├── acl.conf.php │ ├── console.conf.php │ ├── event_socket.conf.php │ ├── post_load_modules.conf.php │ ├── sofia.conf.php │ ├── switch.conf.php │ └── xml_cdr.conf.php │ ├── fs_cdr.php │ ├── fs_configuration.php │ ├── fs_curl.php │ ├── fs_directory.php │ ├── index.html │ ├── index.php │ └── libs │ └── fs_pdo.php └── scripts └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac OS X Metadata 2 | .DS_Store 3 | Icon? 4 | *.idea 5 | *~ 6 | ._* 7 | *.Spotlight-* 8 | *.Trashes 9 | *.zip 10 | *.tar 11 | *.tar.gz 12 | # Git repo 13 | .hg/ 14 | #*# 15 | vBilling.lua 16 | vBilling_functions.lua 17 | /nbproject/private/ -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | # regexp syntax 2 | syntax: glob 3 | 4 | # Mac OS X Metadata 5 | .DS_Store 6 | 7 | *.idea 8 | *~ 9 | ._* 10 | *.Spotlight-* 11 | *.Trashes 12 | *.zip 13 | *.tar 14 | *.tar.gz 15 | 16 | # Git repo 17 | .git/ 18 | 19 | vBilling.lua 20 | vBilling_functions.lua 21 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | # Think before going public :-) 2 | # 3 | # configure install script to run and configure vBilling instance to run on separate machine than FS 4 | # mod_xml_curl to use HTTPS 5 | # Online payment solutions 6 | # 7 | # and a lots of other things :-) 8 | # 9 | -------------------------------------------------------------------------------- /htdocs/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteBase / 4 | 5 | #Removes access to the system folder by users. 6 | #Additionally this will allow you to create a System.php controller, 7 | #previously this would not have been possible. 8 | #'system' can be replaced if you have renamed your system folder. 9 | RewriteCond %{REQUEST_URI} ^system.* 10 | RewriteRule ^(.*)$ /index.php?/$1 [L] 11 | 12 | #When your application folder isn't in the system folder 13 | #This snippet prevents user access to the application folder 14 | #Submitted by: Fabdrol 15 | #Rename 'application' to your applications folder name. 16 | RewriteCond %{REQUEST_URI} ^application.* 17 | RewriteRule ^(.*)$ /index.php?/$1 [L] 18 | 19 | #Checks to see if the user is attempting to access a valid file, 20 | #such as an image or css document, if this isn't true it sends the 21 | #request to index.php 22 | RewriteCond %{REQUEST_FILENAME} !-f 23 | RewriteCond %{REQUEST_FILENAME} !-d 24 | RewriteRule ^(.*)$ index.php?/$1 [L] 25 | 26 | 27 | 28 | # If we don't have mod_rewrite installed, all 404's 29 | # can be sent to index.php, and everything works as normal. 30 | # Submitted by: ElliotHaughin 31 | 32 | ErrorDocument 404 /index.php 33 | -------------------------------------------------------------------------------- /htdocs/CHANGELOG: -------------------------------------------------------------------------------- 1 | 2011-09-04 2 | * Updated README 3 | 4 | 2011-09-02 5 | * api_installer.sh updates 6 | * api_install.sh tweaks 7 | * Plivo repo url changed from git to https 8 | * Misc Updates to install script 9 | * API_INSTALL_PATH added 10 | * api_install.sh was not properly called. Fixed 11 | * CHANGELOG updated 12 | 13 | 2011-08-29 14 | * Tweaks 15 | 16 | 2011-08-30 17 | * Installer update for CentOS 6.x 18 | 19 | 2011-08-17 20 | * vBilling API install script added 21 | * .gitignore fixed 22 | * Changed install scripts to configure FS for local config instance 23 | 24 | 2011-08-15 25 | * Changed freeswitch.xml to start with local configuration files 26 | * Web server port changed to 8449 27 | * ' added 28 | * Junk removed 29 | * Install script updated 30 | 31 | 2011-08-05 32 | * sed bugs removed 33 | 34 | 2011-07-29 35 | * install script updated for mod_xml_curl 36 | * .gitignore update 37 | 38 | 2011-07-28 39 | * .gitignore updated 40 | 41 | 2011-07-27 42 | * Updated README 43 | * minor changes in FS install script 44 | * Edited scripts/freeswitch/modules.conf via GitHub 45 | * Edited scripts/freeswitch/freeswitch_install.sh via GitHub 46 | * Edited scripts/freeswitch/freeswitch_install.sh via GitHub 47 | * Edited scripts/freeswitch/freeswitch_install.sh via GitHub 48 | * Revert 0c00ee4aa9659f94b178febf1f0ab682dc214430^..HEAD 49 | * Edited scripts/freeswitch/freeswitch_install.sh via GitHub 50 | * Revert "Edited scripts/freeswitch/freeswitch_install.sh via GitHub" 51 | * Edited scripts/freeswitch/freeswitch_install.sh via GitHub 52 | * Paths redefined 53 | * Install script update 54 | * Typos 55 | * FreeSWITCH install script created 56 | 57 | 2011-07-26 58 | * Repo Created 59 | 60 | -------------------------------------------------------------------------------- /htdocs/application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/cache/table_data_demo.txt: -------------------------------------------------------------------------------- 1 | Austria;Vienna;83859;8075 2 | Belgium;Brussels;30518;10192 3 | Denmark;Copenhagen;43094;5295 4 | Finland;Helsinki;304529;5147 5 | France;Paris;543965;58728 6 | Germany;Berlin;357022;82057 7 | Greece;Athens;131625;10511 8 | Ireland;Dublin;70723;3694 9 | Italy;Roma;301316;57563 10 | Luxembourg;Luxembourg;2586;424 11 | Netherlands;Amsterdam;41526;15654 12 | Portugal;Lisbon;91906;9957 13 | Spain;Madrid;504790;39348 14 | Sweden;Stockholm;410934;8839 15 | United Kingdom;London;243820;58862 16 | -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/config/lang/afr.php: -------------------------------------------------------------------------------- 1 | 880, 7 | 'Descent' => -120, 8 | 'CapHeight' => 880, 9 | 'Flags' => 6, 10 | 'FontBBox' => '[-160 -249 1015 1071]', 11 | 'ItalicAngle' => 0, 12 | 'StemV' => 93, 13 | ); 14 | $cidinfo = array( 15 | 'Registry' => 'Adobe', 16 | 'Ordering' => 'CNS1', 17 | 'Supplement' => '3', 18 | ); 19 | $enc = 'UniCNS-UCS2-H'; 20 | 21 | $up = -130; 22 | $ut = 40; 23 | 24 | $dw = 1000; 25 | $cw = array( 26 | 32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240, 27 | 42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500, 28 | 52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667, 29 | 62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771, 30 | 72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823, 31 | 82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344, 32 | 92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438, 33 | 102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500, 34 | 112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458, 35 | 122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667, 36 | 17601 => 500, 37 | ); 38 | // --- EOF --- 39 | -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfacourier.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfacourier.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfacourierb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfacourierb.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfacourierbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfacourierbi.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfacourieri.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfacourieri.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfahelvetica.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfahelvetica.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfahelveticab.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfahelveticab.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfahelveticabi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfahelveticabi.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfahelveticai.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfahelveticai.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfasymbol.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfasymbol.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfatimes.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfatimes.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfatimesb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfatimesb.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfatimesbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfatimesbi.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfatimesi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfatimesi.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/pdfazapfdingbats.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/fonts/pdfazapfdingbats.z -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/fonts/stsongstdlight.php: -------------------------------------------------------------------------------- 1 | 752, 7 | 'Descent' => -271, 8 | 'CapHeight' => 737, 9 | 'Flags' => 6, 10 | 'FontBBox' => '[-25 -254 1000 880]', 11 | 'ItalicAngle' => 0, 12 | 'StemV' => 58, 13 | 'Style' => '<< /Panose <000000000400000000000000> >>', 14 | ); 15 | $cidinfo = array( 16 | 'Registry' => 'Adobe', 17 | 'Ordering' => 'GB1', 18 | 'Supplement' => '2', 19 | ); 20 | $enc = 'UniGB-UCS2-H'; 21 | 22 | // underline position, needs checking: 23 | $up = -130; 24 | $ut = 40; 25 | 26 | $dw = 1000; 27 | $cw = array( 28 | 32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374, 29 | 42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462, 30 | 52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605, 31 | 62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729, 32 | 72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772, 33 | 82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374, 34 | 92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415, 35 | 102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524, 36 | 112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452, 37 | 122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605 38 | ); 39 | // --- EOF --- 40 | -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/images/logo.png -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/sRGB.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/sRGB.icc -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/tcpdf.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/tcpdf.fdf -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/tcpdf.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/tcpdf.p12 -------------------------------------------------------------------------------- /htdocs/application/3rdparty/tcpdf/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/3rdparty/tcpdf/tcpdf.php -------------------------------------------------------------------------------- /htdocs/application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /htdocs/application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /htdocs/application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /htdocs/application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 Page Not Found 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /htdocs/application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /htdocs/application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /htdocs/application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /htdocs/application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/helpers/user_login_helper.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | 30 | function user_login() 31 | { 32 | $CI = & get_instance(); 33 | if ($CI->session->userdata('user_logged_in')) 34 | { 35 | return TRUE; 36 | } 37 | else 38 | { 39 | return FALSE; 40 | } 41 | } 42 | ?> -------------------------------------------------------------------------------- /htdocs/application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/libraries/excel_library_files/readme.txt: -------------------------------------------------------------------------------- 1 | ************************************************** 2 | * PHP Excel Creator class (c) by Pizza SEO 2006+ * 3 | * * 4 | * URL: http://pizzaseo.com/tools * 5 | * License: GNU LGPL * 6 | ************************************************** 7 | 8 | Derived from PEAR Spreadsheet_Excel_writer class 9 | 10 | http://pizzaseo.com/ 11 | ------------------------------------------------------------------------- 12 | Pizza SEO is the expert in search engine optimization, web site usability 13 | and accessibility services. Keyword-rich content is provided by our 14 | copywriting services. We do provide creation and management of internet 15 | advertising pay-per-click campaings in Google Adwords, Yahoo-Overture and 16 | similar. -------------------------------------------------------------------------------- /htdocs/application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/models/home_model.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | 30 | /** 31 | * Home_model Class. Validates the user against the database 32 | * 33 | * @package vBilling 34 | * @author "Digital Linx - " 35 | **/ 36 | 37 | class Home_model extends CI_Model { 38 | /** 39 | * Function to validate user credentials against the DB 40 | * 41 | * @return void 42 | **/ 43 | function check_credentials($username, $password) 44 | { 45 | $sql = 'SELECT * FROM accounts WHERE username = '.$username.' && password = "'.$password.'" && enabled = "1" '; 46 | $query = $this->db->query($sql); 47 | return $query; 48 | } 49 | 50 | } // END class 51 | ?> -------------------------------------------------------------------------------- /htdocs/application/models/reseller/home_model.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | 30 | class Home_model extends CI_Model { 31 | 32 | function check_credentials($username, $password) 33 | { 34 | $sql = 'SELECT * FROM accounts WHERE username = '.$username.' && password = "'.$password.'" && enabled = "1" '; 35 | $query = $this->db->query($sql); 36 | return $query; 37 | } 38 | 39 | } 40 | ?> -------------------------------------------------------------------------------- /htdocs/application/models/reseller/manage_accounts_model.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | 30 | class Manage_accounts_model extends CI_Model { 31 | 32 | function check_username_availability($username) 33 | { 34 | $sql = "SELECT * FROM accounts WHERE username = '".$username."' "; 35 | $query = $this->db->query($sql); 36 | return $query; 37 | } 38 | } 39 | ?> -------------------------------------------------------------------------------- /htdocs/application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/application/views/dashboard.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | 30 | echo "Work In Progress"; 31 | ?> -------------------------------------------------------------------------------- /htdocs/application/views/default/empty.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | load->view($main_content); 33 | ?> -------------------------------------------------------------------------------- /htdocs/application/views/default/footer.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | 31 | 32 | -------------------------------------------------------------------------------- /htdocs/application/views/default/sub_menu/manage_accounts_sub_menu.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | -------------------------------------------------------------------------------- /htdocs/application/views/default/sub_menu/reseller/billing_sub_menu.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | -------------------------------------------------------------------------------- /htdocs/application/views/default/sub_menu/reseller/customer_sub_menu.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | -------------------------------------------------------------------------------- /htdocs/application/views/default/sub_menu/reseller/settings_sub_menu.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | -------------------------------------------------------------------------------- /htdocs/application/views/default/sub_menu/settings_sub_menu.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | -------------------------------------------------------------------------------- /htdocs/application/views/default/template.php: -------------------------------------------------------------------------------- 1 | ] 19 | * Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 20 | * Initial Developer (Digital Linx). All Rights Reserved. 21 | * 22 | * Contributor(s) 23 | * "Digital Linx - " 24 | * 25 | * vBilling - VoIP Billing and Routing Platform 26 | * version 0.1.3 27 | * 28 | */ 29 | ?> 30 | load->view('default/header'); 33 | 34 | //load main menu 35 | if($main_menu != '') 36 | { 37 | $this->load->view($main_menu); 38 | } 39 | 40 | //load sub menu if available 41 | if($sub_menu != ''){ 42 | $this->load->view($sub_menu); 43 | } 44 | 45 | //load main content 46 | $this->load->view($main_content); 47 | 48 | //load footer 49 | $this->load->view('default/footer'); 50 | ?> -------------------------------------------------------------------------------- /htdocs/application/views/reseller/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/application/views/reseller/dashboard.php -------------------------------------------------------------------------------- /htdocs/assets/css/Book1.csv: -------------------------------------------------------------------------------- 1 | 92300,1.22,1.00,1,1 2 | 9665,1.22,1.00,1,1 3 | 447,1.22,1.00,1,1 4 | 5 | -------------------------------------------------------------------------------- /htdocs/assets/css/ie_fix.css: -------------------------------------------------------------------------------- 1 | #navcss a { 2 | font-weight: bold; 3 | color: #e7e5e5; 4 | text-decoration: none; 5 | display: block; 6 | padding: 5px 10px 5px 5px; 7 | margin: 0; 8 | 9 | -webkit-border-radius: 1.6em; 10 | -moz-border-radius: 1.6em; 11 | 12 | text-shadow: 0 1px 1px rgba(0,0,0, .3); 13 | font:0.8em/1.5em Arial,Helvetica,sans-serif; 14 | font-weight:bold; 15 | 16 | } 17 | 18 | #navcss a span{ 19 | float:none; 20 | } 21 | 22 | #navcss .current a{ 23 | background: #666 url(../images/gradient.png) repeat-x 0 -40px; 24 | color: #444; 25 | border-top: solid 1px #f8f8f8; 26 | 27 | -webkit-box-shadow: 0 1px 1px rgba(0,0,0, .2); 28 | -moz-box-shadow: 0 1px 1px rgba(0,0,0, .2); 29 | box-shadow: 0 1px 1px rgba(0,0,0, .2); 30 | 31 | text-shadow: 0 1px 0 rgba(255,255,255, 1); 32 | } 33 | 34 | #navcss li a:hover{ 35 | background: #666 url(../images/gradient.png) repeat-x 0 -40px; 36 | color: #444; 37 | border-top: solid 1px #f8f8f8; 38 | 39 | -webkit-box-shadow: 0 1px 1px rgba(0,0,0, .2); 40 | -moz-box-shadow: 0 1px 1px rgba(0,0,0, .2); 41 | box-shadow: 0 1px 1px rgba(0,0,0, .2); 42 | 43 | text-shadow: 0 1px 0 rgba(255,255,255, 1); 44 | } 45 | 46 | .blue{ 47 | background:#0078A5; 48 | } 49 | 50 | .white{ 51 | background:#EDEDED; 52 | color:#606060; 53 | 54 | } 55 | #filter_table{width:auto;margin: 0 auto; } 56 | #filter_table{font:11px Arial,Helvetica,sans-serif;font-weight:bold;} 57 | #filter_table input{width:90%;} 58 | #filter_table select{background:none;border:none;width:90%;} 59 | 60 | #filter_table input.button 61 | { 62 | width:80px; 63 | height:30px; 64 | } 65 | 66 | #access_hirarchy span.btnspan{margin-top:-20px;margin-left:-20px;} 67 | 68 | .main_text:hover { 69 | background: #dadada; 70 | } 71 | 72 | div.button form{display: inline-block;} 73 | div.button form table{display: inline-block;} -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /htdocs/assets/css/jquery_ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/css/jquery_ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /htdocs/assets/images/activate-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/activate-icon.gif -------------------------------------------------------------------------------- /htdocs/assets/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/alert.png -------------------------------------------------------------------------------- /htdocs/assets/images/assigned-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/assigned-icon.gif -------------------------------------------------------------------------------- /htdocs/assets/images/bc_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/bc_bg.png -------------------------------------------------------------------------------- /htdocs/assets/images/bc_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/bc_separator.png -------------------------------------------------------------------------------- /htdocs/assets/images/bck_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/bck_main.png -------------------------------------------------------------------------------- /htdocs/assets/images/bck_white_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/bck_white_10.png -------------------------------------------------------------------------------- /htdocs/assets/images/bck_white_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/bck_white_50.png -------------------------------------------------------------------------------- /htdocs/assets/images/btn-submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/btn-submit.png -------------------------------------------------------------------------------- /htdocs/assets/images/button_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/button_cancel.png -------------------------------------------------------------------------------- /htdocs/assets/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/calendar.gif -------------------------------------------------------------------------------- /htdocs/assets/images/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/chosen-sprite.png -------------------------------------------------------------------------------- /htdocs/assets/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/cross.png -------------------------------------------------------------------------------- /htdocs/assets/images/details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/details.jpg -------------------------------------------------------------------------------- /htdocs/assets/images/down_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/down_arrow.gif -------------------------------------------------------------------------------- /htdocs/assets/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/error.png -------------------------------------------------------------------------------- /htdocs/assets/images/export-csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/export-csv.png -------------------------------------------------------------------------------- /htdocs/assets/images/export-excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/export-excel.png -------------------------------------------------------------------------------- /htdocs/assets/images/export-pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/export-pdf.gif -------------------------------------------------------------------------------- /htdocs/assets/images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/gradient.png -------------------------------------------------------------------------------- /htdocs/assets/images/gradient3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/gradient3.gif -------------------------------------------------------------------------------- /htdocs/assets/images/gradient_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/gradient_1.png -------------------------------------------------------------------------------- /htdocs/assets/images/gradient_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/gradient_2.png -------------------------------------------------------------------------------- /htdocs/assets/images/gradient_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/gradient_3.png -------------------------------------------------------------------------------- /htdocs/assets/images/gradient_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/gradient_4.png -------------------------------------------------------------------------------- /htdocs/assets/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/header.png -------------------------------------------------------------------------------- /htdocs/assets/images/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/header_bg.jpg -------------------------------------------------------------------------------- /htdocs/assets/images/icons/billing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/billing.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/cdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/cdr.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/customers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/customers.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/freeswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/freeswitch.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/home.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/linkOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/linkOn.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/lock.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/rss.png -------------------------------------------------------------------------------- /htdocs/assets/images/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/icons/settings.png -------------------------------------------------------------------------------- /htdocs/assets/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/info.png -------------------------------------------------------------------------------- /htdocs/assets/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/line.png -------------------------------------------------------------------------------- /htdocs/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/loading.gif -------------------------------------------------------------------------------- /htdocs/assets/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/login.jpg -------------------------------------------------------------------------------- /htdocs/assets/images/login_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/login_header.png -------------------------------------------------------------------------------- /htdocs/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/logo.png -------------------------------------------------------------------------------- /htdocs/assets/images/logo_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/logo_sign.png -------------------------------------------------------------------------------- /htdocs/assets/images/mcdropdown/mcdd_icon_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/mcdropdown/mcdd_icon_hover.gif -------------------------------------------------------------------------------- /htdocs/assets/images/mcdropdown/mcdd_icon_normal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/mcdropdown/mcdd_icon_normal.gif -------------------------------------------------------------------------------- /htdocs/assets/images/mcdropdown/mcdd_select_button_sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/mcdropdown/mcdd_select_button_sprite.gif -------------------------------------------------------------------------------- /htdocs/assets/images/mcdropdown/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/mcdropdown/shadow.png -------------------------------------------------------------------------------- /htdocs/assets/images/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/more.gif -------------------------------------------------------------------------------- /htdocs/assets/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/plus.gif -------------------------------------------------------------------------------- /htdocs/assets/images/select-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/select-icons.png -------------------------------------------------------------------------------- /htdocs/assets/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/shadow.png -------------------------------------------------------------------------------- /htdocs/assets/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/spacer.gif -------------------------------------------------------------------------------- /htdocs/assets/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/success.png -------------------------------------------------------------------------------- /htdocs/assets/images/tabing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/tabing.png -------------------------------------------------------------------------------- /htdocs/assets/images/tabingleft-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/tabingleft-hover.png -------------------------------------------------------------------------------- /htdocs/assets/images/tabingleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/tabingleft.png -------------------------------------------------------------------------------- /htdocs/assets/images/tabingright-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/tabingright-hover.png -------------------------------------------------------------------------------- /htdocs/assets/images/up_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/up_arrow.gif -------------------------------------------------------------------------------- /htdocs/assets/images/w_pagination_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/w_pagination_bg.gif -------------------------------------------------------------------------------- /htdocs/assets/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/assets/images/warning.png -------------------------------------------------------------------------------- /htdocs/assets/js/jquery.alphanumeric.pack.js: -------------------------------------------------------------------------------- 1 | eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(2($){$.c.f=2(p){p=$.d({g:"!@#$%^&*()+=[]\\\\\\\';,/{}|\\":<>?~`.- ",4:"",9:""},p);7 3.b(2(){5(p.G)p.4+="Q";5(p.w)p.4+="n";s=p.9.z(\'\');x(i=0;i= 35 && event.keyCode <= 40) // arrow keys/home/end 10 | || (event.keyCode >= 48 && event.keyCode <= 57) // numbers on keyboard 11 | || (event.keyCode >= 96 && event.keyCode <= 105)) // number on keypad 12 | ) { 13 | event.preventDefault(); // Prevent character input 14 | } 15 | } 16 | 17 | function validate(evt) { 18 | var theEvent = evt || window.event; 19 | var key = theEvent.keyCode || theEvent.which; 20 | key = String.fromCharCode( key ); 21 | var regex = /[0-9]|\.|\#|\*/; 22 | if( !regex.test(key) ) { 23 | theEvent.returnValue = false; 24 | if(theEvent.preventDefault) theEvent.preventDefault(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /htdocs/bin/centos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/centos/x32/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/centos/x32/vBilling.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/centos/x32/vBilling.bin -------------------------------------------------------------------------------- /htdocs/bin/centos/x32/vBilling.cfg: -------------------------------------------------------------------------------- 1 | --[[ 2 | -- Version: MPL 1.1 3 | -- 4 | -- The contents of this file are subject to the Mozilla Public License 5 | -- Version 1.1 (the "License"); you may not use this file except in 6 | -- compliance with the License. You may obtain a copy of the License at 7 | -- http://www.mozilla.org/MPL/ 8 | -- 9 | -- Software distributed under the License is distributed on an "AS IS" 10 | -- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 11 | -- License for the specific language governing rights and limitations 12 | -- under the License. 13 | -- 14 | -- The Original Code is "vBilling - VoIP Billing and Routing Platform" 15 | -- 16 | -- The Initial Developer of the Original Code is 17 | -- Digital Linx [<] info at digitallinx.com [>] 18 | -- Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 19 | -- Initial Developer (Digital Linx). All Rights Reserved. 20 | -- 21 | -- vBilling, Configuration Script 22 | -- version 0.1.3 23 | -- 24 | -- Various config elements for vBilling.lua 25 | -- 26 | ]] 27 | 28 | -- START of config options 29 | --[[ 30 | DSN name for the DSN to be configured with ODBC. This is required. If not configured, 31 | script will not work. 32 | ]] 33 | DSN = "__VBILLING_DB__" 34 | 35 | --[[ 36 | MySQL database username 37 | ]] 38 | DB_USER = "__MYSQL_USERNAME__" 39 | 40 | --[[ 41 | MySQL database password 42 | ]] 43 | DB_PASSWORD = "__MYSQL_PASSWORD__" 44 | 45 | --[[ 46 | Enable vBilling debug output of LUA processing 47 | ]] 48 | VBILLING_DEBUG = "0" 49 | --[[ 50 | FreeSWITCH console log level for vBilling LUA output. NOTICE is nice, just a nicer color and quiter :) 51 | ]] 52 | FREESWITCH_CONSOLE_LOG_LEVEL = "NOTICE" 53 | 54 | -- END of config options 55 | -------------------------------------------------------------------------------- /htdocs/bin/centos/x32/vBilling_functions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/centos/x32/vBilling_functions.bin -------------------------------------------------------------------------------- /htdocs/bin/centos/x64/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/centos/x64/vBilling.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/centos/x64/vBilling.bin -------------------------------------------------------------------------------- /htdocs/bin/centos/x64/vBilling.cfg: -------------------------------------------------------------------------------- 1 | --[[ 2 | -- Version: MPL 1.1 3 | -- 4 | -- The contents of this file are subject to the Mozilla Public License 5 | -- Version 1.1 (the "License"); you may not use this file except in 6 | -- compliance with the License. You may obtain a copy of the License at 7 | -- http://www.mozilla.org/MPL/ 8 | -- 9 | -- Software distributed under the License is distributed on an "AS IS" 10 | -- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 11 | -- License for the specific language governing rights and limitations 12 | -- under the License. 13 | -- 14 | -- The Original Code is "vBilling - VoIP Billing and Routing Platform" 15 | -- 16 | -- The Initial Developer of the Original Code is 17 | -- Digital Linx [<] info at digitallinx.com [>] 18 | -- Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 19 | -- Initial Developer (Digital Linx). All Rights Reserved. 20 | -- 21 | -- vBilling, Configuration Script 22 | -- version 0.1.3 23 | -- 24 | -- Various config elements for vBilling.lua 25 | -- 26 | ]] 27 | 28 | -- START of config options 29 | --[[ 30 | DSN name for the DSN to be configured with ODBC. This is required. If not configured, 31 | script will not work. 32 | ]] 33 | DSN = "__VBILLING_DB__" 34 | 35 | --[[ 36 | MySQL database username 37 | ]] 38 | DB_USER = "__MYSQL_USERNAME__" 39 | 40 | --[[ 41 | MySQL database password 42 | ]] 43 | DB_PASSWORD = "__MYSQL_PASSWORD__" 44 | 45 | --[[ 46 | Enable vBilling debug output of LUA processing 47 | ]] 48 | VBILLING_DEBUG = "0" 49 | --[[ 50 | FreeSWITCH console log level for vBilling LUA output. NOTICE is nice, just a nicer color and quiter :) 51 | ]] 52 | FREESWITCH_CONSOLE_LOG_LEVEL = "NOTICE" 53 | 54 | -- END of config options 55 | -------------------------------------------------------------------------------- /htdocs/bin/centos/x64/vBilling_functions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/centos/x64/vBilling_functions.bin -------------------------------------------------------------------------------- /htdocs/bin/debian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/debian/x32/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/debian/x32/vBilling.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/debian/x32/vBilling.bin -------------------------------------------------------------------------------- /htdocs/bin/debian/x32/vBilling.cfg: -------------------------------------------------------------------------------- 1 | --[[ 2 | -- Version: MPL 1.1 3 | -- 4 | -- The contents of this file are subject to the Mozilla Public License 5 | -- Version 1.1 (the "License"); you may not use this file except in 6 | -- compliance with the License. You may obtain a copy of the License at 7 | -- http://www.mozilla.org/MPL/ 8 | -- 9 | -- Software distributed under the License is distributed on an "AS IS" 10 | -- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 11 | -- License for the specific language governing rights and limitations 12 | -- under the License. 13 | -- 14 | -- The Original Code is "vBilling - VoIP Billing and Routing Platform" 15 | -- 16 | -- The Initial Developer of the Original Code is 17 | -- Digital Linx [<] info at digitallinx.com [>] 18 | -- Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 19 | -- Initial Developer (Digital Linx). All Rights Reserved. 20 | -- 21 | -- vBilling, Configuration Script 22 | -- version 0.1.3 23 | -- 24 | -- Various config elements for vBilling.lua 25 | -- 26 | ]] 27 | 28 | -- START of config options 29 | --[[ 30 | DSN name for the DSN to be configured with ODBC. This is required. If not configured, 31 | script will not work. 32 | ]] 33 | DSN = "__VBILLING_DB__" 34 | 35 | --[[ 36 | MySQL database username 37 | ]] 38 | DB_USER = "__MYSQL_USERNAME__" 39 | 40 | --[[ 41 | MySQL database password 42 | ]] 43 | DB_PASSWORD = "__MYSQL_PASSWORD__" 44 | 45 | --[[ 46 | Enable vBilling debug output of LUA processing 47 | ]] 48 | VBILLING_DEBUG = "0" 49 | --[[ 50 | FreeSWITCH console log level for vBilling LUA output. NOTICE is nice, just a nicer color and quiter :) 51 | ]] 52 | FREESWITCH_CONSOLE_LOG_LEVEL = "NOTICE" 53 | 54 | -- END of config options 55 | -------------------------------------------------------------------------------- /htdocs/bin/debian/x32/vBilling_functions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/debian/x32/vBilling_functions.bin -------------------------------------------------------------------------------- /htdocs/bin/debian/x64/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/debian/x64/vBilling.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/debian/x64/vBilling.bin -------------------------------------------------------------------------------- /htdocs/bin/debian/x64/vBilling.cfg: -------------------------------------------------------------------------------- 1 | --[[ 2 | -- Version: MPL 1.1 3 | -- 4 | -- The contents of this file are subject to the Mozilla Public License 5 | -- Version 1.1 (the "License"); you may not use this file except in 6 | -- compliance with the License. You may obtain a copy of the License at 7 | -- http://www.mozilla.org/MPL/ 8 | -- 9 | -- Software distributed under the License is distributed on an "AS IS" 10 | -- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 11 | -- License for the specific language governing rights and limitations 12 | -- under the License. 13 | -- 14 | -- The Original Code is "vBilling - VoIP Billing and Routing Platform" 15 | -- 16 | -- The Initial Developer of the Original Code is 17 | -- Digital Linx [<] info at digitallinx.com [>] 18 | -- Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 19 | -- Initial Developer (Digital Linx). All Rights Reserved. 20 | -- 21 | -- vBilling, Configuration Script 22 | -- version 0.1.3 23 | -- 24 | -- Various config elements for vBilling.lua 25 | -- 26 | ]] 27 | 28 | -- START of config options 29 | --[[ 30 | DSN name for the DSN to be configured with ODBC. This is required. If not configured, 31 | script will not work. 32 | ]] 33 | DSN = "__VBILLING_DB__" 34 | 35 | --[[ 36 | MySQL database username 37 | ]] 38 | DB_USER = "__MYSQL_USERNAME__" 39 | 40 | --[[ 41 | MySQL database password 42 | ]] 43 | DB_PASSWORD = "__MYSQL_PASSWORD__" 44 | 45 | --[[ 46 | Enable vBilling debug output of LUA processing 47 | ]] 48 | VBILLING_DEBUG = "0" 49 | --[[ 50 | FreeSWITCH console log level for vBilling LUA output. NOTICE is nice, just a nicer color and quiter :) 51 | ]] 52 | FREESWITCH_CONSOLE_LOG_LEVEL = "NOTICE" 53 | 54 | -- END of config options 55 | -------------------------------------------------------------------------------- /htdocs/bin/debian/x64/vBilling_functions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/debian/x64/vBilling_functions.bin -------------------------------------------------------------------------------- /htdocs/bin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x32/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x32/vBilling.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/ubuntu/x32/vBilling.bin -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x32/vBilling.cfg: -------------------------------------------------------------------------------- 1 | --[[ 2 | -- Version: MPL 1.1 3 | -- 4 | -- The contents of this file are subject to the Mozilla Public License 5 | -- Version 1.1 (the "License"); you may not use this file except in 6 | -- compliance with the License. You may obtain a copy of the License at 7 | -- http://www.mozilla.org/MPL/ 8 | -- 9 | -- Software distributed under the License is distributed on an "AS IS" 10 | -- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 11 | -- License for the specific language governing rights and limitations 12 | -- under the License. 13 | -- 14 | -- The Original Code is "vBilling - VoIP Billing and Routing Platform" 15 | -- 16 | -- The Initial Developer of the Original Code is 17 | -- Digital Linx [<] info at digitallinx.com [>] 18 | -- Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 19 | -- Initial Developer (Digital Linx). All Rights Reserved. 20 | -- 21 | -- vBilling, Configuration Script 22 | -- version 0.1.3 23 | -- 24 | -- Various config elements for vBilling.lua 25 | -- 26 | ]] 27 | 28 | -- START of config options 29 | --[[ 30 | DSN name for the DSN to be configured with ODBC. This is required. If not configured, 31 | script will not work. 32 | ]] 33 | DSN = "__VBILLING_DB__" 34 | 35 | --[[ 36 | MySQL database username 37 | ]] 38 | DB_USER = "__MYSQL_USERNAME__" 39 | 40 | --[[ 41 | MySQL database password 42 | ]] 43 | DB_PASSWORD = "__MYSQL_PASSWORD__" 44 | 45 | --[[ 46 | Enable vBilling debug output of LUA processing 47 | ]] 48 | VBILLING_DEBUG = "0" 49 | --[[ 50 | FreeSWITCH console log level for vBilling LUA output. NOTICE is nice, just a nicer color and quiter :) 51 | ]] 52 | FREESWITCH_CONSOLE_LOG_LEVEL = "NOTICE" 53 | 54 | -- END of config options 55 | -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x32/vBilling_functions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/ubuntu/x32/vBilling_functions.bin -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x64/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x64/vBilling.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/ubuntu/x64/vBilling.bin -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x64/vBilling.cfg: -------------------------------------------------------------------------------- 1 | --[[ 2 | -- Version: MPL 1.1 3 | -- 4 | -- The contents of this file are subject to the Mozilla Public License 5 | -- Version 1.1 (the "License"); you may not use this file except in 6 | -- compliance with the License. You may obtain a copy of the License at 7 | -- http://www.mozilla.org/MPL/ 8 | -- 9 | -- Software distributed under the License is distributed on an "AS IS" 10 | -- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 11 | -- License for the specific language governing rights and limitations 12 | -- under the License. 13 | -- 14 | -- The Original Code is "vBilling - VoIP Billing and Routing Platform" 15 | -- 16 | -- The Initial Developer of the Original Code is 17 | -- Digital Linx [<] info at digitallinx.com [>] 18 | -- Portions created by Initial Developer (Digital Linx) are Copyright (C) 2011 19 | -- Initial Developer (Digital Linx). All Rights Reserved. 20 | -- 21 | -- vBilling, Configuration Script 22 | -- version 0.1.3 23 | -- 24 | -- Various config elements for vBilling.lua 25 | -- 26 | ]] 27 | 28 | -- START of config options 29 | --[[ 30 | DSN name for the DSN to be configured with ODBC. This is required. If not configured, 31 | script will not work. 32 | ]] 33 | DSN = "__VBILLING_DB__" 34 | 35 | --[[ 36 | MySQL database username 37 | ]] 38 | DB_USER = "__MYSQL_USERNAME__" 39 | 40 | --[[ 41 | MySQL database password 42 | ]] 43 | DB_PASSWORD = "__MYSQL_PASSWORD__" 44 | 45 | --[[ 46 | Enable vBilling debug output of LUA processing 47 | ]] 48 | VBILLING_DEBUG = "0" 49 | --[[ 50 | FreeSWITCH console log level for vBilling LUA output. NOTICE is nice, just a nicer color and quiter :) 51 | ]] 52 | FREESWITCH_CONSOLE_LOG_LEVEL = "NOTICE" 53 | 54 | -- END of config options 55 | -------------------------------------------------------------------------------- /htdocs/bin/ubuntu/x64/vBilling_functions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/bin/ubuntu/x64/vBilling_functions.bin -------------------------------------------------------------------------------- /htdocs/media/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/media/images/thumbs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/media/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/media/invoices/Book1.csv: -------------------------------------------------------------------------------- 1 | 92300,1.22,1.00,1,1 2 | 9665,1.22,1.00,1,1 3 | 447,1.22,1.00,1,1 4 | 5 | -------------------------------------------------------------------------------- /htdocs/media/invoices/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/sql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /htdocs/system/core/Controller.php: -------------------------------------------------------------------------------- 1 | $class) 45 | { 46 | $this->$var =& load_class($class); 47 | } 48 | 49 | $this->load =& load_class('Loader', 'core'); 50 | 51 | $this->load->initialize(); 52 | 53 | log_message('debug', "Controller Class Initialized"); 54 | } 55 | 56 | public static function &get_instance() 57 | { 58 | return self::$instance; 59 | } 60 | } 61 | // END Controller class 62 | 63 | /* End of file Controller.php */ 64 | /* Location: ./system/core/Controller.php */ -------------------------------------------------------------------------------- /htdocs/system/core/Model.php: -------------------------------------------------------------------------------- 1 | $key; 52 | } 53 | } 54 | // END Model Class 55 | 56 | /* End of file Model.php */ 57 | /* Location: ./system/core/Model.php */ -------------------------------------------------------------------------------- /htdocs/system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitallinx/vBilling/18a63964b6ecc8a362ae6f90ae80eb899a72df95/htdocs/system/fonts/texb.ttf -------------------------------------------------------------------------------- /htdocs/system/helpers/email_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | lang->line($line); 46 | 47 | if ($id != '') 48 | { 49 | $line = '"; 50 | } 51 | 52 | return $line; 53 | } 54 | } 55 | 56 | // ------------------------------------------------------------------------ 57 | /* End of file language_helper.php */ 58 | /* Location: ./system/helpers/language_helper.php */ -------------------------------------------------------------------------------- /htdocs/system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/language/spanish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/language/urdu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /htdocs/xmlcurl/configuration/switch.conf.php: -------------------------------------------------------------------------------- 1 | 16 | * @version 1.1 17 | * File containing the base class for all curl XML output 18 | */ 19 | class switch_conf extends fs_configuration { 20 | function switch_conf() { 21 | $this -> fs_configuration(); 22 | } 23 | 24 | private function get_config() { 25 | $query = sprintf('SELECT * FROM switch_conf'); 26 | $settings_array = $this -> db -> queryAll($query); 27 | $settings_count = count($settings_array); 28 | if (FS_PDO::isError($settings_array)) { 29 | $this -> comment($query); 30 | $this -> comment($this -> db -> getMessage()); 31 | return ; 32 | } 33 | 34 | return $settings_array; 35 | } 36 | 37 | private function write_config($settings_array) { 38 | $this->xmlw->startElement('configuration'); 39 | $this->xmlw->writeAttribute('name', basename(__FILE__, '.php')); 40 | $this->xmlw->writeAttribute('description', 'Switch Configuration'); 41 | $this->xmlw->startElement('settings'); 42 | $settings_count = count($settings_array); 43 | if ($settings_count > 0) { 44 | for ($i=0; $i<$settings_count; $i++) { 45 | $this->xmlw->startElement('param'); 46 | $this->xmlw->writeAttribute('name', $settings_array[$i]['param_name']); 47 | $this->xmlw->writeAttribute('value', $settings_array[$i]['param_value']); 48 | $this->xmlw->endElement();// 49 | } 50 | } 51 | $this->xmlw->endElement(); // 52 | $this->xmlw->endElement(); 53 | } 54 | 55 | public function main() { 56 | $config = $this->get_config(); 57 | $this->write_config($config); 58 | } 59 | 60 | } 61 | ?> 62 | -------------------------------------------------------------------------------- /htdocs/xmlcurl/configuration/xml_cdr.conf.php: -------------------------------------------------------------------------------- 1 | 16 | * @version 1.1 17 | */ 18 | class xml_cdr_conf extends fs_configuration { 19 | function xml_cdr_conf() { 20 | $this -> fs_configuration(); 21 | } 22 | 23 | private function get_config() { 24 | $query = sprintf('SELECT * FROM xml_cdr_conf'); 25 | $params_array = $this -> db -> queryAll($query); 26 | $params_count = count($params_array); 27 | if (FS_PDO::isError($params_array)) { 28 | $this -> comment($query); 29 | $this -> comment($this -> db -> getMessage()); 30 | $this -> debug ($query); 31 | return ; 32 | } 33 | return $params_array; 34 | } 35 | 36 | private function write_config($params_array) { 37 | $this->xmlw->startElement('configuration'); 38 | $this->xmlw->writeAttribute('name', basename(__FILE__, '.php')); 39 | $this->xmlw->writeAttribute('description', 'CDRs via XML Post'); 40 | $this->xmlw->startElement('settings'); // 41 | $params_count = count($params_array); 42 | if ($params_count > 0) { 43 | for ($i=0; $i<$params_count; $i++) { 44 | $this->xmlw->startElement('param'); // 45 | $this->xmlw->writeAttribute('name', $params_array[$i]['param_name']); 46 | $this->xmlw->writeAttribute('value', $params_array[$i]['param_value']); 47 | $this->xmlw->endElement();// 48 | } 49 | } 50 | $this->xmlw->endElement(); // 51 | $this->xmlw->endElement(); // 52 | } 53 | 54 | public function main() { 55 | $config = $this->get_config(); 56 | $this->write_config($config); 57 | } 58 | } 59 | ?> 60 | -------------------------------------------------------------------------------- /htdocs/xmlcurl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | --------------------------------------------------------------------------------