├── img ├── image6.png ├── image7.jpg ├── image8.jpg └── image9.png ├── templates ├── images │ ├── sound.png │ ├── text.png │ ├── asterisk.gif │ ├── favicon.ico │ ├── compressed.png │ └── header_gradient.png ├── footer.tpl.php ├── header.tpl.php └── form.tpl.php ├── asterisk-cdr-viewer-latest.tgz ├── include ├── plugins │ ├── au_callrates.csv │ └── au_callrates.inc.php ├── config.inc.php └── functions.inc.php ├── callrates.csv ├── contrib ├── httpd │ └── asterisk-cdr-viewer.conf └── Readme ├── README.md ├── download.php ├── style ├── screen.css └── csshover.htc └── index.php /img/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/img/image6.png -------------------------------------------------------------------------------- /img/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/img/image7.jpg -------------------------------------------------------------------------------- /img/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/img/image8.jpg -------------------------------------------------------------------------------- /img/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/img/image9.png -------------------------------------------------------------------------------- /templates/images/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/templates/images/sound.png -------------------------------------------------------------------------------- /templates/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/templates/images/text.png -------------------------------------------------------------------------------- /templates/images/asterisk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/templates/images/asterisk.gif -------------------------------------------------------------------------------- /templates/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/templates/images/favicon.ico -------------------------------------------------------------------------------- /asterisk-cdr-viewer-latest.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/asterisk-cdr-viewer-latest.tgz -------------------------------------------------------------------------------- /templates/images/compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/templates/images/compressed.png -------------------------------------------------------------------------------- /templates/images/header_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g613/asterisk-cdr-viewer/HEAD/templates/images/header_gradient.png -------------------------------------------------------------------------------- /include/plugins/au_callrates.csv: -------------------------------------------------------------------------------- 1 | 3,0.11,Local,c 2 | 7,0.11,Local,c 3 | 07,0.11,Local,c 4 | 02,0.11,Local,c 5 | 03,0.11,Local,c 6 | 08,0.11,Local,c 7 | 04,0.22,Mobile,1m+s 8 | 13,0.33,one3Call,c 9 | 001,1.2974962,Intr,s 10 | -------------------------------------------------------------------------------- /templates/footer.tpl.php: -------------------------------------------------------------------------------- 1 |
7 |