├── .editorconfig
├── .github
├── FUNDING.yml
└── workflows
│ └── php.yml
├── .gitignore
├── .htaccess
├── CODE_OF_CONDUCT.md
├── LICENSE.md
├── SECURITY.md
├── SchoolERP Docs
├── ER_View.docx
├── SRS for School ERP.doc
├── Use Case Diagrams.docx
├── adm_school_erp.docx
├── class diagram of application.vsdx
├── enquiry_new.vsdx
├── er for fees.vsdx
├── use_case for accountant.vsdx
├── use_case for admin.vsdx
├── use_case for faculty.vsdx
├── use_case for login.vsdx
├── use_case for owner.vsdx
├── use_case for receptionist.vsdx
├── use_case for students.vsdx
├── ~$R_View.docx
└── ~WRL0868.tmp
├── SchoolErp.iml
├── abcd
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── autoload.php
│ ├── config.php
│ ├── constants.php
│ ├── database.php
│ ├── doctypes.php
│ ├── foreign_chars.php
│ ├── form_validation.php
│ ├── hooks.php
│ ├── index.html
│ ├── memcached.php
│ ├── migration.php
│ ├── mimes.php
│ ├── profiler.php
│ ├── routes.php
│ ├── smileys.php
│ └── user_agents.php
├── controllers
│ ├── accounts.php
│ ├── admin.php
│ ├── admissions.php
│ ├── attendance.php
│ ├── calendar.php
│ ├── certificates.php
│ ├── dashboard.php
│ ├── discuss.php
│ ├── dues_list.php
│ ├── enquiry.php
│ ├── exams.php
│ ├── fees.php
│ ├── fees_dues.php
│ ├── fees_reports.php
│ ├── home.php
│ ├── hr.php
│ ├── index.html
│ ├── library.php
│ ├── lms.php
│ ├── misc.php
│ ├── owner.php
│ ├── quiz.php
│ ├── summary.php
│ ├── testing.php
│ ├── time_table.php
│ ├── transport.php
│ └── upload.php
├── core
│ ├── MY_Controller.php
│ ├── MY_Model.php
│ └── index.html
├── helpers
│ ├── Templates.php
│ └── index.html
├── hooks
│ └── index.html
├── index.html
├── language
│ ├── english
│ │ └── index.html
│ └── index.html
├── libraries
│ ├── Excel.php
│ ├── IOFactory.php
│ ├── TCPDF
│ │ ├── CHANGELOG.TXT
│ │ ├── LICENSE.TXT
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── config
│ │ │ └── tcpdf_config.php
│ │ ├── examples
│ │ │ ├── barcodes
│ │ │ │ ├── example_1d_html.php
│ │ │ │ ├── example_1d_png.php
│ │ │ │ ├── example_1d_svg.php
│ │ │ │ ├── example_1d_svgi.php
│ │ │ │ ├── example_2d_datamatrix_html.php
│ │ │ │ ├── example_2d_datamatrix_png.php
│ │ │ │ ├── example_2d_datamatrix_svg.php
│ │ │ │ ├── example_2d_datamatrix_svgi.php
│ │ │ │ ├── example_2d_pdf417_html.php
│ │ │ │ ├── example_2d_pdf417_png.php
│ │ │ │ ├── example_2d_pdf417_svg.php
│ │ │ │ ├── example_2d_pdf417_svgi.php
│ │ │ │ ├── example_2d_qrcode_html.php
│ │ │ │ ├── example_2d_qrcode_png.php
│ │ │ │ ├── example_2d_qrcode_svg.php
│ │ │ │ ├── example_2d_qrcode_svgi.php
│ │ │ │ ├── tcpdf_barcodes_1d_include.php
│ │ │ │ └── tcpdf_barcodes_2d_include.php
│ │ │ ├── config
│ │ │ │ └── tcpdf_config_alt.php
│ │ │ ├── data
│ │ │ │ ├── cert
│ │ │ │ │ ├── tcpdf.crt
│ │ │ │ │ ├── tcpdf.fdf
│ │ │ │ │ └── tcpdf.p12
│ │ │ │ ├── chapter_demo_1.txt
│ │ │ │ ├── chapter_demo_2.txt
│ │ │ │ ├── table_data_demo.txt
│ │ │ │ └── utf8test.txt
│ │ │ ├── example_001.php
│ │ │ ├── example_002.php
│ │ │ ├── example_003.php
│ │ │ ├── example_004.php
│ │ │ ├── example_005.php
│ │ │ ├── example_006.php
│ │ │ ├── example_007.php
│ │ │ ├── example_008.php
│ │ │ ├── example_009.php
│ │ │ ├── example_010.php
│ │ │ ├── example_011.php
│ │ │ ├── example_012.pdf
│ │ │ ├── example_012.php
│ │ │ ├── example_013.php
│ │ │ ├── example_014.php
│ │ │ ├── example_015.php
│ │ │ ├── example_016.php
│ │ │ ├── example_017.php
│ │ │ ├── example_018.php
│ │ │ ├── example_019.php
│ │ │ ├── example_020.php
│ │ │ ├── example_021.php
│ │ │ ├── example_022.php
│ │ │ ├── example_023.php
│ │ │ ├── example_024.php
│ │ │ ├── example_025.php
│ │ │ ├── example_026.php
│ │ │ ├── example_027.php
│ │ │ ├── example_028.php
│ │ │ ├── example_029.php
│ │ │ ├── example_030.php
│ │ │ ├── example_031.php
│ │ │ ├── example_032.php
│ │ │ ├── example_033.php
│ │ │ ├── example_034.php
│ │ │ ├── example_035.php
│ │ │ ├── example_036.php
│ │ │ ├── example_037.php
│ │ │ ├── example_038.php
│ │ │ ├── example_039.php
│ │ │ ├── example_040.php
│ │ │ ├── example_041.php
│ │ │ ├── example_042.php
│ │ │ ├── example_043.php
│ │ │ ├── example_044.php
│ │ │ ├── example_045.php
│ │ │ ├── example_046.php
│ │ │ ├── example_047.php
│ │ │ ├── example_048.php
│ │ │ ├── example_049.php
│ │ │ ├── example_050.php
│ │ │ ├── example_051.php
│ │ │ ├── example_052.php
│ │ │ ├── example_053.php
│ │ │ ├── example_054.php
│ │ │ ├── example_055.php
│ │ │ ├── example_056.php
│ │ │ ├── example_057.php
│ │ │ ├── example_058.php
│ │ │ ├── example_059.php
│ │ │ ├── example_060.php
│ │ │ ├── example_061.php
│ │ │ ├── example_062.php
│ │ │ ├── example_063.php
│ │ │ ├── example_064.php
│ │ │ ├── example_065.php
│ │ │ ├── images
│ │ │ │ ├── _blank.png
│ │ │ │ ├── alpha.png
│ │ │ │ ├── image_demo.jpg
│ │ │ │ ├── image_with_alpha.png
│ │ │ │ ├── img.png
│ │ │ │ ├── logo_example.gif
│ │ │ │ ├── logo_example.jpg
│ │ │ │ ├── logo_example.png
│ │ │ │ ├── tcpdf_box.ai
│ │ │ │ ├── tcpdf_box.svg
│ │ │ │ ├── tcpdf_cell.png
│ │ │ │ ├── tcpdf_logo.jpg
│ │ │ │ ├── tcpdf_signature.png
│ │ │ │ ├── testsvg.svg
│ │ │ │ └── tux.svg
│ │ │ ├── index.php
│ │ │ ├── lang
│ │ │ │ ├── afr.php
│ │ │ │ ├── ara.php
│ │ │ │ ├── aze.php
│ │ │ │ ├── bel.php
│ │ │ │ ├── bra.php
│ │ │ │ ├── bul.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
│ │ │ │ ├── jpn.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
│ │ │ │ ├── ukr.php
│ │ │ │ ├── urd.php
│ │ │ │ ├── yid.php
│ │ │ │ └── zho.php
│ │ │ └── tcpdf_include.php
│ │ ├── fonts
│ │ │ ├── ae_fonts_2.0
│ │ │ │ ├── COPYING
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── ChangeLog.9745.BAK
│ │ │ │ └── README
│ │ │ ├── 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
│ │ │ ├── dejavu-fonts-ttf-2.34
│ │ │ │ ├── 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
│ │ │ ├── freefont-20120503
│ │ │ │ ├── AUTHORS
│ │ │ │ ├── COPYING
│ │ │ │ ├── CREDITS
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── ChangeLog.10070.BAK
│ │ │ │ ├── INSTALL
│ │ │ │ ├── README
│ │ │ │ ├── TROUBLESHOOTING
│ │ │ │ └── USAGE
│ │ │ ├── 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
│ │ ├── include
│ │ │ ├── barcodes
│ │ │ │ ├── datamatrix.php
│ │ │ │ ├── pdf417.php
│ │ │ │ └── qrcode.php
│ │ │ ├── sRGB.icc
│ │ │ ├── tcpdf_colors.php
│ │ │ ├── tcpdf_filters.php
│ │ │ ├── tcpdf_font_data.php
│ │ │ ├── tcpdf_fonts.php
│ │ │ ├── tcpdf_images.php
│ │ │ └── tcpdf_static.php
│ │ ├── tcpdf.php
│ │ ├── tcpdf_autoconfig.php
│ │ ├── tcpdf_barcodes_1d.php
│ │ ├── tcpdf_barcodes_2d.php
│ │ ├── tcpdf_import.php
│ │ ├── tcpdf_parser.php
│ │ └── tools
│ │ │ ├── .htaccess
│ │ │ ├── convert_fonts_examples.txt
│ │ │ └── tcpdf_addfont.php
│ ├── index.html
│ └── pdf.php
├── logs
│ └── index.html
├── models
│ ├── export.php
│ ├── get_model.php
│ ├── index.html
│ ├── insert_model.php
│ ├── login_model.php
│ └── student_model.php
├── third_party
│ ├── PHPExcel-1.8
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ ├── Classes
│ │ │ ├── PHPExcel.php
│ │ │ └── PHPExcel
│ │ │ │ ├── Autoloader.php
│ │ │ │ ├── CachedObjectStorage
│ │ │ │ ├── APC.php
│ │ │ │ ├── CacheBase.php
│ │ │ │ ├── DiscISAM.php
│ │ │ │ ├── ICache.php
│ │ │ │ ├── Igbinary.php
│ │ │ │ ├── Memcache.php
│ │ │ │ ├── Memory.php
│ │ │ │ ├── MemoryGZip.php
│ │ │ │ ├── MemorySerialized.php
│ │ │ │ ├── PHPTemp.php
│ │ │ │ ├── SQLite.php
│ │ │ │ ├── SQLite3.php
│ │ │ │ └── Wincache.php
│ │ │ │ ├── CachedObjectStorageFactory.php
│ │ │ │ ├── CalcEngine
│ │ │ │ ├── CyclicReferenceStack.php
│ │ │ │ └── Logger.php
│ │ │ │ ├── Calculation.php
│ │ │ │ ├── Calculation
│ │ │ │ ├── Database.php
│ │ │ │ ├── DateTime.php
│ │ │ │ ├── Engineering.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── ExceptionHandler.php
│ │ │ │ ├── Financial.php
│ │ │ │ ├── FormulaParser.php
│ │ │ │ ├── FormulaToken.php
│ │ │ │ ├── Function.php
│ │ │ │ ├── Functions.php
│ │ │ │ ├── Logical.php
│ │ │ │ ├── LookupRef.php
│ │ │ │ ├── MathTrig.php
│ │ │ │ ├── Statistical.php
│ │ │ │ ├── TextData.php
│ │ │ │ ├── Token
│ │ │ │ │ └── Stack.php
│ │ │ │ └── functionlist.txt
│ │ │ │ ├── Cell.php
│ │ │ │ ├── Cell
│ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ ├── DataType.php
│ │ │ │ ├── DataValidation.php
│ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ ├── Hyperlink.php
│ │ │ │ └── IValueBinder.php
│ │ │ │ ├── Chart.php
│ │ │ │ ├── Chart
│ │ │ │ ├── Axis.php
│ │ │ │ ├── DataSeries.php
│ │ │ │ ├── DataSeriesValues.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── GridLines.php
│ │ │ │ ├── Layout.php
│ │ │ │ ├── Legend.php
│ │ │ │ ├── PlotArea.php
│ │ │ │ ├── Properties.php
│ │ │ │ ├── Renderer
│ │ │ │ │ ├── PHP Charting Libraries.txt
│ │ │ │ │ └── jpgraph.php
│ │ │ │ └── Title.php
│ │ │ │ ├── Comment.php
│ │ │ │ ├── DocumentProperties.php
│ │ │ │ ├── DocumentSecurity.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── HashTable.php
│ │ │ │ ├── Helper
│ │ │ │ └── HTML.php
│ │ │ │ ├── IComparable.php
│ │ │ │ ├── IOFactory.php
│ │ │ │ ├── NamedRange.php
│ │ │ │ ├── Reader
│ │ │ │ ├── Abstract.php
│ │ │ │ ├── CSV.php
│ │ │ │ ├── DefaultReadFilter.php
│ │ │ │ ├── Excel2003XML.php
│ │ │ │ ├── Excel2007.php
│ │ │ │ ├── Excel2007
│ │ │ │ │ ├── Chart.php
│ │ │ │ │ └── Theme.php
│ │ │ │ ├── Excel5.php
│ │ │ │ ├── Excel5
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Color
│ │ │ │ │ │ ├── BIFF5.php
│ │ │ │ │ │ ├── BIFF8.php
│ │ │ │ │ │ └── BuiltIn.php
│ │ │ │ │ ├── ErrorCode.php
│ │ │ │ │ ├── Escher.php
│ │ │ │ │ ├── MD5.php
│ │ │ │ │ ├── RC4.php
│ │ │ │ │ └── Style
│ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ └── FillPattern.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Gnumeric.php
│ │ │ │ ├── HTML.php
│ │ │ │ ├── IReadFilter.php
│ │ │ │ ├── IReader.php
│ │ │ │ ├── OOCalc.php
│ │ │ │ └── SYLK.php
│ │ │ │ ├── ReferenceHelper.php
│ │ │ │ ├── RichText.php
│ │ │ │ ├── RichText
│ │ │ │ ├── ITextElement.php
│ │ │ │ ├── Run.php
│ │ │ │ └── TextElement.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Shared
│ │ │ │ ├── CodePage.php
│ │ │ │ ├── Date.php
│ │ │ │ ├── Drawing.php
│ │ │ │ ├── Escher.php
│ │ │ │ ├── Escher
│ │ │ │ │ ├── DgContainer.php
│ │ │ │ │ ├── DgContainer
│ │ │ │ │ │ ├── SpgrContainer.php
│ │ │ │ │ │ └── SpgrContainer
│ │ │ │ │ │ │ └── SpContainer.php
│ │ │ │ │ ├── DggContainer.php
│ │ │ │ │ └── DggContainer
│ │ │ │ │ │ ├── BstoreContainer.php
│ │ │ │ │ │ └── BstoreContainer
│ │ │ │ │ │ ├── BSE.php
│ │ │ │ │ │ └── BSE
│ │ │ │ │ │ └── Blip.php
│ │ │ │ ├── Excel5.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Font.php
│ │ │ │ ├── JAMA
│ │ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ │ ├── CholeskyDecomposition.php
│ │ │ │ │ ├── EigenvalueDecomposition.php
│ │ │ │ │ ├── LUDecomposition.php
│ │ │ │ │ ├── Matrix.php
│ │ │ │ │ ├── QRDecomposition.php
│ │ │ │ │ ├── SingularValueDecomposition.php
│ │ │ │ │ └── utils
│ │ │ │ │ │ ├── Error.php
│ │ │ │ │ │ └── Maths.php
│ │ │ │ ├── OLE.php
│ │ │ │ ├── OLE
│ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ ├── PPS.php
│ │ │ │ │ └── PPS
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Root.php
│ │ │ │ ├── OLERead.php
│ │ │ │ ├── PCLZip
│ │ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ │ ├── pclzip.lib.php
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── PasswordHasher.php
│ │ │ │ ├── String.php
│ │ │ │ ├── TimeZone.php
│ │ │ │ ├── XMLWriter.php
│ │ │ │ ├── ZipArchive.php
│ │ │ │ ├── ZipStreamWrapper.php
│ │ │ │ └── trend
│ │ │ │ │ ├── bestFitClass.php
│ │ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ │ ├── linearBestFitClass.php
│ │ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ │ ├── powerBestFitClass.php
│ │ │ │ │ └── trendClass.php
│ │ │ │ ├── Style.php
│ │ │ │ ├── Style
│ │ │ │ ├── Alignment.php
│ │ │ │ ├── Border.php
│ │ │ │ ├── Borders.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Conditional.php
│ │ │ │ ├── Fill.php
│ │ │ │ ├── Font.php
│ │ │ │ ├── NumberFormat.php
│ │ │ │ ├── Protection.php
│ │ │ │ └── Supervisor.php
│ │ │ │ ├── Worksheet.php
│ │ │ │ ├── Worksheet
│ │ │ │ ├── AutoFilter.php
│ │ │ │ ├── AutoFilter
│ │ │ │ │ ├── Column.php
│ │ │ │ │ └── Column
│ │ │ │ │ │ └── Rule.php
│ │ │ │ ├── BaseDrawing.php
│ │ │ │ ├── CellIterator.php
│ │ │ │ ├── Column.php
│ │ │ │ ├── ColumnCellIterator.php
│ │ │ │ ├── ColumnDimension.php
│ │ │ │ ├── ColumnIterator.php
│ │ │ │ ├── Dimension.php
│ │ │ │ ├── Drawing.php
│ │ │ │ ├── Drawing
│ │ │ │ │ └── Shadow.php
│ │ │ │ ├── HeaderFooter.php
│ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ ├── MemoryDrawing.php
│ │ │ │ ├── PageMargins.php
│ │ │ │ ├── PageSetup.php
│ │ │ │ ├── Protection.php
│ │ │ │ ├── Row.php
│ │ │ │ ├── RowCellIterator.php
│ │ │ │ ├── RowDimension.php
│ │ │ │ ├── RowIterator.php
│ │ │ │ └── SheetView.php
│ │ │ │ ├── WorksheetIterator.php
│ │ │ │ ├── Writer
│ │ │ │ ├── Abstract.php
│ │ │ │ ├── CSV.php
│ │ │ │ ├── Excel2007.php
│ │ │ │ ├── Excel2007
│ │ │ │ │ ├── Chart.php
│ │ │ │ │ ├── Comments.php
│ │ │ │ │ ├── ContentTypes.php
│ │ │ │ │ ├── DocProps.php
│ │ │ │ │ ├── Drawing.php
│ │ │ │ │ ├── Rels.php
│ │ │ │ │ ├── RelsRibbon.php
│ │ │ │ │ ├── RelsVBA.php
│ │ │ │ │ ├── StringTable.php
│ │ │ │ │ ├── Style.php
│ │ │ │ │ ├── Theme.php
│ │ │ │ │ ├── Workbook.php
│ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ └── WriterPart.php
│ │ │ │ ├── Excel5.php
│ │ │ │ ├── Excel5
│ │ │ │ │ ├── BIFFwriter.php
│ │ │ │ │ ├── Escher.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Workbook.php
│ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ └── Xf.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── HTML.php
│ │ │ │ ├── IWriter.php
│ │ │ │ ├── OpenDocument.php
│ │ │ │ ├── OpenDocument
│ │ │ │ │ ├── Cell
│ │ │ │ │ │ └── Comment.php
│ │ │ │ │ ├── Content.php
│ │ │ │ │ ├── Meta.php
│ │ │ │ │ ├── MetaInf.php
│ │ │ │ │ ├── Mimetype.php
│ │ │ │ │ ├── Settings.php
│ │ │ │ │ ├── Styles.php
│ │ │ │ │ ├── Thumbnails.php
│ │ │ │ │ └── WriterPart.php
│ │ │ │ ├── PDF.php
│ │ │ │ └── PDF
│ │ │ │ │ ├── Core.php
│ │ │ │ │ ├── DomPDF.php
│ │ │ │ │ ├── mPDF.php
│ │ │ │ │ └── tcPDF.php
│ │ │ │ └── locale
│ │ │ │ ├── bg
│ │ │ │ └── config
│ │ │ │ ├── cs
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── da
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── de
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── en
│ │ │ │ └── uk
│ │ │ │ │ └── config
│ │ │ │ ├── es
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── fi
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── fr
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── hu
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── it
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── nl
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── no
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── pl
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── pt
│ │ │ │ ├── br
│ │ │ │ │ ├── config
│ │ │ │ │ └── functions
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── ru
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ ├── sv
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ │ │ └── tr
│ │ │ │ ├── config
│ │ │ │ └── functions
│ │ ├── Documentation
│ │ │ ├── Examples
│ │ │ │ ├── Calculations
│ │ │ │ │ ├── Database
│ │ │ │ │ │ ├── DAVERAGE.php
│ │ │ │ │ │ ├── DCOUNT.php
│ │ │ │ │ │ ├── DGET.php
│ │ │ │ │ │ ├── DMAX.php
│ │ │ │ │ │ ├── DMIN.php
│ │ │ │ │ │ ├── DPRODUCT.php
│ │ │ │ │ │ ├── DSTDEV.php
│ │ │ │ │ │ ├── DSTDEVP.php
│ │ │ │ │ │ ├── DVAR.php
│ │ │ │ │ │ └── DVARP.php
│ │ │ │ │ ├── DateTime
│ │ │ │ │ │ ├── DATE.php
│ │ │ │ │ │ ├── DATEVALUE.php
│ │ │ │ │ │ ├── TIME.php
│ │ │ │ │ │ └── TIMEVALUE.php
│ │ │ │ │ └── index.php
│ │ │ │ ├── Reader
│ │ │ │ │ ├── exampleReader01.php
│ │ │ │ │ ├── exampleReader02.php
│ │ │ │ │ ├── exampleReader03.php
│ │ │ │ │ ├── exampleReader04.php
│ │ │ │ │ ├── exampleReader05.php
│ │ │ │ │ ├── exampleReader06.php
│ │ │ │ │ ├── exampleReader07.php
│ │ │ │ │ ├── exampleReader08.php
│ │ │ │ │ ├── exampleReader09.php
│ │ │ │ │ ├── exampleReader10.php
│ │ │ │ │ ├── exampleReader11.php
│ │ │ │ │ ├── exampleReader12.php
│ │ │ │ │ ├── exampleReader13.php
│ │ │ │ │ ├── exampleReader14.php
│ │ │ │ │ ├── exampleReader15.php
│ │ │ │ │ ├── exampleReader16.php
│ │ │ │ │ ├── exampleReader17.php
│ │ │ │ │ ├── exampleReader18.php
│ │ │ │ │ ├── exampleReader19.php
│ │ │ │ │ └── sampleData
│ │ │ │ │ │ ├── example1.csv
│ │ │ │ │ │ ├── example1.tsv
│ │ │ │ │ │ ├── example1.xls
│ │ │ │ │ │ ├── example2.csv
│ │ │ │ │ │ └── example2.xls
│ │ │ │ ├── Reading WorkBook Data
│ │ │ │ │ ├── exampleWorkBookReader01.php
│ │ │ │ │ ├── exampleWorkBookReader02.php
│ │ │ │ │ ├── exampleWorkBookReader03.php
│ │ │ │ │ ├── exampleWorkBookReader04.php
│ │ │ │ │ └── sampleData
│ │ │ │ │ │ ├── example1.xls
│ │ │ │ │ │ ├── example1.xlsx
│ │ │ │ │ │ └── example2.xls
│ │ │ │ └── index.php
│ │ │ ├── FunctionListByCategory.txt
│ │ │ ├── FunctionListByName.txt
│ │ │ ├── Functionality Cross-Reference.xls
│ │ │ ├── PHPExcel AutoFilter Reference developer documentation.doc
│ │ │ ├── PHPExcel Function Reference developer documentation.doc
│ │ │ ├── PHPExcel User Documentation - Reading Spreadsheet Files.doc
│ │ │ ├── PHPExcel developer documentation.doc
│ │ │ ├── assets
│ │ │ │ └── ClassDiagrams
│ │ │ │ │ ├── Architecture.cd
│ │ │ │ │ ├── Architecture.png
│ │ │ │ │ ├── ClassDiagrams.csproj
│ │ │ │ │ ├── ClassDiagrams.csproj.user
│ │ │ │ │ ├── ClassDiagrams.sln
│ │ │ │ │ ├── Classes
│ │ │ │ │ ├── IReader.cs
│ │ │ │ │ ├── IWriter.cs
│ │ │ │ │ ├── PHPExcel.cs
│ │ │ │ │ ├── PHPExcel_IOFactory.cs
│ │ │ │ │ ├── PHPExcel_Reader_Excel2007.cs
│ │ │ │ │ ├── PHPExcel_Reader_Excel5.cs
│ │ │ │ │ ├── PHPExcel_Reader_Serialized.cs
│ │ │ │ │ ├── PHPExcel_Writer_Excel2007.cs
│ │ │ │ │ ├── PHPExcel_Writer_Serialized.cs
│ │ │ │ │ └── Worksheet.cs
│ │ │ │ │ ├── Exports
│ │ │ │ │ ├── Architecture.png
│ │ │ │ │ └── ReaderWriter.png
│ │ │ │ │ ├── ReaderWriter.cd
│ │ │ │ │ └── ReaderWriter.png
│ │ │ └── markdown
│ │ │ │ ├── CalculationEngine
│ │ │ │ └── FunctionReference
│ │ │ │ │ ├── 01-Introduction.md
│ │ │ │ │ ├── 02-01-Date-and-Time-Handling.md
│ │ │ │ │ ├── 02-General-Introduction.md
│ │ │ │ │ ├── 03-01-Cube-Functions.md
│ │ │ │ │ ├── 03-02-Database-Functions.md
│ │ │ │ │ └── 03-03-Date-and-Time-Functions.md
│ │ │ │ ├── Features
│ │ │ │ └── Autofilters
│ │ │ │ │ ├── 01-Autofilters.md
│ │ │ │ │ ├── 02-Setting-an-Autofilter.md
│ │ │ │ │ ├── 03-Autofilter-Expressions.md
│ │ │ │ │ ├── 04-01-Autofilter-Expressions-Simple.md
│ │ │ │ │ ├── 04-02-Autofilter-Expressions-Dategroup.md
│ │ │ │ │ ├── 04-03-Autofilter-Expressions-Custom.md
│ │ │ │ │ ├── 04-04-Autofilter-Expressions-Dynamic.md
│ │ │ │ │ ├── 04-05-Autofilter-Expressions-Topten.md
│ │ │ │ │ ├── 05-Executing-Autofilters.md
│ │ │ │ │ ├── 06-Autofilter-Sorting.md
│ │ │ │ │ └── images
│ │ │ │ │ ├── 01-01-autofilter.png
│ │ │ │ │ ├── 01-02-autofilter.png
│ │ │ │ │ ├── 01-03-filter-icon-1.png
│ │ │ │ │ ├── 01-03-filter-icon-2.png
│ │ │ │ │ ├── 01-04-autofilter.png
│ │ │ │ │ ├── 04-01-simple-autofilter.png
│ │ │ │ │ ├── 04-02-dategroup-autofilter.png
│ │ │ │ │ ├── 04-03-custom-autofilter-1.png
│ │ │ │ │ ├── 04-03-custom-autofilter-2.png
│ │ │ │ │ ├── 04-04-dynamic-autofilter.png
│ │ │ │ │ ├── 04-05-topten-autofilter-1.png
│ │ │ │ │ └── 04-05-topten-autofilter-2.png
│ │ │ │ ├── Functions
│ │ │ │ ├── FunctionListByCategory.md
│ │ │ │ └── FunctionListByName.md
│ │ │ │ ├── Overview
│ │ │ │ ├── 01-Getting-Started.md
│ │ │ │ ├── 02-Architecture.md
│ │ │ │ ├── 03-Creating-a-Spreadsheet.md
│ │ │ │ ├── 04-Configuration-Settings.md
│ │ │ │ ├── 05-Deleting-a-Workbook.md
│ │ │ │ ├── 06-Worksheets.md
│ │ │ │ ├── 07-Accessing-Cells.md
│ │ │ │ ├── 08-Recipes.md
│ │ │ │ ├── 09-Calculation-Engine.md
│ │ │ │ ├── 10-Reading-and-Writing.md
│ │ │ │ ├── 11-Appendices.md
│ │ │ │ └── images
│ │ │ │ │ ├── 01-schematic.png
│ │ │ │ │ ├── 02-readers-writers.png
│ │ │ │ │ ├── 07-simple-example-1.png
│ │ │ │ │ ├── 07-simple-example-2.png
│ │ │ │ │ ├── 07-simple-example-3.png
│ │ │ │ │ ├── 07-simple-example-4.png
│ │ │ │ │ ├── 08-cell-comment.png
│ │ │ │ │ ├── 08-column-width.png
│ │ │ │ │ ├── 08-page-setup-margins.png
│ │ │ │ │ ├── 08-page-setup-scaling-options.png
│ │ │ │ │ ├── 08-styling-border-options.png
│ │ │ │ │ ├── 09-command-line-calculation.png
│ │ │ │ │ ├── 09-formula-in-cell-1.png
│ │ │ │ │ └── 09-formula-in-cell-2.png
│ │ │ │ └── ReadingSpreadsheetFiles
│ │ │ │ ├── 01-File-Formats.md
│ │ │ │ ├── 02-Security.md
│ │ │ │ ├── 03-Loading-a-Spreadsheet.md
│ │ │ │ ├── 04-Loading-with-a-Reader.md
│ │ │ │ ├── 05-Reader-Options.md
│ │ │ │ ├── 06-Error-Handling.md
│ │ │ │ └── 07-Helper-Methods.md
│ │ ├── Examples
│ │ │ ├── .gitignore
│ │ │ ├── 01pharSimple.php
│ │ │ ├── 01simple-download-ods.php
│ │ │ ├── 01simple-download-pdf.php
│ │ │ ├── 01simple-download-xls.php
│ │ │ ├── 01simple-download-xlsx.php
│ │ │ ├── 01simple.php
│ │ │ ├── 01simplePCLZip.php
│ │ │ ├── 02types-xls.php
│ │ │ ├── 02types.php
│ │ │ ├── 03formulas.php
│ │ │ ├── 04printing.php
│ │ │ ├── 05featuredemo.inc.php
│ │ │ ├── 05featuredemo.php
│ │ │ ├── 06largescale-with-cellcaching-sqlite.php
│ │ │ ├── 06largescale-with-cellcaching-sqlite3.php
│ │ │ ├── 06largescale-with-cellcaching.php
│ │ │ ├── 06largescale-xls.php
│ │ │ ├── 06largescale.php
│ │ │ ├── 07reader.php
│ │ │ ├── 07readerPCLZip.php
│ │ │ ├── 08conditionalformatting.php
│ │ │ ├── 08conditionalformatting2.php
│ │ │ ├── 09pagebreaks.php
│ │ │ ├── 10autofilter-selection-1.php
│ │ │ ├── 10autofilter-selection-2.php
│ │ │ ├── 10autofilter-selection-display.php
│ │ │ ├── 10autofilter.php
│ │ │ ├── 11documentsecurity-xls.php
│ │ │ ├── 11documentsecurity.php
│ │ │ ├── 12cellProtection.php
│ │ │ ├── 13calculation.php
│ │ │ ├── 13calculationCyclicFormulae.php
│ │ │ ├── 14excel5.php
│ │ │ ├── 15datavalidation-xls.php
│ │ │ ├── 15datavalidation.php
│ │ │ ├── 16csv.php
│ │ │ ├── 17html.php
│ │ │ ├── 18extendedcalculation.php
│ │ │ ├── 19namedrange.php
│ │ │ ├── 20readexcel5.php
│ │ │ ├── 21pdf.php
│ │ │ ├── 22heavilyformatted.php
│ │ │ ├── 23sharedstyles.php
│ │ │ ├── 24readfilter.php
│ │ │ ├── 25inmemoryimage.php
│ │ │ ├── 26utf8.php
│ │ │ ├── 27imagesexcel5.php
│ │ │ ├── 28iterator.php
│ │ │ ├── 29advancedvaluebinder.php
│ │ │ ├── 30template.php
│ │ │ ├── 31docproperties_write-xls.php
│ │ │ ├── 31docproperties_write.php
│ │ │ ├── 32chartreadwrite.php
│ │ │ ├── 33chartcreate-area.php
│ │ │ ├── 33chartcreate-bar-stacked.php
│ │ │ ├── 33chartcreate-bar.php
│ │ │ ├── 33chartcreate-column-2.php
│ │ │ ├── 33chartcreate-column.php
│ │ │ ├── 33chartcreate-composite.php
│ │ │ ├── 33chartcreate-line.php
│ │ │ ├── 33chartcreate-multiple-charts.php
│ │ │ ├── 33chartcreate-pie.php
│ │ │ ├── 33chartcreate-radar.php
│ │ │ ├── 33chartcreate-scatter.php
│ │ │ ├── 33chartcreate-stock.php
│ │ │ ├── 34chartupdate.php
│ │ │ ├── 35chartrender.php
│ │ │ ├── 36chartreadwriteHTML.php
│ │ │ ├── 36chartreadwritePDF.php
│ │ │ ├── 37page_layout_view.php
│ │ │ ├── 38cloneWorksheet.php
│ │ │ ├── 39dropdown.php
│ │ │ ├── 40duplicateStyle.php
│ │ │ ├── 41password.php
│ │ │ ├── 42richText.php
│ │ │ ├── 43mergeWorkbooks.php
│ │ │ ├── 44worksheetInfo.php
│ │ │ ├── Excel2003XMLReader.php
│ │ │ ├── Excel2003XMLTest.xml
│ │ │ ├── GnumericReader.php
│ │ │ ├── GnumericTest.gnumeric
│ │ │ ├── OOCalcReader.php
│ │ │ ├── OOCalcReaderPCLZip.php
│ │ │ ├── OOCalcTest.ods
│ │ │ ├── Quadratic.php
│ │ │ ├── Quadratic2.php
│ │ │ ├── SylkReader.php
│ │ │ ├── SylkTest.slk
│ │ │ ├── XMLReader.php
│ │ │ ├── XMLTest.xml
│ │ │ ├── data
│ │ │ │ └── continents
│ │ │ │ │ ├── Africa.txt
│ │ │ │ │ ├── Asia.txt
│ │ │ │ │ ├── Europe.txt
│ │ │ │ │ ├── North America.txt
│ │ │ │ │ ├── Oceania.txt
│ │ │ │ │ └── South America.txt
│ │ │ ├── images
│ │ │ │ ├── paid.png
│ │ │ │ └── phpexcel_logo.gif
│ │ │ └── runall.php
│ │ └── composer.json
│ └── index.html
└── views
│ ├── errors
│ ├── cli
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ ├── html
│ │ ├── error_404.php
│ │ ├── error_db.php
│ │ ├── error_exception.php
│ │ ├── error_general.php
│ │ ├── error_php.php
│ │ └── index.html
│ └── index.html
│ ├── index.html
│ ├── private
│ ├── accounts
│ │ ├── account_group.php
│ │ ├── accounts_book
│ │ │ ├── continous_ledger.php
│ │ │ ├── contra_register.php
│ │ │ ├── credit_note_register.php
│ │ │ ├── debit_note_register.php
│ │ │ ├── depriciation_chart.php
│ │ │ ├── group_ledger.php
│ │ │ ├── handy_cash_book.php
│ │ │ ├── journal_register.php
│ │ │ ├── payment_register.php
│ │ │ ├── quick_payment_register.php
│ │ │ ├── quick_receipt_register.php
│ │ │ ├── receipt_register.php
│ │ │ └── user_shift_report.php
│ │ ├── default.php
│ │ ├── delete.php
│ │ ├── final_accounts
│ │ │ ├── balance_sheet.php
│ │ │ ├── outstanding_balance.php
│ │ │ ├── profit_loss.php
│ │ │ ├── trading_account.php
│ │ │ └── trial_balance.php
│ │ ├── financial_accounting
│ │ │ ├── bank_entry.php
│ │ │ ├── cash_bank_book.php
│ │ │ ├── contra.php
│ │ │ ├── credit_note.php
│ │ │ ├── day_book.php
│ │ │ ├── day_book_cum_cash_book.php
│ │ │ ├── debit_note.php
│ │ │ ├── journal.php
│ │ │ ├── ledger.php
│ │ │ ├── log_book.php
│ │ │ ├── payments.php
│ │ │ ├── quick_payment.php
│ │ │ ├── quick_receipt.php
│ │ │ └── receipt.php
│ │ ├── footer.php
│ │ ├── genral.php
│ │ ├── header.php
│ │ ├── import.php
│ │ ├── intereset_calculation
│ │ │ ├── bill_wise_interest_calculation.php
│ │ │ ├── cumulative_interest.php
│ │ │ ├── interest_on_balance.php
│ │ │ └── simple_intereset_calculation.php
│ │ ├── labels.php
│ │ ├── new_account.php
│ │ ├── open_balance_editor.php
│ │ └── send_sms.php
│ ├── admin
│ │ ├── admin_dash.php
│ │ ├── bill_sundry.php
│ │ ├── class_report.php
│ │ ├── cw_strength.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── masters
│ │ │ ├── caste.php
│ │ │ ├── category.php
│ │ │ ├── class.php
│ │ │ ├── family.php
│ │ │ ├── house.php
│ │ │ └── section.php
│ │ ├── organisation_info.php
│ │ ├── shift.php
│ │ ├── std_narration.php
│ │ └── user
│ │ │ ├── create_user.php
│ │ │ └── user_profile.php
│ ├── admissions
│ │ ├── add_field.php
│ │ ├── address.php
│ │ ├── admission_form_view.php
│ │ ├── admission_view.php
│ │ ├── attach.php
│ │ ├── balance.php
│ │ ├── create_admission_view.php
│ │ ├── create_list_view.php
│ │ ├── edit
│ │ │ └── create_admission_view.php
│ │ ├── export_view.php
│ │ ├── footer_admission.php
│ │ ├── header_admission.php
│ │ ├── id_card.php
│ │ ├── import_view.php
│ │ ├── index.html
│ │ ├── misc.php
│ │ ├── parents.php
│ │ ├── send_sms.php
│ │ ├── students_profile_view.php
│ │ └── success_adm.php
│ ├── attendance
│ │ ├── analytics
│ │ │ └── dashboard.php
│ │ ├── attend_view.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── new
│ │ │ └── attend_new.php
│ │ ├── print.php
│ │ └── summary
│ │ │ └── summary.php
│ ├── calendar
│ │ ├── footer.php
│ │ └── header.php
│ ├── certificates
│ │ ├── cert_view.php
│ │ ├── enterance_test
│ │ │ ├── dashboard.php
│ │ │ └── header.php
│ │ ├── entrance_test.php
│ │ ├── et_header.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── sc_header.php
│ │ ├── school_leaving
│ │ │ ├── dashboard.php
│ │ │ ├── delete_sl.php
│ │ │ ├── footer.php
│ │ │ ├── slc_header.php
│ │ │ └── slc_new.php
│ │ ├── student_cert.php
│ │ ├── student_certificate
│ │ │ ├── dashboard.php
│ │ │ ├── footer.php
│ │ │ └── header.php
│ │ ├── tcl_header.php
│ │ ├── tcp_header.php
│ │ ├── teacher_cert_l.php
│ │ ├── teacher_cert_p.php
│ │ ├── teacher_certificate_l
│ │ │ ├── dashboard.php
│ │ │ └── header.php
│ │ └── teacher_certificate_p
│ │ │ ├── dashboard.php
│ │ │ └── header.php
│ ├── dashboard
│ │ ├── dashboard_footer.php
│ │ ├── dashboard_header.php
│ │ ├── dashboard_view.php
│ │ ├── documentation.php
│ │ ├── prefrences.php
│ │ └── support.php
│ ├── discuss
│ │ ├── footer.php
│ │ └── header.php
│ ├── dues_list
│ │ ├── dues_list.php
│ │ ├── footer.php
│ │ └── header.php
│ ├── enquiry
│ │ ├── enquiry.php
│ │ ├── export.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── new.php
│ │ ├── parents.php
│ │ ├── print.php
│ │ ├── search.php
│ │ ├── sms.php
│ │ └── sort.php
│ ├── exams
│ │ ├── assessment_master.php
│ │ ├── dashboard.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── subject_master.php
│ │ └── term_master.php
│ ├── fees
│ │ ├── fees_card.php
│ │ ├── fees_conc_settings.php
│ │ ├── fees_dues_list
│ │ │ ├── family_wise_dues_list.php
│ │ │ ├── fees_dues_list_class_wise.php
│ │ │ ├── fees_dues_list_detailed.php
│ │ │ ├── fees_estimation_list.php
│ │ │ └── fees_status_report.php
│ │ ├── fees_head.php
│ │ ├── fees_head_group.php
│ │ ├── fees_plan.php
│ │ ├── fees_plan_category.php
│ │ ├── fees_receipt.php
│ │ ├── fees_reports
│ │ │ ├── balance_fees_report.php
│ │ │ ├── concc_register.php
│ │ │ ├── defaulter_list.php
│ │ │ ├── fees_category_concc_wise.php
│ │ │ ├── fees_concession_settings.php
│ │ │ ├── fees_day_book.php
│ │ │ ├── fees_group_ledger.php
│ │ │ ├── fees_head_summary.php
│ │ │ ├── fees_head_wise_concc_report.php
│ │ │ ├── fees_monthly_summary.php
│ │ │ ├── fees_receipt_register.php
│ │ │ ├── fees_structure.php
│ │ │ ├── fees_summary_date_wise.php
│ │ │ ├── head_wise_collection.php
│ │ │ ├── receipt_book.php
│ │ │ └── yearly_fees_receivable_report.php
│ │ ├── fees_view.php
│ │ ├── footer.php
│ │ └── header.php
│ ├── hr
│ │ ├── footer.php
│ │ ├── header.php
│ │ └── hr_view.php
│ ├── library
│ │ ├── book_issue_register.php
│ │ ├── book_ledger.php
│ │ ├── book_receive_register.php
│ │ ├── dashboard.php
│ │ ├── export.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── import.php
│ │ ├── issue_book.php
│ │ ├── new_book_entry.php
│ │ ├── pending_books.php
│ │ ├── print.php
│ │ ├── receive_book.php
│ │ └── send_sms.php
│ ├── lms
│ │ ├── footer.php
│ │ └── header.php
│ ├── misc
│ │ ├── demand_bill_print.php
│ │ ├── document_issue.php
│ │ ├── footer.php
│ │ ├── gatepass.php
│ │ ├── header.php
│ │ ├── material_issue.php
│ │ ├── misc
│ │ │ ├── document_template.php
│ │ │ ├── items.php
│ │ │ └── set.php
│ │ └── stock_purchase.php
│ ├── quiz
│ │ ├── footer.php
│ │ └── header.php
│ ├── summary
│ │ ├── fees_summary.php
│ │ ├── footer.php
│ │ └── header.php
│ ├── time_table
│ │ ├── assign_period.php
│ │ ├── class_wise_time_table.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── subject_master.php
│ │ ├── teacher_wise_time_table.php
│ │ ├── teachers_period.php
│ │ └── teachers_subject.php
│ └── transport
│ │ ├── dashboard.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── route.php
│ │ ├── route_plan.php
│ │ └── settings.php
│ ├── public
│ ├── about_us.php
│ ├── contact_us.php
│ ├── content_view.php
│ ├── feedback.php
│ ├── footer_view.php
│ ├── header_view.php
│ ├── help.php
│ ├── incorrect_info.php
│ ├── login_success.php
│ ├── owner_view.php
│ ├── query.php
│ ├── register.php
│ └── suggestions.php
│ ├── upload_form.php
│ └── upload_success.php
├── composer.json
├── index.php
├── public
└── assets
│ ├── css
│ ├── font-awesome.min.css
│ ├── google_fonts.css
│ ├── redable.css
│ └── styles.css
│ ├── img
│ ├── accounts.png
│ ├── admin.png
│ ├── admission.png
│ ├── attend.png
│ ├── bright.png
│ ├── cal.png
│ ├── cert.png
│ ├── certificate.png
│ ├── cubes.png
│ ├── dash.png
│ ├── discuss.png
│ ├── doodles.png
│ ├── dues.png
│ ├── exams.png
│ ├── fees.png
│ ├── hr.png
│ ├── library.png
│ ├── lms.png
│ ├── misc.png
│ ├── quiz.png
│ ├── science.png
│ ├── summary.png
│ ├── tile.png
│ ├── transport.png
│ └── tt.png
│ └── js
│ ├── bootstrap.js
│ ├── google_charts.js
│ └── jquery.js
├── readme.md
├── school_erp.sql
├── system
├── .htaccess
├── core
│ ├── Benchmark.php
│ ├── CodeIgniter.php
│ ├── Common.php
│ ├── Config.php
│ ├── Controller.php
│ ├── Exceptions.php
│ ├── Hooks.php
│ ├── Input.php
│ ├── Lang.php
│ ├── Loader.php
│ ├── Log.php
│ ├── Model.php
│ ├── Output.php
│ ├── Router.php
│ ├── Security.php
│ ├── URI.php
│ ├── Utf8.php
│ ├── compat
│ │ ├── hash.php
│ │ ├── index.html
│ │ ├── mbstring.php
│ │ ├── password.php
│ │ └── standard.php
│ └── index.html
├── database
│ ├── DB.php
│ ├── DB_cache.php
│ ├── DB_driver.php
│ ├── DB_forge.php
│ ├── DB_query_builder.php
│ ├── DB_result.php
│ ├── DB_utility.php
│ ├── drivers
│ │ ├── cubrid
│ │ │ ├── cubrid_driver.php
│ │ │ ├── cubrid_forge.php
│ │ │ ├── cubrid_result.php
│ │ │ ├── cubrid_utility.php
│ │ │ └── index.html
│ │ ├── ibase
│ │ │ ├── ibase_driver.php
│ │ │ ├── ibase_forge.php
│ │ │ ├── ibase_result.php
│ │ │ ├── ibase_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
│ │ │ └── subdrivers
│ │ │ │ ├── index.html
│ │ │ │ ├── pdo_4d_driver.php
│ │ │ │ ├── pdo_4d_forge.php
│ │ │ │ ├── pdo_cubrid_driver.php
│ │ │ │ ├── pdo_cubrid_forge.php
│ │ │ │ ├── pdo_dblib_driver.php
│ │ │ │ ├── pdo_dblib_forge.php
│ │ │ │ ├── pdo_firebird_driver.php
│ │ │ │ ├── pdo_firebird_forge.php
│ │ │ │ ├── pdo_ibm_driver.php
│ │ │ │ ├── pdo_ibm_forge.php
│ │ │ │ ├── pdo_informix_driver.php
│ │ │ │ ├── pdo_informix_forge.php
│ │ │ │ ├── pdo_mysql_driver.php
│ │ │ │ ├── pdo_mysql_forge.php
│ │ │ │ ├── pdo_oci_driver.php
│ │ │ │ ├── pdo_oci_forge.php
│ │ │ │ ├── pdo_odbc_driver.php
│ │ │ │ ├── pdo_odbc_forge.php
│ │ │ │ ├── pdo_pgsql_driver.php
│ │ │ │ ├── pdo_pgsql_forge.php
│ │ │ │ ├── pdo_sqlite_driver.php
│ │ │ │ ├── pdo_sqlite_forge.php
│ │ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ │ └── pdo_sqlsrv_forge.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
│ │ ├── sqlite3
│ │ │ ├── index.html
│ │ │ ├── sqlite3_driver.php
│ │ │ ├── sqlite3_forge.php
│ │ │ ├── sqlite3_result.php
│ │ │ └── sqlite3_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
│ │ ├── pagination_lang.php
│ │ ├── profiler_lang.php
│ │ ├── unit_test_lang.php
│ │ └── upload_lang.php
│ └── index.html
└── libraries
│ ├── Cache
│ ├── Cache.php
│ ├── drivers
│ │ ├── Cache_apc.php
│ │ ├── Cache_dummy.php
│ │ ├── Cache_file.php
│ │ ├── Cache_memcached.php
│ │ ├── Cache_redis.php
│ │ ├── Cache_wincache.php
│ │ └── index.html
│ └── index.html
│ ├── Calendar.php
│ ├── Cart.php
│ ├── Driver.php
│ ├── Email.php
│ ├── Encrypt.php
│ ├── Encryption.php
│ ├── Form_validation.php
│ ├── Ftp.php
│ ├── Image_lib.php
│ ├── Javascript.php
│ ├── Javascript
│ ├── Jquery.php
│ └── index.html
│ ├── Migration.php
│ ├── Pagination.php
│ ├── Parser.php
│ ├── Profiler.php
│ ├── Session
│ ├── Session.php
│ ├── SessionHandlerInterface.php
│ ├── Session_driver.php
│ ├── drivers
│ │ ├── Session_database_driver.php
│ │ ├── Session_files_driver.php
│ │ ├── Session_memcached_driver.php
│ │ ├── Session_redis_driver.php
│ │ └── index.html
│ └── index.html
│ ├── Table.php
│ ├── Trackback.php
│ ├── Typography.php
│ ├── Unit_test.php
│ ├── Upload.php
│ ├── User_agent.php
│ ├── Xmlrpc.php
│ ├── Xmlrpcs.php
│ ├── Zip.php
│ └── index.html
├── uploads
├── .png
└── 1.png
└── user_guide
├── .buildinfo
├── DCO.html
├── _downloads
└── ELDocs.tmbundle.zip
├── _images
├── appflowchart.gif
└── smile.gif
├── _static
├── ajax-loader.gif
├── basic.css
├── ci-icon.ico
├── comment-bright.png
├── comment-close.png
├── comment.png
├── css
│ ├── badge_only.css
│ ├── citheme.css
│ └── theme.css
├── doctools.js
├── down-pressed.png
├── down.png
├── file.png
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── images
│ └── ci-icon.ico
├── jquery.js
├── js
│ ├── oldtheme.js
│ └── theme.js
├── minus.png
├── plus.png
├── pygments.css
├── searchtools.js
├── underscore.js
├── up-pressed.png
├── up.png
└── websupport.js
├── changelog.html
├── contributing
└── index.html
├── database
├── caching.html
├── call_function.html
├── configuration.html
├── connecting.html
├── db_driver_reference.html
├── examples.html
├── forge.html
├── helpers.html
├── index.html
├── metadata.html
├── queries.html
├── query_builder.html
├── results.html
├── transactions.html
└── utilities.html
├── documentation
└── index.html
├── general
├── alternative_php.html
├── ancillary_classes.html
├── autoloader.html
├── caching.html
├── cli.html
├── common_functions.html
├── compatibility_functions.html
├── controllers.html
├── core_classes.html
├── creating_drivers.html
├── creating_libraries.html
├── credits.html
├── drivers.html
├── environments.html
├── errors.html
├── helpers.html
├── hooks.html
├── index.html
├── libraries.html
├── managing_apps.html
├── models.html
├── profiling.html
├── requirements.html
├── reserved_names.html
├── routing.html
├── security.html
├── styleguide.html
├── urls.html
├── views.html
└── welcome.html
├── genindex.html
├── helpers
├── array_helper.html
├── captcha_helper.html
├── cookie_helper.html
├── date_helper.html
├── directory_helper.html
├── download_helper.html
├── email_helper.html
├── file_helper.html
├── form_helper.html
├── html_helper.html
├── index.html
├── inflector_helper.html
├── language_helper.html
├── number_helper.html
├── path_helper.html
├── security_helper.html
├── smiley_helper.html
├── string_helper.html
├── text_helper.html
├── typography_helper.html
├── url_helper.html
└── xml_helper.html
├── index.html
├── installation
├── downloads.html
├── index.html
├── troubleshooting.html
├── upgrade_120.html
├── upgrade_130.html
├── upgrade_131.html
├── upgrade_132.html
├── upgrade_133.html
├── upgrade_140.html
├── upgrade_141.html
├── upgrade_150.html
├── upgrade_152.html
├── upgrade_153.html
├── upgrade_154.html
├── upgrade_160.html
├── upgrade_161.html
├── upgrade_162.html
├── upgrade_163.html
├── upgrade_170.html
├── upgrade_171.html
├── upgrade_172.html
├── upgrade_200.html
├── upgrade_201.html
├── upgrade_202.html
├── upgrade_203.html
├── upgrade_210.html
├── upgrade_211.html
├── upgrade_212.html
├── upgrade_213.html
├── upgrade_214.html
├── upgrade_220.html
├── upgrade_221.html
├── upgrade_222.html
├── upgrade_223.html
├── upgrade_300.html
├── upgrade_301.html
├── upgrade_302.html
├── upgrade_303.html
├── upgrade_304.html
├── upgrade_305.html
├── upgrade_306.html
├── upgrade_310.html
├── upgrade_311.html
├── upgrade_312.html
├── upgrade_313.html
├── upgrade_314.html
├── upgrade_b11.html
└── upgrading.html
├── libraries
├── benchmark.html
├── caching.html
├── calendar.html
├── cart.html
├── config.html
├── email.html
├── encrypt.html
├── encryption.html
├── file_uploading.html
├── form_validation.html
├── ftp.html
├── image_lib.html
├── index.html
├── input.html
├── javascript.html
├── language.html
├── loader.html
├── migration.html
├── output.html
├── pagination.html
├── parser.html
├── security.html
├── sessions.html
├── table.html
├── trackback.html
├── typography.html
├── unit_testing.html
├── uri.html
├── user_agent.html
├── xmlrpc.html
└── zip.html
├── license.html
├── objects.inv
├── overview
├── appflow.html
├── at_a_glance.html
├── features.html
├── getting_started.html
├── goals.html
├── index.html
└── mvc.html
├── search.html
├── searchindex.js
└── tutorial
├── conclusion.html
├── create_news_items.html
├── index.html
├── news_section.html
└── static_pages.html
/.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 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: # Replace with a single Patreon username
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
13 |
--------------------------------------------------------------------------------
/.github/workflows/php.yml:
--------------------------------------------------------------------------------
1 | name: PHP Composer
2 |
3 | on: [push]
4 |
5 | jobs:
6 | build:
7 |
8 | runs-on: ubuntu-latest
9 |
10 | steps:
11 | - uses: actions/checkout@v1
12 |
13 | - name: Validate composer.json and composer.lock
14 | run: composer validate
15 |
16 | - name: Install dependencies
17 | run: composer install --prefer-dist --no-progress --no-suggest
18 |
19 | # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
20 | # Docs: https://getcomposer.org/doc/articles/scripts.md
21 |
22 | # - name: Run test suite
23 | # run: composer run-script test
24 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
3 | application/cache/*
4 | !application/cache/index.html
5 | !application/cache/.htaccess
6 |
7 | application/logs/*
8 | !application/logs/index.html
9 | !application/logs/.htaccess
10 |
11 | composer.lock
12 |
13 | user_guide_src/build/*
14 | user_guide_src/cilexer/build/*
15 | user_guide_src/cilexer/dist/*
16 | user_guide_src/cilexer/pycilexer.egg-info/*
17 | /vendor/
18 |
19 | # IDE Files
20 | #-------------------------
21 | /nbproject/
22 | .idea/*
23 |
24 | ## Sublime Text cache files
25 | *.tmlanguage.cache
26 | *.tmPreferences.cache
27 | *.stTheme.cache
28 | *.sublime-workspace
29 | *.sublime-project
30 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 17 | return redirect('home'); 18 | exit(); 19 | } 20 | 21 | $this->load->view('private/calendar/header',['username'=>$this->get_admin()]); 22 | $this->load->view('private/calendar/footer'); 23 | } 24 | public function index(){ 25 | $this->load->library('calendar'); 26 | echo $this->calendar->generate(); 27 | } 28 | } -------------------------------------------------------------------------------- /application/controllers/discuss.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 17 | return redirect('home'); 18 | exit(); 19 | } 20 | 21 | 22 | $this->load->view('private/discuss/header',['username'=>$this->get_admin()]); 23 | $this->load->view('private/discuss/footer'); 24 | } 25 | public function index(){ 26 | 27 | } 28 | } -------------------------------------------------------------------------------- /application/controllers/hr.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 16 | return redirect('home'); 17 | exit(); 18 | } 19 | 20 | 21 | $this->load->view('private/hr/header',['username' => $this->get_admin()]); 22 | $this->load->view('private/hr/footer'); 23 | } 24 | public function index(){ 25 | $this->load->view('private/hr/hr_view'); 26 | 27 | } 28 | } -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/lms.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 16 | return redirect('home'); 17 | exit(); 18 | } 19 | 20 | $this->load->view('private/lms/header',['username' => $this->get_admin()]); 21 | $this->load->view('private/lms/footer'); 22 | } 23 | public function index(){ 24 | 25 | } 26 | } -------------------------------------------------------------------------------- /application/controllers/owner.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 13 | return redirect('home'); 14 | exit(); 15 | } 16 | 17 | } 18 | 19 | public function index() 20 | { 21 | $this->load->view('public/header_view'); 22 | $this->load->view('public/owner_view'); 23 | $this->load->view('public/footer_view'); 24 | 25 | } 26 | 27 | public function owner_login() 28 | { 29 | $email = $this->input->POST('owneremail'); 30 | $password = $this->input->POST('password'); 31 | 32 | if ($email == 'akshat41121995@gmail.com' && $password == 'nicola11') { 33 | $name = 'akshat'; 34 | $this->load->view('public/login_success'); 35 | 36 | } else { 37 | redirect('owner/incinfo'); 38 | } 39 | } 40 | 41 | public function incinfo() 42 | { 43 | $this->load->view('public/incorrect_info'); 44 | 45 | } 46 | } -------------------------------------------------------------------------------- /application/controllers/quiz.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 16 | return redirect('home'); 17 | exit(); 18 | } 19 | 20 | 21 | $this->load->view('private/quiz/header',['username' => $this->get_admin()]); 22 | $this->load->view('private/quiz/footer'); 23 | } 24 | public function index(){ 25 | 26 | } 27 | } -------------------------------------------------------------------------------- /application/controllers/summary.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 16 | return redirect('home'); 17 | exit(); 18 | } 19 | 20 | $this->load->view('private/summary/header',['username' => $this->get_admin()]); 21 | $this->load->view('private/summary/footer'); 22 | } 23 | public function fees_summary(){ 24 | $this->benchmark->mark('code_start'); 25 | 26 | // Some code happens here 27 | $this->load->view('private/summary/fees_summary'); 28 | $this->benchmark->mark('code_end'); 29 | 30 | //echo $this->benchmark->elapsed_time('code_start', 'code_end'); 31 | 32 | $this->load->library('encryption'); 33 | $t='This is cipher text'; 34 | $key = $this->encryption->create_key(128); 35 | 36 | $key = bin2hex($this->encryption->create_key(16)); 37 | echo $key; 38 | } 39 | } -------------------------------------------------------------------------------- /application/controllers/testing.php: -------------------------------------------------------------------------------- 1 | session->userdata('login_id')){ 17 | return redirect('home'); 18 | exit(); 19 | } 20 | 21 | $this->form_validation->set_error_delimiters('Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/Templates.php: -------------------------------------------------------------------------------- 1 | $page_title, 9 | 'headerNavigation' => $navigation, 10 | 'meta' => $meta, 11 | 'metadescription' => $metadescription 12 | ); 13 | $this->load->view('public/header',$data); 14 | //return $data; 15 | } 16 | } -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/Excel.php: -------------------------------------------------------------------------------- 1 | =5.3.0" 18 | }, 19 | "autoload": { 20 | "classmap": [ 21 | "config", 22 | "include", 23 | "tcpdf.php", 24 | "tcpdf_parser.php", 25 | "tcpdf_import.php", 26 | "tcpdf_barcodes_1d.php", 27 | "tcpdf_barcodes_2d.php", 28 | "include/tcpdf_colors.php", 29 | "include/tcpdf_filters.php", 30 | "include/tcpdf_font_data.php", 31 | "include/tcpdf_fonts.php", 32 | "include/tcpdf_images.php", 33 | "include/tcpdf_static.php", 34 | "include/barcodes/datamatrix.php", 35 | "include/barcodes/pdf417.php", 36 | "include/barcodes/qrcode.php" 37 | ] 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/data/cert/tcpdf.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/data/cert/tcpdf.fdf -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/data/cert/tcpdf.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/data/cert/tcpdf.p12 -------------------------------------------------------------------------------- /application/libraries/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/libraries/TCPDF/examples/example_012.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/example_012.pdf -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/_blank.png -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/alpha.png -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/image_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/image_demo.jpg -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/image_with_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/image_with_alpha.png -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/img.png -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/logo_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/logo_example.gif -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/logo_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/logo_example.jpg -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/logo_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/logo_example.png -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/tcpdf_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/tcpdf_cell.png -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/tcpdf_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/tcpdf_logo.jpg -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/images/tcpdf_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/libraries/TCPDF/examples/images/tcpdf_signature.png -------------------------------------------------------------------------------- /application/libraries/TCPDF/examples/lang/ara.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/pdf.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/export.php: -------------------------------------------------------------------------------- 1 | db->select('*'); 13 | $query = $this->db->get('account'); 14 | return $query->result_array(); 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/insert_model.php: -------------------------------------------------------------------------------- 1 | db->insert('fees_plan',array('fees_heading'=>$data['fees_heading'],'value'=>$data['fees_value'],'category'=>$category,'class'=>$class)); 13 | } 14 | } 15 | } 16 | 17 | public function submit_enquiry($data) 18 | { 19 | $this->db->insert('enquiry',$data); 20 | 21 | } 22 | 23 | } 24 | 25 | ?> -------------------------------------------------------------------------------- /application/models/login_model.php: -------------------------------------------------------------------------------- 1 | db->where(['admin_email' => $email, 'admin_password' => $password]) 14 | ->get('admin'); 15 | 16 | if ($q->num_rows() >= 1) { 17 | 18 | return $q->row()->admin_id; 19 | 20 | } else { 21 | return FALSE; 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/.gitattributes: -------------------------------------------------------------------------------- 1 | /Build export-ignore 2 | /unitTests export-ignore 3 | README.md export-ignore 4 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/.gitignore: -------------------------------------------------------------------------------- 1 | build/PHPExcel.phar 2 | unitTests/codeCoverage 3 | analysis 4 | 5 | ## IDE support 6 | *.buildpath 7 | *.project 8 | /.settings 9 | /.idea 10 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.4 5 | - 5.5 6 | - 5.6 7 | - 7.0 8 | - hhvm 9 | 10 | matrix: 11 | allow_failures: 12 | - php: hhvm 13 | 14 | before_script: 15 | ## Packages 16 | - sudo apt-get -qq update > /dev/null 17 | ## Composer 18 | - composer self-update 19 | - composer install --prefer-source --dev 20 | - phpenv global "$TRAVIS_PHP_VERSION" 21 | 22 | script: 23 | ## PHP_CodeSniffer 24 | - ./vendor/bin/phpcs --report-width=200 --report-summary --report-full Classes/ unitTests/ --standard=PSR2 -n 25 | ## PHPUnit 26 | - phpunit -c ./unitTests/ 27 | 28 | notifications: 29 | email: false 30 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | 19 | PHPGraphLib 20 | http://www.ebrueggeman.com/phpgraphlib -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Classes/PHPExcel/Reader/Excel5/Color.php: -------------------------------------------------------------------------------- 1 | 'FF0000') 11 | */ 12 | public static function map($color, $palette, $version) 13 | { 14 | if ($color <= 0x07 || $color >= 0x40) { 15 | // special built-in color 16 | return PHPExcel_Reader_Excel5_Color_BuiltIn::lookup($color); 17 | } elseif (isset($palette) && isset($palette[$color - 8])) { 18 | // palette color, color index 0x08 maps to pallete index 0 19 | return $palette[$color - 8]; 20 | } else { 21 | // default color table 22 | if ($version == PHPExcel_Reader_Excel5::XLS_BIFF8) { 23 | return PHPExcel_Reader_Excel5_Color_BIFF8::lookup($color); 24 | } else { 25 | // BIFF5 26 | return PHPExcel_Reader_Excel5_Color_BIFF5::lookup($color); 27 | } 28 | } 29 | 30 | return $color; 31 | } 32 | } -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Classes/PHPExcel/Reader/Excel5/Color/BuiltIn.php: -------------------------------------------------------------------------------- 1 | '000000', 7 | 0x01 => 'FFFFFF', 8 | 0x02 => 'FF0000', 9 | 0x03 => '00FF00', 10 | 0x04 => '0000FF', 11 | 0x05 => 'FFFF00', 12 | 0x06 => 'FF00FF', 13 | 0x07 => '00FFFF', 14 | 0x40 => '000000', // system window text color 15 | 0x41 => 'FFFFFF', // system window background color 16 | ); 17 | 18 | /** 19 | * Map built-in color to RGB value 20 | * 21 | * @param int $color Indexed color 22 | * @return array 23 | */ 24 | public static function lookup($color) 25 | { 26 | if (isset(self::$map[$color])) { 27 | return array('rgb' => self::$map[$color]); 28 | } 29 | return array('rgb' => '000000'); 30 | } 31 | } -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Classes/PHPExcel/Reader/Excel5/ErrorCode.php: -------------------------------------------------------------------------------- 1 | '#NULL!', 7 | 0x07 => '#DIV/0!', 8 | 0x0F => '#VALUE!', 9 | 0x17 => '#REF!', 10 | 0x1D => '#NAME?', 11 | 0x24 => '#NUM!', 12 | 0x2A => '#N/A', 13 | ); 14 | 15 | /** 16 | * Map error code, e.g. '#N/A' 17 | * 18 | * @param int $code 19 | * @return string 20 | */ 21 | public static function lookup($code) 22 | { 23 | if (isset(self::$map[$code])) { 24 | return self::$map[$code]; 25 | } 26 | return false; 27 | } 28 | } -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT: -------------------------------------------------------------------------------- 1 | Mar 1, 2005 11:15 AST by PM 2 | 3 | + For consistency, renamed Math.php to Maths.java, utils to util, 4 | tests to test, docs to doc - 5 | 6 | + Removed conditional logic from top of Matrix class. 7 | 8 | + Switched to using hypo function in Maths.php for all php-hypot calls. 9 | NOTE TO SELF: Need to make sure that all decompositions have been 10 | switched over to using the bundled hypo. 11 | 12 | Feb 25, 2005 at 10:00 AST by PM 13 | 14 | + Recommend using simpler Error.php instead of JAMA_Error.php but 15 | can be persuaded otherwise. 16 | 17 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Classes/PHPExcel/Shared/JAMA/utils/Maths.php: -------------------------------------------------------------------------------- 1 | abs($b)) { 17 | $r = $b / $a; 18 | $r = abs($a) * sqrt(1 + $r * $r); 19 | } elseif ($b != 0) { 20 | $r = $a / $b; 21 | $r = abs($b) * sqrt(1 + $r * $r); 22 | } else { 23 | $r = 0.0; 24 | } 25 | return $r; 26 | } // function hypo() 27 | 28 | 29 | /** 30 | * Mike Bommarito's version. 31 | * Compute n-dimensional hyotheneuse. 32 | * 33 | function hypot() { 34 | $s = 0; 35 | foreach (func_get_args() as $d) { 36 | if (is_numeric($d)) { 37 | $s += pow($d, 2); 38 | } else { 39 | throw new PHPExcel_Calculation_Exception(JAMAError(ARGUMENT_TYPE_EXCEPTION)); 40 | } 41 | } 42 | return sqrt($s); 43 | } 44 | */ 45 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Calculations/index.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.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/views/errors/cli/error_general.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 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |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 |
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 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/accounts/accounts_book/continous_ledger.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/accounts/import.php: -------------------------------------------------------------------------------- 1 |Import
4 |Labels
11 |Send SMS
11 |Send SMS
5 |