├── hooks
├── footer-extras.php
├── header-extras.php
├── index.html
├── transactions.php
├── links-navmenu.php
├── __global.php
├── links-home.php
├── items.php
├── batches.php
├── products.php
├── sections.php
├── suppliers.php
└── categories.php
├── application
├── helpers
│ ├── tcpdf
│ │ ├── tools
│ │ │ ├── .htaccess
│ │ │ └── convert_fonts_examples.txt
│ │ ├── include
│ │ │ └── sRGB.icc
│ │ ├── examples
│ │ │ ├── data
│ │ │ │ ├── cert
│ │ │ │ │ ├── tcpdf.fdf
│ │ │ │ │ ├── tcpdf.p12
│ │ │ │ │ └── tcpdf.crt
│ │ │ │ └── table_data_demo.txt
│ │ │ ├── images
│ │ │ │ ├── tcpdf_logo.jpg
│ │ │ │ ├── tcpdf_logo.psd
│ │ │ │ ├── tcpdf_logo1.jpg
│ │ │ │ └── tcpdf_logoA.jpg
│ │ │ ├── lang
│ │ │ │ ├── urd.php
│ │ │ │ ├── far.php
│ │ │ │ ├── kor.php
│ │ │ │ ├── msa.php
│ │ │ │ ├── nld.php
│ │ │ │ ├── yid.php
│ │ │ │ ├── ara.php
│ │ │ │ ├── bel.php
│ │ │ │ ├── ces.php
│ │ │ │ ├── cym.php
│ │ │ │ ├── dan.php
│ │ │ │ ├── eng.php
│ │ │ │ ├── fra.php
│ │ │ │ ├── ger.php
│ │ │ │ ├── gle.php
│ │ │ │ ├── heb.php
│ │ │ │ ├── hye.php
│ │ │ │ ├── mlt.php
│ │ │ │ ├── pol.php
│ │ │ │ ├── slv.php
│ │ │ │ ├── swe.php
│ │ │ │ ├── zho.php
│ │ │ │ ├── cat.php
│ │ │ │ ├── eus.php
│ │ │ │ ├── glg.php
│ │ │ │ ├── ita.php
│ │ │ │ ├── kat.php
│ │ │ │ ├── rus.php
│ │ │ │ ├── sqi.php
│ │ │ │ ├── srp.php
│ │ │ │ ├── swa.php
│ │ │ │ ├── afr.php
│ │ │ │ ├── bra.php
│ │ │ │ ├── bul.php
│ │ │ │ ├── est.php
│ │ │ │ ├── hrv.php
│ │ │ │ ├── hun.php
│ │ │ │ ├── por.php
│ │ │ │ ├── ukr.php
│ │ │ │ ├── aze.php
│ │ │ │ ├── ind.php
│ │ │ │ ├── mkd.php
│ │ │ │ ├── hat.php
│ │ │ │ ├── nob.php
│ │ │ │ ├── spa.php
│ │ │ │ ├── chi.php
│ │ │ │ ├── jpn.php
│ │ │ │ └── ron.php
│ │ │ └── barcodes
│ │ │ │ ├── tcpdf_barcodes_1d_include.php
│ │ │ │ ├── tcpdf_barcodes_2d_include.php
│ │ │ │ ├── example_1d_svg.php
│ │ │ │ ├── example_1d_png.php
│ │ │ │ ├── example_1d_html.php
│ │ │ │ ├── example_2d_pdf417_svg.php
│ │ │ │ ├── example_2d_pdf417_png.php
│ │ │ │ ├── example_2d_qrcode_svg.php
│ │ │ │ ├── example_1d_svgi.php
│ │ │ │ ├── example_2d_datamatrix_svg.php
│ │ │ │ ├── example_2d_pdf417_html.php
│ │ │ │ ├── example_2d_qrcode_png.php
│ │ │ │ ├── example_2d_datamatrix_png.php
│ │ │ │ ├── example_2d_qrcode_html.php
│ │ │ │ ├── example_2d_datamatrix_html.php
│ │ │ │ ├── example_2d_pdf417_svgi.php
│ │ │ │ ├── example_2d_qrcode_svgi.php
│ │ │ │ └── example_2d_datamatrix_svgi.php
│ │ ├── composer.json
│ │ └── fonts
│ │ │ ├── helvetica.php
│ │ │ └── helveticab.php
│ ├── pdf_helper.php
│ ├── index.html
│ └── multi_language_helper.php
├── cache
│ ├── .htaccess
│ └── index.html
├── views
│ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_general.php
│ │ │ ├── error_db.php
│ │ │ ├── index.html
│ │ │ ├── error_php.php
│ │ │ └── error_exception.php
│ │ ├── index.html
│ │ └── html
│ │ │ ├── index.html
│ │ │ ├── error_php.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_db.php
│ │ │ └── error_404.php
│ ├── index.html
│ ├── footer.php
│ ├── header.php
│ ├── backend
│ │ ├── admin
│ │ │ ├── modal_edit_client.php
│ │ │ ├── modal_edit_gadget.php
│ │ │ └── logs.php
│ │ └── client
│ │ │ ├── gadgets.php
│ │ │ └── mpesa.php
│ ├── breadcrumb.php
│ ├── includes_top.php
│ ├── tables.php
│ └── mpesa.php
├── index.html
├── config
│ ├── index.html
│ ├── hooks.php
│ ├── profiler.php
│ ├── memcached.php
│ ├── database.php
│ ├── doctypes.php
│ └── routes.php
├── core
│ └── index.html
├── hooks
│ └── index.html
├── language
│ ├── index.html
│ └── english
│ │ └── index.html
├── logs
│ └── index.html
├── models
│ └── index.html
├── libraries
│ └── index.html
├── third_party
│ └── index.html
└── controllers
│ └── My404.php
├── uploads
├── logo.png
└── temp.jpg
├── system
├── fonts
│ ├── texb.ttf
│ └── index.html
├── .htaccess
├── index.html
├── core
│ ├── index.html
│ └── compat
│ │ └── index.html
├── database
│ ├── index.html
│ └── drivers
│ │ ├── index.html
│ │ ├── cubrid
│ │ └── index.html
│ │ ├── ibase
│ │ └── index.html
│ │ ├── mssql
│ │ └── index.html
│ │ ├── mysql
│ │ └── index.html
│ │ ├── mysqli
│ │ └── index.html
│ │ ├── oci8
│ │ └── index.html
│ │ ├── odbc
│ │ ├── index.html
│ │ └── odbc_utility.php
│ │ ├── pdo
│ │ ├── index.html
│ │ ├── subdrivers
│ │ │ └── index.html
│ │ ├── pdo_forge.php
│ │ └── pdo_utility.php
│ │ ├── sqlite
│ │ ├── index.html
│ │ └── sqlite_utility.php
│ │ ├── sqlsrv
│ │ └── index.html
│ │ ├── postgre
│ │ └── index.html
│ │ └── sqlite3
│ │ ├── index.html
│ │ └── sqlite3_utility.php
├── helpers
│ └── index.html
├── language
│ ├── index.html
│ └── english
│ │ ├── index.html
│ │ ├── number_lang.php
│ │ └── pagination_lang.php
└── libraries
│ ├── index.html
│ ├── Cache
│ ├── index.html
│ └── drivers
│ │ └── index.html
│ ├── Session
│ ├── index.html
│ ├── drivers
│ │ └── index.html
│ └── SessionHandlerInterface.php
│ └── Javascript
│ └── index.html
├── components
├── assets
│ ├── images
│ │ ├── slide.png
│ │ └── favicon.png
│ ├── fonts
│ │ ├── socicon.eot
│ │ ├── socicon.ttf
│ │ ├── socicon.woff
│ │ ├── socicond41d.eot
│ │ ├── archicons4a3f.eot
│ │ ├── archicons4a3f.ttf
│ │ ├── archicons4a3f.woff
│ │ ├── rt-icons-23dab.eot
│ │ ├── rt-icons-23dab.ttf
│ │ ├── rt-icons-2d41d.eot
│ │ ├── rt-icons-23dab.woff
│ │ ├── fontawesome-webfont5b62.eot
│ │ ├── fontawesome-webfont5b62.html
│ │ ├── fontawesome-webfont5b62.ttf
│ │ ├── fontawesome-webfont5b62.woff
│ │ ├── fontawesome-webfontd41d.eot
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.html
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regulard41d.eot
│ ├── img
│ │ └── preloader.gif
│ └── js
│ │ └── admin
│ │ └── datatables
│ │ └── buttons.print.min.js
└── customs
│ └── login.js
├── .htaccess
└── .editorconfig
/hooks/footer-extras.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hooks/header-extras.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/tools/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
2 |
--------------------------------------------------------------------------------
/hooks/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uploads/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/uploads/logo.png
--------------------------------------------------------------------------------
/uploads/temp.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/uploads/temp.jpg
--------------------------------------------------------------------------------
/hooks/transactions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/hooks/transactions.php
--------------------------------------------------------------------------------
/system/fonts/texb.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/system/fonts/texb.ttf
--------------------------------------------------------------------------------
/components/assets/images/slide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/images/slide.png
--------------------------------------------------------------------------------
/components/assets/fonts/socicon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/socicon.eot
--------------------------------------------------------------------------------
/components/assets/fonts/socicon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/socicon.ttf
--------------------------------------------------------------------------------
/components/assets/fonts/socicon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/socicon.woff
--------------------------------------------------------------------------------
/components/assets/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/images/favicon.png
--------------------------------------------------------------------------------
/components/assets/img/preloader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/img/preloader.gif
--------------------------------------------------------------------------------
/components/assets/fonts/socicond41d.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/socicond41d.eot
--------------------------------------------------------------------------------
/application/helpers/tcpdf/include/sRGB.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/application/helpers/tcpdf/include/sRGB.icc
--------------------------------------------------------------------------------
/components/assets/fonts/archicons4a3f.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/archicons4a3f.eot
--------------------------------------------------------------------------------
/components/assets/fonts/archicons4a3f.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/archicons4a3f.ttf
--------------------------------------------------------------------------------
/components/assets/fonts/archicons4a3f.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/archicons4a3f.woff
--------------------------------------------------------------------------------
/components/assets/fonts/rt-icons-23dab.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/rt-icons-23dab.eot
--------------------------------------------------------------------------------
/components/assets/fonts/rt-icons-23dab.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/rt-icons-23dab.ttf
--------------------------------------------------------------------------------
/components/assets/fonts/rt-icons-2d41d.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/rt-icons-2d41d.eot
--------------------------------------------------------------------------------
/components/assets/fonts/rt-icons-23dab.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/rt-icons-23dab.woff
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine On
2 | RewriteCond %{REQUEST_FILENAME} !-f
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteRule ^(.*)$ index.php/$1 [L]
--------------------------------------------------------------------------------
/system/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/components/assets/fonts/fontawesome-webfont5b62.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/fontawesome-webfont5b62.eot
--------------------------------------------------------------------------------
/components/assets/fonts/fontawesome-webfont5b62.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/fontawesome-webfont5b62.html
--------------------------------------------------------------------------------
/components/assets/fonts/fontawesome-webfont5b62.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/fontawesome-webfont5b62.ttf
--------------------------------------------------------------------------------
/components/assets/fonts/fontawesome-webfont5b62.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/fontawesome-webfont5b62.woff
--------------------------------------------------------------------------------
/components/assets/fonts/fontawesome-webfontd41d.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/fontawesome-webfontd41d.eot
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/data/cert/tcpdf.fdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/application/helpers/tcpdf/examples/data/cert/tcpdf.fdf
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/data/cert/tcpdf.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/application/helpers/tcpdf/examples/data/cert/tcpdf.p12
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/images/tcpdf_logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/application/helpers/tcpdf/examples/images/tcpdf_logo.jpg
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/images/tcpdf_logo.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/application/helpers/tcpdf/examples/images/tcpdf_logo.psd
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/images/tcpdf_logo1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/application/helpers/tcpdf/examples/images/tcpdf_logo1.jpg
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/images/tcpdf_logoA.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/application/helpers/tcpdf/examples/images/tcpdf_logoA.jpg
--------------------------------------------------------------------------------
/components/assets/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/components/assets/fonts/glyphicons-halflings-regular.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/glyphicons-halflings-regular.html
--------------------------------------------------------------------------------
/components/assets/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/components/assets/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/application/cache/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/application/helpers/pdf_helper.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/components/assets/fonts/glyphicons-halflings-regulard41d.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/johniez254/e-waste/HEAD/components/assets/fonts/glyphicons-halflings-regulard41d.eot
--------------------------------------------------------------------------------
/application/views/errors/cli/error_404.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/core/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/fonts/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/helpers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/language/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/cache/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/config/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/core/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/helpers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/hooks/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/logs/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/models/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/core/compat/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/libraries/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/third_party/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/language/english/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Cache/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Session/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/english/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/cli/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/html/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/cubrid/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/ibase/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/mssql/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/mysql/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/mysqli/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/oci8/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/odbc/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/pdo/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/sqlite/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/sqlsrv/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Cache/drivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Javascript/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/postgre/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/sqlite3/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/libraries/Session/drivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/system/database/drivers/pdo/subdrivers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # top-most EditorConfig file
2 | root = true
3 |
4 | # Unix-style newlines with a newline ending every file
5 | [*]
6 | end_of_line = lf
7 | insert_final_newline = true
8 |
9 | # Matches multiple files with brace expansion notation
10 | # Set default charset
11 | [*]
12 | charset = utf-8
13 |
14 | # Tab indentation (no size specified)
15 | indent_style = tab
16 |
--------------------------------------------------------------------------------
/hooks/links-navmenu.php:
--------------------------------------------------------------------------------
1 | 'path/to/link',
7 | 'title' => 'Link title',
8 | 'groups' => array('group1', 'group2'), // groups allowed to see this link, use '*' if you want to show the link to all groups
9 | 'icon' => 'path/to/icon'
10 | );
11 | */
12 |
13 |
--------------------------------------------------------------------------------
/application/config/hooks.php:
--------------------------------------------------------------------------------
1 | output->set_status_header('404');
17 | $this->load->view('err404');
18 | }
19 |
20 |
21 | //end of class My404
22 | }
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/data/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 |
--------------------------------------------------------------------------------
/application/views/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
Copyrights © | E-waste System | All Rights Reserved
6 |
7 |
8 |
Project by Johnson Matoke
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/config/profiler.php:
--------------------------------------------------------------------------------
1 | array(
15 | 'hostname' => '127.0.0.1',
16 | 'port' => '11211',
17 | 'weight' => '1',
18 | ),
19 | );
20 |
--------------------------------------------------------------------------------
/application/views/errors/cli/error_php.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | A PHP Error was encountered
4 |
5 | Severity:
6 | Message:
7 | Filename:
8 | Line Number:
9 |
10 |
11 |
12 | Backtrace:
13 |
14 |
15 | File:
16 | Line:
17 | Function:
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/hooks/links-home.php:
--------------------------------------------------------------------------------
1 | 'path/to/link',
7 | 'title' => 'Link title',
8 | 'description' => 'Link text',
9 | 'groups' => array('group1', 'group2'), // groups allowed to see this link, use '*' if you want to show the link to all groups
10 | 'grid_column_classes' => '', // optional CSS classes to apply to link block. See: http://getbootstrap.com/css/#grid
11 | 'panel_classes' => '', // optional CSS classes to apply to panel. See: http://getbootstrap.com/components/#panels
12 | 'link_classes' => '', // optional CSS classes to apply to link. See: http://getbootstrap.com/css/#buttons
13 | 'icon' => 'path/to/icon' // optional icon to use with the link
14 | );
15 | */
16 |
17 |
--------------------------------------------------------------------------------
/application/views/errors/cli/error_exception.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | An uncaught Exception was encountered
4 |
5 | Type:
6 | Message:
7 | Filename: getFile(), "\n"; ?>
8 | Line Number: getLine(); ?>
9 |
10 |
11 |
12 | Backtrace:
13 | getTrace() as $error): ?>
14 |
15 | File:
16 | Line:
17 | Function:
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/application/config/database.php:
--------------------------------------------------------------------------------
1 | '',
14 | 'hostname' => 'localhost',
15 | 'username' => 'root',
16 | 'password' => '',
17 | 'database' => 'ewaste',
18 | 'dbdriver' => 'mysqli',
19 | 'dbprefix' => '',
20 | 'pconnect' => FALSE,
21 | 'db_debug' => (ENVIRONMENT !== 'production'),
22 | 'cache_on' => FALSE,
23 | 'cachedir' => '',
24 | 'char_set' => 'utf8',
25 | 'dbcollat' => 'utf8_general_ci',
26 | 'swap_pre' => '',
27 | 'encrypt' => FALSE,
28 | 'compress' => FALSE,
29 | 'stricton' => FALSE,
30 | 'failover' => array(),
31 | 'save_queries' => TRUE
32 | );
33 |
--------------------------------------------------------------------------------
/application/views/header.php:
--------------------------------------------------------------------------------
1 | session->userdata('id');
3 | $role=$this->db->get_where('login' , array('login_id'=>$user_id))->row()->role;
4 | ?>
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | Approved Total Earnings:
16 | Ksh qm->formatMoney($approved_earnings,true), 0, -3)?>
17 |
18 |
19 |
20 |
21 | Pending Total Earnings:
22 | Ksh qm->formatMoney($pending_earnings,true), 0, -3)?>
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_php.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
A PHP Error was encountered
8 |
9 |
Severity:
10 |
Message:
11 |
Filename:
12 |
Line Number:
13 |
14 |
15 |
16 |
Backtrace:
17 |
18 |
19 |
20 |
21 |
22 | File:
23 | Line:
24 | Function:
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_exception.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
An uncaught Exception was encountered
8 |
9 |
Type:
10 |
Message:
11 |
Filename: getFile(); ?>
12 |
Line Number: getLine(); ?>
13 |
14 |
15 |
16 |
Backtrace:
17 | getTrace() as $error): ?>
18 |
19 |
20 |
21 |
22 | File:
23 | Line:
24 | Function:
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "tecnick.com/tcpdf",
3 | "version": "6.0.099",
4 | "homepage": "http://www.tcpdf.org/",
5 | "type": "library",
6 | "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
7 | "keywords": ["PDF","tcpdf","PDFD32000-2008","qrcode","datamatrix","pdf417","barcodes"],
8 | "license": "LGPLv3",
9 | "authors": [
10 | {
11 | "name": "Nicola Asuni",
12 | "email": "info@tecnick.com",
13 | "homepage": "http://nicolaasuni.tecnick.com"
14 | }
15 | ],
16 | "require": {
17 | "php": ">=5.3.0"
18 | },
19 | "autoload": {
20 | "classmap": [
21 | "fonts",
22 | "config",
23 | "include",
24 | "tcpdf.php",
25 | "tcpdf_parser.php",
26 | "tcpdf_import.php",
27 | "tcpdf_barcodes_1d.php",
28 | "tcpdf_barcodes_2d.php",
29 | "include/tcpdf_colors.php",
30 | "include/tcpdf_filters.php",
31 | "include/tcpdf_font_data.php",
32 | "include/tcpdf_fonts.php",
33 | "include/tcpdf_images.php",
34 | "include/tcpdf_static.php",
35 | "include/barcodes/datamatrix.php",
36 | "include/barcodes/pdf417.php",
37 | "include/barcodes/qrcode.php"
38 | ]
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/lang/urd.php:
--------------------------------------------------------------------------------
1 | components/customs/register.js">
2 | result() as $row):
3 | $login_id=$row->login_id;
4 | $name=$row->name;
5 | $email=$row->email;
6 | ?>
7 |
8 | "form", 'id' => 'updateClientForm');
9 | echo form_open("admin/clients_crud/update/".$login_id, $attributes);?>
10 |
11 |
12 |
13 |
14 | 'u_name',
17 | 'type'=>'text',
18 | 'placeholder'=>'full names',
19 | 'class'=>'form-control',
20 | 'id'=>'u_name',
21 | 'value'=>$name,
22 | );
23 | echo form_input($data);
24 | ?>
25 |
26 |
27 |
28 |
29 | 'u_email',
32 | 'type'=>'text',
33 | 'placeholder'=>'Email',
34 | 'class'=>'form-control',
35 | 'id'=>'u_email',
36 | 'value'=>$email,
37 |
38 | );
39 | echo form_input($data);
40 | ?>
41 |
42 | 'submit',
45 | 'class'=>'theme_button inverse',
46 | 'value'=>'Update Client',
47 |
48 | );
49 | echo form_submit($data);
50 | ?>
51 |
--------------------------------------------------------------------------------
/application/views/breadcrumb.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | -
8 | Homepage
9 |
10 |
11 |
12 | -
13 | Homepage
14 |
15 | -
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_general.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | Error
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_db.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | Database Error
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/application/views/errors/html/error_404.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | 404 Page Not Found
8 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/components/customs/login.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 | $("#loginform").unbind('submit').bind('submit', function() {
3 |
4 | var form = $(this);
5 | var url = form.attr('action');
6 | var type = form.attr('method');
7 |
8 | $.ajax({
9 | url : url,
10 | type : type,
11 | data : form.serialize(),
12 | dataType: 'json',
13 | success:function(response) {
14 | if(response.success === true) {
15 | window.location = response.messages;
16 | }
17 | else {
18 | if(response.messages instanceof Object) {
19 | $("#message").html('');
20 |
21 | $.each(response.messages, function(index, value) {
22 | var key = $("#" + index);
23 |
24 | key.closest('.form-group')
25 | .removeClass('has-error')
26 | .removeClass('has-success')
27 | .addClass(value.length > 0 ? 'has-error' : 'has-success')
28 | .find('.help-block').remove();
29 |
30 | key.after(value);
31 |
32 | });
33 |
34 | }
35 | else {
36 | //$("#loginForm")[0].reset();
37 | $(".help-block").remove();
38 | $(".form-group").removeClass('has-error').removeClass('has-success');
39 |
40 | $("#message").html(''+
41 | '
'+
42 | response.messages +
43 | '');
44 | } // /else
45 | } // /else
46 | } // /if
47 | });
48 |
49 | return false;
50 | });
51 | });// JavaScript Document
52 |
53 |
54 |
--------------------------------------------------------------------------------
/application/views/backend/admin/modal_edit_gadget.php:
--------------------------------------------------------------------------------
1 |
2 | result() as $row):
3 | $gadget_id=$row->gadget_id;
4 | $gadget_name=$row->gadget_name;
5 | $gadget_price=$row->gadget_price;
6 | ?>
7 |
8 | "form", 'id' => 'updateGadgetForm');
9 | echo form_open("admin/gadgets_crud/update/".$gadget_id, $attributes);?>
10 |
11 |
12 |
13 |
14 | 'gname',
17 | 'type'=>'text',
18 | 'placeholder'=>'Gadget Name',
19 | 'class'=>'form-control',
20 | 'id'=>'gname',
21 | 'value'=>$gadget_name,
22 | );
23 | echo form_input($data);
24 | ?>
25 |
26 |
27 |
28 |
29 | 'gprice',
32 | 'type'=>'text',
33 | 'placeholder'=>'Gadget price',
34 | 'class'=>'form-control',
35 | 'id'=>'gprice',
36 | 'value'=>$gadget_price,
37 |
38 | );
39 | echo form_input($data);
40 | ?>
41 |
42 | 'submit',
45 | 'class'=>'theme_button inverse',
46 | 'value'=>'Update Gadget',
47 |
48 | );
49 | echo form_submit($data);
50 | ?>
51 | 'reset',
54 | 'class'=>'theme_button color1',
55 | 'value'=>'Reset',
56 |
57 | );
58 | echo form_submit($data);
59 | ?>
60 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/tcpdf_barcodes_1d_include.php:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | uri->total_segments();
21 | //$last_segment = $this->uri->segment($total_segments);
22 | if($total_segments>=2){
23 | echo link_tag('components/assets/css/dashboard.css" class="color-switcher-link');
24 | }else{}?>
25 |
26 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/components/assets/js/admin/datatables/buttons.print.min.js:
--------------------------------------------------------------------------------
1 | (function(f){"function"===typeof define&&define.amd?define(["jquery","datatables.net","datatables.net-buttons"],function(e){return f(e,window,document)}):"object"===typeof exports?module.exports=function(e,c){e||(e=window);if(!c||!c.fn.dataTable)c=require("datatables.net")(e,c).$;c.fn.dataTable.Buttons||require("datatables.net-buttons")(e,c);return f(c,e,e.document)}:f(jQuery,window,document)})(function(f,e,c){var i=f.fn.dataTable,h=c.createElement("a");i.ext.buttons.print={className:"buttons-print",
2 | text:function(b){return b.i18n("buttons.print","Print")},action:function(b,c,i,d){var a=c.buttons.exportData(d.exportOptions),k=function(b,a){for(var c="",d=0,e=b.length;d"+b[d]+""+a+">";return c+"
"},b='';d.header&&(b+=""+k(a.header,"th")+"");for(var b=b+"",l=0,m=a.body.length;l";d.footer&&a.footer&&(b+=""+k(a.footer,"th")+"");var g=e.open("",""),
3 | a=d.title;"function"===typeof a&&(a=a());-1!==a.indexOf("*")&&(a=a.replace("*",f("title").text()));g.document.close();var j=""+a+"";f("style, link").each(function(){var c=j,b=f(this).clone()[0],a;"link"===b.nodeName.toLowerCase()&&(h.href=b.href,a=h.host,-1===a.indexOf("/")&&0!==h.pathname.indexOf("/")&&(a+="/"),b.href=h.protocol+"//"+a+h.pathname+h.search);j=c+b.outerHTML});try{g.document.head.innerHTML=j}catch(n){f(g.document.head).html(j)}g.document.body.innerHTML=""+a+"
"+
4 | ("function"===typeof d.message?d.message(c,i,d):d.message)+"
"+b;d.customize&&d.customize(g);setTimeout(function(){d.autoPrint&&(g.print(),g.close())},250)},title:"*",message:"",exportOptions:{},header:!0,footer:!1,autoPrint:!0,customize:null};return i.Buttons});
5 |
--------------------------------------------------------------------------------
/application/helpers/multi_language_helper.php:
--------------------------------------------------------------------------------
1 | load->database();
22 | $current_language = $CI->db->get_where('settings' , array('id' => '1'))->row()->language;
23 |
24 | if ( $current_language == '') {
25 | $current_language = 'english';
26 | $CI->session->set_userdata('current_language' , $current_language);
27 | }
28 |
29 |
30 | /** insert blank phrases initially and populating the language db ***/
31 | $check_phrase = $CI->db->get_where('language' , array('phrase' => $phrase))->row()->phrase;
32 | if ( $check_phrase != $phrase)
33 | $CI->db->insert('language' , array('phrase' => $phrase));
34 |
35 |
36 | // query for finding the phrase from `language` table
37 | $query = $CI->db->get_where('language' , array('phrase' => $phrase));
38 | $row = $query->row();
39 |
40 | // return the current sessioned language field of according phrase, else return uppercase spaced word
41 | if (isset($row->$current_language) && $row->$current_language !="")
42 | return $row->$current_language;
43 | else
44 | return ucwords(str_replace('_',' ',$phrase));
45 | }
46 | }
47 |
48 | // ------------------------------------------------------------------------
49 | /* End of file language_helper.php */
50 | /* Location: ./system/helpers/language_helper.php */
--------------------------------------------------------------------------------
/application/views/backend/client/gadgets.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
Registered disposable gadgets ()
19 |
20 |
21 |
22 |
23 |
24 | | # |
25 | Gadget |
26 | Price(Ksh) |
27 |
28 |
29 |
30 |
31 |
38 |
39 | | . |
40 | |
41 | |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/application/views/tables.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/views/mpesa.php:
--------------------------------------------------------------------------------
1 | 'https://sandbox.safaricom.co.ke/oauth/v1/generate?grant_type=client_credentials',
7 | CURLOPT_RETURNTRANSFER => true,
8 | CURLOPT_ENCODING => '',
9 | CURLOPT_MAXREDIRS => 10,
10 | CURLOPT_TIMEOUT => 0,
11 | CURLOPT_FOLLOWLOCATION => true,
12 | CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
13 | CURLOPT_CUSTOMREQUEST => 'GET',
14 | CURLOPT_HTTPHEADER => array(
15 | 'Authorization: Basic Vng4U2ZNaEExdWE2RDlQQjJCMmhiWXh0cTlBRXdBVjk6Mk1oM3ZZSU1NeG50SEZBRA=='
16 | ),
17 | ));
18 |
19 | $response = curl_exec($curl);
20 |
21 | curl_close($curl);
22 |
23 | $mpesa_response = json_decode($response);
24 |
25 | $access_token = $mpesa_response->access_token;
26 |
27 | // echo $access_token;
28 |
29 | $curl = curl_init();
30 |
31 | curl_setopt_array($curl, array(
32 | CURLOPT_URL => 'https://sandbox.safaricom.co.ke/mpesa/stkpush/v1/processrequest',
33 | CURLOPT_RETURNTRANSFER => true,
34 | CURLOPT_ENCODING => '',
35 | CURLOPT_MAXREDIRS => 10,
36 | CURLOPT_TIMEOUT => 0,
37 | CURLOPT_FOLLOWLOCATION => true,
38 | CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
39 | CURLOPT_CUSTOMREQUEST => 'POST',
40 | CURLOPT_POSTFIELDS =>'{
41 | "BusinessShortCode": "174379",
42 | "Password": "MTc0Mzc5YmZiMjc5ZjlhYTliZGJjZjE1OGU5N2RkNzFhNDY3Y2QyZTBjODkzMDU5YjEwZjc4ZTZiNzJhZGExZWQyYzkxOTIwMjAwMjAzMDIxMjAw",
43 | "Timestamp": "20200203021200",
44 | "TransactionType": "CustomerPayBillOnline",
45 | "Amount": "1",
46 | "PartyA": "254725542046",
47 | "PartyB": "174379",
48 | "PhoneNumber": "254725542046",
49 | "CallBackURL": "https://db9c5a77cbfe.ngrok.io",
50 | "AccountReference": "F5S6F7",
51 | "TransactionDesc": "E-Waste"
52 | }',
53 | CURLOPT_HTTPHEADER => array(
54 | 'Authorization: Bearer '.$access_token,
55 | 'Content-Type: application/json'
56 | ),
57 | ));
58 |
59 | $response = curl_exec($curl);
60 |
61 | curl_close($curl);
62 | echo $response;
63 |
64 | ?>
--------------------------------------------------------------------------------
/system/language/english/number_lang.php:
--------------------------------------------------------------------------------
1 | 'https://sandbox.safaricom.co.ke/oauth/v1/generate?grant_type=client_credentials',
7 | CURLOPT_RETURNTRANSFER => true,
8 | CURLOPT_ENCODING => '',
9 | CURLOPT_MAXREDIRS => 10,
10 | CURLOPT_TIMEOUT => 0,
11 | CURLOPT_FOLLOWLOCATION => true,
12 | CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
13 | CURLOPT_CUSTOMREQUEST => 'GET',
14 | CURLOPT_HTTPHEADER => array(
15 | 'Authorization: Basic Vng4U2ZNaEExdWE2RDlQQjJCMmhiWXh0cTlBRXdBVjk6Mk1oM3ZZSU1NeG50SEZBRA=='
16 | ),
17 | ));
18 |
19 | $response = curl_exec($curl);
20 |
21 | curl_close($curl);
22 |
23 | $mpesa_response = json_decode($response);
24 |
25 | $access_token = $mpesa_response->access_token;
26 |
27 | // echo $access_token;
28 |
29 | $curl = curl_init();
30 |
31 | curl_setopt_array($curl, array(
32 | CURLOPT_URL => 'https://sandbox.safaricom.co.ke/mpesa/stkpush/v1/processrequest',
33 | CURLOPT_RETURNTRANSFER => true,
34 | CURLOPT_ENCODING => '',
35 | CURLOPT_MAXREDIRS => 10,
36 | CURLOPT_TIMEOUT => 0,
37 | CURLOPT_FOLLOWLOCATION => true,
38 | CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
39 | CURLOPT_CUSTOMREQUEST => 'POST',
40 | CURLOPT_POSTFIELDS =>'{
41 | "BusinessShortCode": "174379",
42 | "Password": "MTc0Mzc5YmZiMjc5ZjlhYTliZGJjZjE1OGU5N2RkNzFhNDY3Y2QyZTBjODkzMDU5YjEwZjc4ZTZiNzJhZGExZWQyYzkxOTIwMjAwMjAzMDIxMjAw",
43 | "Timestamp": "20200203021200",
44 | "TransactionType": "CustomerPayBillOnline",
45 | "Amount": ".'.$transaction_total.'",
46 | "PartyA": "'.$phone.'",
47 | "PartyB": "174379",
48 | "PhoneNumber": "'.$phone.'",
49 | "CallBackURL": "https://db9c5a77cbfe.ngrok.io",
50 | "AccountReference": "'.$transaction_code.'",
51 | "TransactionDesc": "E-Waste"
52 | }',
53 | CURLOPT_HTTPHEADER => array(
54 | 'Authorization: Bearer '.$access_token,
55 | 'Content-Type: application/json'
56 | ),
57 | ));
58 |
59 | $response = curl_exec($curl);
60 |
61 | curl_close($curl);
62 | echo $response;
63 |
64 | ?>
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_1d_svg.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.000
40 | */
41 |
42 | // include 1D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128');
47 |
48 | // output the barcode as SVG image
49 | $barcodeobj->getBarcodeSVG(2, 30, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_1d_png.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.000
40 | */
41 |
42 | // include 1D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128');
47 |
48 | // output the barcode as PNG image
49 | $barcodeobj->getBarcodePNG(2, 30, array(0,0,0));
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_1d_html.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.000
40 | */
41 |
42 | // include 1D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128');
47 |
48 | // output the barcode as HTML object
49 | echo $barcodeobj->getBarcodeHTML(2, 30, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_pdf417_svg.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417');
47 |
48 | // output the barcode as SVG image
49 | $barcodeobj->getBarcodeSVG(4, 4, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_pdf417_png.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417');
47 |
48 | // output the barcode as PNG image
49 | $barcodeobj->getBarcodePNG(4, 4, array(0,0,0));
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_qrcode_svg.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H');
47 |
48 | // output the barcode as SVG image
49 | $barcodeobj->getBarcodeSVG(6, 6, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_1d_svgi.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.000
40 | */
41 |
42 | // include 1D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_1d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDFBarcode('http://www.tcpdf.org', 'C128');
47 |
48 | // output the barcode as SVG inline code
49 | echo $barcodeobj->getBarcodeSVGcode(2, 40, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_datamatrix_svg.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX');
47 |
48 | // output the barcode as SVG image
49 | $barcodeobj->getBarcodeSVG(6, 6, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_pdf417_html.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417');
47 |
48 | // output the barcode as HTML object
49 | echo $barcodeobj->getBarcodeHTML(4, 4, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_qrcode_png.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H');
47 |
48 | // output the barcode as PNG image
49 | $barcodeobj->getBarcodePNG(6, 6, array(0,0,0));
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_datamatrix_png.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX');
47 |
48 | // output the barcode as PNG image
49 | $barcodeobj->getBarcodePNG(6, 6, array(0,0,0));
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_qrcode_html.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H');
47 |
48 | // output the barcode as HTML object
49 | echo $barcodeobj->getBarcodeHTML(6, 6, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_datamatrix_html.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX');
47 |
48 | // output the barcode as HTML object
49 | echo $barcodeobj->getBarcodeHTML(6, 6, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_pdf417_svgi.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'PDF417');
47 |
48 | // output the barcode as SVG inline code
49 | echo $barcodeobj->getBarcodeSVGcode(4, 4, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_qrcode_svgi.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'QRCODE,H');
47 |
48 | // output the barcode as SVG inline code
49 | echo $barcodeobj->getBarcodeSVGcode(6, 6, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/barcodes/example_2d_datamatrix_svgi.php:
--------------------------------------------------------------------------------
1 | .
26 | //
27 | // See LICENSE.TXT file for more information.
28 | // -------------------------------------------------------------------
29 | //
30 | // Description : Example for tcpdf_barcodes_2d.php class
31 | //
32 | //============================================================+
33 |
34 | /**
35 | * @file
36 | * Example for tcpdf_barcodes_2d.php class
37 | * @package com.tecnick.tcpdf
38 | * @author Nicola Asuni
39 | * @version 1.0.009
40 | */
41 |
42 | // include 2D barcode class (search for installation path)
43 | require_once(dirname(__FILE__).'/tcpdf_barcodes_2d_include.php');
44 |
45 | // set the barcode content and type
46 | $barcodeobj = new TCPDF2DBarcode('http://www.tcpdf.org', 'DATAMATRIX');
47 |
48 | // output the barcode as SVG inline code
49 | echo $barcodeobj->getBarcodeSVGcode(6, 6, 'black');
50 |
51 | //============================================================+
52 | // END OF FILE
53 | //============================================================+
54 |
--------------------------------------------------------------------------------
/hooks/items.php:
--------------------------------------------------------------------------------
1 | db->display_error('db_unsupported_feature');
59 | }
60 |
61 | }
62 |
--------------------------------------------------------------------------------
/application/views/backend/admin/logs.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
All Logs ()
19 |
20 |
21 |
22 |
23 |
24 | | # |
25 | Message |
26 | Date and Time |
27 | Trigger user |
28 |
29 |
30 |
31 |
32 |
40 |
41 | | . |
42 | |
43 | '.date('D, d/M/Y',$trigger_date).' at '.date('h:i:a',$trigger_date) ?> |
44 |
45 |
46 | Admin
47 |
48 | Client
49 |
50 | |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
--------------------------------------------------------------------------------
/system/database/drivers/sqlite/sqlite_utility.php:
--------------------------------------------------------------------------------
1 | db->display_error('db_unsupported_feature');
59 | }
60 |
61 | }
62 |
--------------------------------------------------------------------------------
/hooks/products.php:
--------------------------------------------------------------------------------
1 | db->display_error('db_unsupported_feature');
61 | }
62 |
63 | }
64 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/examples/data/cert/tcpdf.crt:
--------------------------------------------------------------------------------
1 | Bag Attributes
2 | localKeyID: 7B AB 1B 7A BE 4C 85 C0 1A A6 DC 59 3F 79 48 C3 93 38 68 9C
3 | subject=/CN=TCPDF DEMO/O=TCPDF/OU=DEMO/emailAddress=you@example.com/C=IT
4 | issuer=/CN=TCPDF DEMO/O=TCPDF/OU=DEMO/emailAddress=you@example.com/C=IT
5 | -----BEGIN CERTIFICATE-----
6 | MIIC1TCCAj6gAwIBAgIKkehOL/XGkB5cjjANBgkqhkiG9w0BAQUFADBhMRMwEQYD
7 | VQQDEwpUQ1BERiBERU1PMQ4wDAYDVQQKEwVUQ1BERjENMAsGA1UECxMEREVNTzEe
8 | MBwGCSqGSIb3DQEJARYPeW91QGV4YW1wbGUuY29tMQswCQYDVQQGEwJJVDAeFw0w
9 | OTA4MjExMjU0NDhaFw0xNDA4MjExMjU0NDhaMGExEzARBgNVBAMTClRDUERGIERF
10 | TU8xDjAMBgNVBAoTBVRDUERGMQ0wCwYDVQQLEwRERU1PMR4wHAYJKoZIhvcNAQkB
11 | Fg95b3VAZXhhbXBsZS5jb20xCzAJBgNVBAYTAklUMIGfMA0GCSqGSIb3DQEBAQUA
12 | A4GNADCBiQKBgQDAqIL0uGKmTR98Lxx2vEEE1OGKkMXFo0JViitALe7Onhxxqx0H
13 | XMUDKF5mvEVu1rcvh7/oAnAfrCuEpL/up3u1mQCgBE7WXBnFFE/AE3jCksh9OkS0
14 | Z0Xj9woN5bzxRDsGoPiOu/4xzk5qSEXt8jf2Ep90QuNkqLIRT4swAzpDbwIDAQAB
15 | o4GTMIGQMDcGA1UdEgQwMC6gEQYDVQQDDApUQ1BERiBERU1PoAwGA1UECgwFVENQ
16 | REagCwYDVQQLDARERU1PMDcGA1UdEQQwMC6gEQYDVQQDDApUQ1BERiBERU1PoAwG
17 | A1UECgwFVENQREagCwYDVQQLDARERU1PMA8GCSqGSIb3LwEBCgQCBQAwCwYDVR0P
18 | BAQDAgSQMA0GCSqGSIb3DQEBBQUAA4GBAEhTQfqX3ZNdHmpTLDbIj22RHXii2roE
19 | OavCbu9WsHoWpva0qSd+yIoD594VHvYAd29sfzDfiN+7W0aiZfDhq5jpaSQMVlN8
20 | RGYMupbHY/+a9Gz1wqxnR84mlTtIkZVRYAhsfPwy6M1BEjdMqfdh9h40JIdkdjtb
21 | 8faTCfXPePWQ
22 | -----END CERTIFICATE-----
23 | Bag Attributes
24 | localKeyID: 7B AB 1B 7A BE 4C 85 C0 1A A6 DC 59 3F 79 48 C3 93 38 68 9C
25 | Key Attributes:
26 | -----BEGIN RSA PRIVATE KEY-----
27 | MIICXQIBAAKBgQDAqIL0uGKmTR98Lxx2vEEE1OGKkMXFo0JViitALe7Onhxxqx0H
28 | XMUDKF5mvEVu1rcvh7/oAnAfrCuEpL/up3u1mQCgBE7WXBnFFE/AE3jCksh9OkS0
29 | Z0Xj9woN5bzxRDsGoPiOu/4xzk5qSEXt8jf2Ep90QuNkqLIRT4swAzpDbwIDAQAB
30 | AoGAXc+wNMmz/5Z+RlIKYia44klmqbplEx+0JULqXI4BQsrqvs67i+I4bJkznoL+
31 | rEIRYSuQ3sCRKFsFtckjTGpxadnxkB+uwGKc6pZChv99BFX6HFR4hgBlT/BBRAQA
32 | hMDlM2JIRr4S4SMVXR7MHwGMUf9mUeanGLR3ZWtU3aXJrIECQQD7OaYUVYNEEnM9
33 | uXyjm22CuHyqyEf5gb13sK0uQty67547yJTMUQZd/sQc9KGwhzBbhrob2LO2jAhh
34 | S+f+NSRnAkEAxFHm3fMI5RgXmswxlGm4QW07a/Ueo7ZJG6xjTkFXluJhd+XHswRD
35 | dQIO3zG9nGjNUoeMrPhXhPvKqFc2F9RDuQJAQBEGin74N77gxqfr4ik79y8nE8J5
36 | oGZ2s/RJZdfFRKLg3mwbjjNHhWb4Ck5UgZkoOt8TzRApXG8/n9hktE5HFwJBALur
37 | M5AueO1Pl5kB489lNJ9OxUQRYUXMxpxuscuoCQwSwmv0O2+0/qtG2WKhUQnI4aYo
38 | L+FV0YwtivBb1jj3T/kCQQDIWOxq8eRowdaMzvJpRUHFgMcf1AVZExKyrugwYOWd
39 | KNsDxC4KaQOsPt8iT/Ulo4g/MJC0HolCOhWibKmR9Ayl
40 | -----END RSA PRIVATE KEY-----
41 |
--------------------------------------------------------------------------------
/system/database/drivers/odbc/odbc_utility.php:
--------------------------------------------------------------------------------
1 | db->display_error('db_unsupported_feature');
61 | }
62 |
63 | }
64 |
--------------------------------------------------------------------------------
/application/config/doctypes.php:
--------------------------------------------------------------------------------
1 | '',
6 | 'xhtml1-strict' => '',
7 | 'xhtml1-trans' => '',
8 | 'xhtml1-frame' => '',
9 | 'xhtml-basic11' => '',
10 | 'html5' => '',
11 | 'html4-strict' => '',
12 | 'html4-trans' => '',
13 | 'html4-frame' => '',
14 | 'mathml1' => '',
15 | 'mathml2' => '',
16 | 'svg10' => '',
17 | 'svg11' => '',
18 | 'svg11-basic' => '',
19 | 'svg11-tiny' => '',
20 | 'xhtml-math-svg-xh' => '',
21 | 'xhtml-math-svg-sh' => '',
22 | 'xhtml-rdfa-1' => '',
23 | 'xhtml-rdfa-2' => ''
24 | );
25 |
--------------------------------------------------------------------------------
/system/libraries/Session/SessionHandlerInterface.php:
--------------------------------------------------------------------------------
1 | my_controller/index
50 | | my-controller/my-method -> my_controller/my_method
51 | */
52 | $route['default_controller'] = 'index';
53 |
54 | $route['404_override'] = 'my404';//mine replaced with my_404
55 | $route['translate_uri_dashes'] = FALSE;
56 |
57 | //my routes
58 | $route['register'] = 'login/register';
59 | $route['logout'] = 'index/logout';
60 | // $route['client/disposes/new'] = 'client/disposes/new';
61 | // $route['client/disposes/all'] = 'client/disposes/disposed';
62 | $route['admin/disposes/view/(:any)'] = 'admin/view_disposes/$1';
63 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/fonts/helvetica.php:
--------------------------------------------------------------------------------
1 | 32,'FontBBox'=>'[-166 -225 1000 931]','ItalicAngle'=>0,'Ascent'=>931,'Descent'=>-225,'Leading'=>0,'CapHeight'=>718,'XHeight'=>523,'StemV'=>88,'StemH'=>76,'AvgWidth'=>513,'MaxWidth'=>1015,'MissingWidth'=>513);
11 | $cw=array(0=>500,1=>500,2=>500,3=>500,4=>500,5=>500,6=>500,7=>500,8=>500,9=>500,10=>500,11=>500,12=>500,13=>500,14=>500,15=>500,16=>500,17=>500,18=>500,19=>500,20=>500,21=>500,22=>500,23=>500,24=>500,25=>500,26=>500,27=>500,28=>500,29=>500,30=>500,31=>500,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191,40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556,50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278,60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667,70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778,80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667,90=>611,91=>278,92=>278,93=>277,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500,100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222,109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556,118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584,127=>500,128=>655,129=>500,130=>222,131=>278,132=>333,133=>1000,134=>556,135=>556,136=>333,137=>1000,138=>667,139=>250,140=>1000,141=>500,142=>611,143=>500,144=>500,145=>222,146=>221,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000,154=>500,155=>250,156=>938,157=>500,158=>500,159=>667,160=>278,161=>278,162=>556,163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>448,172=>584,173=>333,174=>737,175=>333,176=>606,177=>584,178=>350,179=>350,180=>333,181=>556,182=>537,183=>278,184=>333,185=>350,186=>365,187=>448,188=>869,189=>869,190=>879,191=>556,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278,208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778,217=>722,218=>722,219=>722,220=>722,221=>667,222=>666,223=>611,224=>556,225=>556,226=>556,227=>556,228=>556,229=>556,230=>896,231=>500,232=>556,233=>556,234=>556,235=>556,236=>251,237=>251,238=>251,239=>251,240=>556,241=>556,242=>556,243=>556,244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556,253=>500,254=>555,255=>500);
12 |
13 | // --- EOF ---
14 |
--------------------------------------------------------------------------------
/application/helpers/tcpdf/fonts/helveticab.php:
--------------------------------------------------------------------------------
1 | 32,'FontBBox'=>'[-170 -228 1003 962]','ItalicAngle'=>0,'Ascent'=>962,'Descent'=>-228,'Leading'=>0,'CapHeight'=>718,'XHeight'=>532,'StemV'=>140,'StemH'=>118,'AvgWidth'=>535,'MaxWidth'=>1000,'MissingWidth'=>535);
11 | $cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278,10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278,20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278,30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238,40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556,50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333,60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667,70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778,80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667,90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556,100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278,109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611,118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584,127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556,136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350,145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000,154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556,163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556,172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333,181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834,190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278,208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778,217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556,226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556,235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611,244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611,253=>556,254=>611,255=>556);
12 | // --- EOF ---
13 |
--------------------------------------------------------------------------------