├── .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 | 2 | RewriteEngine On 3 | #rename "codeIgniter213" with your application directory 4 | #For example you rename the entire CodeIgniter application as "mysite" 5 | #then, the "RewriteBase /" will be like this "RewriteBase /mysite" 6 | #same as at line number 10, "RewriteRule ^(.*)$ /codeIgniter213/index.php #/$1 [L]" will be like this "RewriteRule ^(.*)$ /mysite/index.php/$1 [L]" 7 | 8 | RewriteBase /SchoolERP 9 | RewriteCond %{REQUEST_FILENAME} !-f 10 | RewriteCond %{REQUEST_FILENAME} !-d 11 | RewriteRule ^(.*)$ /SchoolERP/index.php/$1 [L] 12 | 13 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Akshat 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SchoolERP Docs/ER_View.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/ER_View.docx -------------------------------------------------------------------------------- /SchoolERP Docs/SRS for School ERP.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/SRS for School ERP.doc -------------------------------------------------------------------------------- /SchoolERP Docs/Use Case Diagrams.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/Use Case Diagrams.docx -------------------------------------------------------------------------------- /SchoolERP Docs/adm_school_erp.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/adm_school_erp.docx -------------------------------------------------------------------------------- /SchoolERP Docs/class diagram of application.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/class diagram of application.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/enquiry_new.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/enquiry_new.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/er for fees.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/er for fees.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/use_case for accountant.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/use_case for accountant.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/use_case for admin.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/use_case for admin.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/use_case for faculty.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/use_case for faculty.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/use_case for login.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/use_case for login.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/use_case for owner.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/use_case for owner.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/use_case for receptionist.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/use_case for receptionist.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/use_case for students.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/use_case for students.vsdx -------------------------------------------------------------------------------- /SchoolERP Docs/~$R_View.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/~$R_View.docx -------------------------------------------------------------------------------- /SchoolERP Docs/~WRL0868.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/SchoolERP Docs/~WRL0868.tmp -------------------------------------------------------------------------------- /SchoolErp.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

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 | 403 Forbidden 5 | 6 | 7 | 8 |

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('
', '
'); 22 | } 23 | public function test(){ 24 | $this->load->library('email'); 25 | 26 | $this->email->from('garg.ridhima72@gmail.com', 'Ridhima '); 27 | $this->email->to('akshat41121995@gmail.com'); 28 | $this->email->cc(''); 29 | $this->email->bcc(''); 30 | 31 | $this->email->subject('Email Test'); 32 | $this->email->message('Testing the email class.'); 33 | 34 | if($this->email->send()){ 35 | echo 'success'; 36 | }else{ 37 | echo 'Error'; 38 | } 39 | } 40 | } -------------------------------------------------------------------------------- /application/core/MY_Model.php: -------------------------------------------------------------------------------- 1 | db->insert($table_name,$array); 11 | } 12 | public function insert_data_key($table_name,$array,$key){ 13 | $this->db->where('student_id', $key); 14 | return $this->db->update($table_name, $array); 15 | } 16 | } -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

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 | 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/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/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

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 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/pdf.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

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 | 403 Forbidden 5 | 6 | 7 | 8 |

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 | PHPExcel Calculation Function Examples 14 | 15 | 16 | 17 | 18 | PHPExcel Calculation Function Examples'; 21 | 22 | $exampleTypeList = glob('./*',GLOB_ONLYDIR); 23 | 24 | foreach($exampleTypeList as $exampleType) { 25 | 26 | echo '

' . pathinfo($exampleType,PATHINFO_BASENAME) . ' Function Examples

'; 27 | 28 | $exampleList = glob('./'.$exampleType.'/*.php'); 29 | 30 | foreach($exampleList as $exampleFile) { 31 | $fileData = file_get_contents($exampleFile); 32 | 33 | $h1Pattern = '#

(.*?)

#'; 34 | $h2Pattern = '#

(.*?)

#'; 35 | 36 | if (preg_match($h1Pattern, $fileData, $out)) { 37 | $h1Text = $out[1]; 38 | $h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : ''; 39 | 40 | echo '',$h1Text,'
'; 41 | if ($h2Text > '') { 42 | echo $h2Text,'
'; 43 | } 44 | } 45 | 46 | } 47 | } 48 | 49 | ?> 50 | 51 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/exampleReader01.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | PHPExcel Reader Example #01 14 | 15 | 16 | 17 | 18 |

PHPExcel Reader Example #01

19 |

Simple File Reader using PHPExcel_IOFactory::load()

20 | '; 31 | $objPHPExcel = PHPExcel_IOFactory::load($inputFileName); 32 | 33 | 34 | echo '
'; 35 | 36 | $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); 37 | var_dump($sheetData); 38 | 39 | 40 | ?> 41 | 42 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/exampleReader16.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | PHPExcel Reader Example #16 14 | 15 | 16 | 17 | 18 |

PHPExcel Reader Example #16

19 |

Handling Loader Exceptions using Try/Catch

20 | '; 31 | try { 32 | $objPHPExcel = PHPExcel_IOFactory::load($inputFileName); 33 | } catch(PHPExcel_Reader_Exception $e) { 34 | die('Error loading file "'.pathinfo($inputFileName,PATHINFO_BASENAME).'": '.$e->getMessage()); 35 | } 36 | 37 | 38 | echo '
'; 39 | 40 | $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); 41 | var_dump($sheetData); 42 | 43 | 44 | ?> 45 | 46 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example1.csv: -------------------------------------------------------------------------------- 1 | First Name,Last Name,Nationality,Gender,Date of Birth,Time of Birth,Date/Time,PHP Coder,Sanity %Age 2 | Mark,Baker,British,M,19-Dec-1960,01:30,=E2+F2,TRUE,32% 3 | Toni,Baker,British,F,24-Nov-1950,20:00,=E3+F3,FALSE,95% 4 | Rachel,Baker,British,F,7-Dec-1982,00:15,=E4+F4,FALSE,100% -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example1.tsv: -------------------------------------------------------------------------------- 1 | First Name Last Name Nationality Gender Date of Birth Time of Birth Date/Time PHP Coder Sanity %Age 2 | Mark Baker British M 19-Dec-1960 01:30 =E2+F2 TRUE 32% 3 | Toni Baker British F 24-Nov-1950 20:00 =E3+F3 FALSE 95% 4 | Rachel Baker British F 7-Dec-1982 00:15 =E4+F4 FALSE 100% -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example1.xls -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example2.csv -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/Examples/Reader/sampleData/example2.xls -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xls -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xlsx -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/Reading WorkBook Data/sampleData/example2.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/Examples/Reading WorkBook Data/sampleData/example2.xls -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Examples/index.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | PHPExcel Examples 14 | 15 | 16 | 17 | 18 | PHPExcel ' . pathinfo($exampleType,PATHINFO_BASENAME) . ' Examples'; 25 | 26 | $exampleList = glob('./'.$exampleType.'/*.php'); 27 | 28 | foreach($exampleList as $exampleFile) { 29 | $fileData = file_get_contents($exampleFile); 30 | 31 | $h1Pattern = '#

(.*?)

#'; 32 | $h2Pattern = '#

(.*?)

#'; 33 | 34 | if (preg_match($h1Pattern, $fileData, $out)) { 35 | $h1Text = $out[1]; 36 | $h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : ''; 37 | 38 | echo '',$h1Text,'
'; 39 | if (($h2Text > '') && 40 | (pathinfo($exampleType,PATHINFO_BASENAME) != 'Calculations')) { 41 | echo $h2Text,'
'; 42 | } 43 | } 44 | 45 | } 46 | } 47 | 48 | ?> 49 | 50 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/Functionality Cross-Reference.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/Functionality Cross-Reference.xls -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/PHPExcel AutoFilter Reference developer documentation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/PHPExcel AutoFilter Reference developer documentation.doc -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/PHPExcel Function Reference developer documentation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/PHPExcel Function Reference developer documentation.doc -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/PHPExcel developer documentation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/PHPExcel developer documentation.doc -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Architecture.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | ShowAllFiles 4 | 5 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/ClassDiagrams.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassDiagrams", "ClassDiagrams.csproj", "{CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {CC8CD7D2-8EFF-48E5-A17A-C1C482744D31}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/IReader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public interface PHPExcel_Reader_IReader 8 | { 9 | PHPExcel reads 10 | { 11 | get; 12 | set; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/IWriter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public interface PHPExcel_Writer_IWriter 8 | { 9 | PHPExcel writes 10 | { 11 | get; 12 | set; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/PHPExcel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public class PHPExcel 8 | { 9 | /// 10 | public Worksheet Worksheets 11 | { 12 | get 13 | { 14 | throw new System.NotImplementedException(); 15 | } 16 | set 17 | { 18 | } 19 | } 20 | } 21 | 22 | public class PHPExcel_Writer_PDF : PHPExcel_Writer_IWriter 23 | { 24 | #region PHPExcel_Writer_IWriter Members 25 | 26 | public PHPExcel writes 27 | { 28 | get 29 | { 30 | throw new Exception("The method or operation is not implemented."); 31 | } 32 | set 33 | { 34 | throw new Exception("The method or operation is not implemented."); 35 | } 36 | } 37 | 38 | #endregion 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public class PHPExcel_IOFactory 8 | { 9 | public PHPExcel_Reader_IReader createsReader 10 | { 11 | get 12 | { 13 | throw new System.NotImplementedException(); 14 | } 15 | set 16 | { 17 | } 18 | } 19 | 20 | public PHPExcel_Writer_IWriter createsWriter 21 | { 22 | get 23 | { 24 | throw new System.NotImplementedException(); 25 | } 26 | set 27 | { 28 | } 29 | } 30 | 31 | public PHPExcel_Writer_IWriter createWriter() 32 | { 33 | throw new System.NotImplementedException(); 34 | } 35 | 36 | public PHPExcel_Reader_IReader createReader() 37 | { 38 | throw new System.NotImplementedException(); 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel2007.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public class PHPExcel_Reader_Excel2007 : PHPExcel_Reader_IReader 8 | { 9 | #region IReader Members 10 | 11 | public PHPExcel reads 12 | { 13 | get 14 | { 15 | throw new Exception("The method or operation is not implemented."); 16 | } 17 | set 18 | { 19 | throw new Exception("The method or operation is not implemented."); 20 | } 21 | } 22 | 23 | #endregion 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Serialized.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public class PHPExcel_Reader_Serialized : PHPExcel_Reader_IReader 8 | { 9 | #region IReader Members 10 | 11 | public PHPExcel reads 12 | { 13 | get 14 | { 15 | throw new Exception("The method or operation is not implemented."); 16 | } 17 | set 18 | { 19 | throw new Exception("The method or operation is not implemented."); 20 | } 21 | } 22 | 23 | #endregion 24 | } 25 | 26 | public class PHPExcel_Reader_CSV : PHPExcel_Reader_IReader 27 | { 28 | #region IReader Members 29 | 30 | public PHPExcel reads 31 | { 32 | get 33 | { 34 | throw new Exception("The method or operation is not implemented."); 35 | } 36 | set 37 | { 38 | throw new Exception("The method or operation is not implemented."); 39 | } 40 | } 41 | 42 | #endregion 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Excel2007.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public class PHPExcel_Writer_Excel2007 : PHPExcel_Writer_IWriter 8 | { 9 | #region IWriter Members 10 | 11 | public PHPExcel writes 12 | { 13 | get 14 | { 15 | throw new Exception("The method or operation is not implemented."); 16 | } 17 | set 18 | { 19 | throw new Exception("The method or operation is not implemented."); 20 | } 21 | } 22 | 23 | #endregion 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Classes/Worksheet.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ClassDiagrams 6 | { 7 | public class Worksheet 8 | { 9 | } 10 | 11 | public class CopyOfWorksheet 12 | { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Exports/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Exports/Architecture.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Exports/ReaderWriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/Exports/ReaderWriter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/ReaderWriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/assets/ClassDiagrams/ReaderWriter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/CalculationEngine/FunctionReference/01-Introduction.md: -------------------------------------------------------------------------------- 1 | # Calculation Engine - Formula Function Reference 2 | 3 | ## Frequently asked questions 4 | 5 | The up-to-date F.A.Q. page for PHPExcel can be found on [http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements][1]. 6 | 7 | ### Formulas don’t seem to be calculated in Excel2003 using compatibility pack? 8 | 9 | This is normal behaviour of the compatibility pack, Excel2007 displays this correctly. Use PHPExcel_Writer_Excel5 if you really need calculated values, or force recalculation in Excel2003. 10 | 11 | [1]: http://www.codeplex.com/PHPExcel/Wiki/View.aspx?title=FAQ&referringTitle=Requirements 12 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/CalculationEngine/FunctionReference/03-01-Cube-Functions.md: -------------------------------------------------------------------------------- 1 | # Calculation Engine - Formula Function Reference 2 | 3 | ## Function Reference 4 | 5 | ### Cube Functions 6 | 7 | #### CUBEKPIMEMBER 8 | 9 | Not yet implemented. 10 | 11 | #### CUBEMEMBER 12 | 13 | Not yet implemented. 14 | 15 | #### CUBEMEMBERPROPERTY 16 | 17 | Not yet implemented. 18 | 19 | #### CUBERANKEDMEMBER 20 | 21 | Not yet implemented. 22 | 23 | #### CUBESET 24 | 25 | Not yet implemented. 26 | 27 | #### CUBESETCOUNT 28 | 29 | Not yet implemented. 30 | 31 | #### CUBEVALUE 32 | 33 | Not yet implemented. 34 | 35 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/02-Setting-an-Autofilter.md: -------------------------------------------------------------------------------- 1 | # PHPExcel AutoFilter Reference 2 | 3 | 4 | ## Setting an AutoFilter area on a worksheet 5 | 6 | To set an autoFilter on a range of cells. 7 | 8 | ```php 9 | $objPHPExcel->getActiveSheet()->setAutoFilter('A1:E20'); 10 | ``` 11 | 12 | The first row in an autofilter range will be the heading row, which displays the autoFilter dropdown icons. It is not part of the actual autoFiltered data. All subsequent rows are the autoFiltered data. So an AutoFilter range should always contain the heading row and one or more data rows (one data row is pretty meaningless, but PHPExcel won't actually stop you specifying a meaningless range: it's up to you as the developer to avoid such errors. 13 | 14 | If you want to set the whole worksheet as an autofilter region 15 | 16 | ```php 17 | $objPHPExcel->getActiveSheet()->setAutoFilter( 18 | $objPHPExcel->getActiveSheet() 19 | ->calculateWorksheetDimension() 20 | ); 21 | ``` 22 | 23 | This enables filtering, but does not actually apply any filters. 24 | 25 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/03-Autofilter-Expressions.md: -------------------------------------------------------------------------------- 1 | # PHPExcel AutoFilter Reference 2 | 3 | 4 | ## Autofilter Expressions 5 | 6 | PHPEXcel 1.7.8 introduced the ability to actually create, read and write filter expressions; initially only for Excel2007 files, but later releases will extend this to other formats. 7 | 8 | To apply a filter expression to an autoFilter range, you first need to identify which column you're going to be applying this filter to. 9 | 10 | ```php 11 | $autoFilter = $objPHPExcel->getActiveSheet()->getAutoFilter(); 12 | $columnFilter = $autoFilter->getColumn('C'); 13 | ``` 14 | 15 | This returns an autoFilter column object, and you can then apply filter expressions to that column. 16 | 17 | There are a number of different types of autofilter expressions. The most commonly used are: 18 | 19 | - Simple Filters 20 | - DateGroup Filters 21 | - Custom filters 22 | - Dynamic Filters 23 | - Top Ten Filters 24 | 25 | These different types are mutually exclusive within any single column. You should not mix the different types of filter in the same column. PHPExcel will not actively prevent you from doing this, but the results are unpredictable. 26 | 27 | Other filter expression types (such as cell colour filters) are not yet supported. 28 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/06-Autofilter-Sorting.md: -------------------------------------------------------------------------------- 1 | # PHPExcel AutoFilter Reference 2 | 3 | 4 | ## AutoFilter Sorting 5 | 6 | In MS Excel, Autofiltering also allows the rows to be sorted. This feature is ***not*** supported by PHPExcel. 7 | 8 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-01-autofilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-01-autofilter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-02-autofilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-02-autofilter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-1.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-2.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-04-autofilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/01-04-autofilter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-01-simple-autofilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-01-simple-autofilter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-02-dategroup-autofilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-02-dategroup-autofilter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-1.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-2.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-04-dynamic-autofilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-04-dynamic-autofilter.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-1.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-2.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/05-Deleting-a-Workbook.md: -------------------------------------------------------------------------------- 1 | # PHPExcel Developer Documentation 2 | 3 | ## Clearing a Workbook from memory 4 | 5 | The PHPExcel object contains cyclic references (e.g. the workbook is linked to the worksheets, and the worksheets are linked to their parent workbook) which cause problems when PHP tries to clear the objects from memory when they are unset(), or at the end of a function when they are in local scope. The result of this is "memory leaks", which can easily use a large amount of PHP's limited memory. 6 | 7 | This can only be resolved manually: if you need to unset a workbook, then you also need to "break" these cyclic references before doing so. PHPExcel provides the disconnectWorksheets() method for this purpose. 8 | 9 | ```php 10 | $objPHPExcel->disconnectWorksheets(); 11 | 12 | unset($objPHPExcel); 13 | ``` 14 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/06-Worksheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/06-Worksheets.md -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/11-Appendices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/11-Appendices.md -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/01-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/01-schematic.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/02-readers-writers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/02-readers-writers.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-1.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-2.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-3.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/07-simple-example-4.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-cell-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-cell-comment.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-column-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-column-width.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-page-setup-margins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-page-setup-margins.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-page-setup-scaling-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-page-setup-scaling-options.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-styling-border-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/08-styling-border-options.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/09-command-line-calculation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/09-command-line-calculation.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/09-formula-in-cell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/09-formula-in-cell-1.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/09-formula-in-cell-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Documentation/markdown/Overview/images/09-formula-in-cell-2.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/ReadingSpreadsheetFiles/02-Security.md: -------------------------------------------------------------------------------- 1 | # PHPExcel User Documentation – Reading Spreadsheet Files 2 | 3 | 4 | ## Security 5 | 6 | XML-based formats such as OfficeOpen XML, Excel2003 XML, OASIS and Gnumeric are susceptible to XML External Entity Processing (XXE) injection attacks (for an explanation of XXE injection see http://websec.io/2012/08/27/Preventing-XEE-in-PHP.html) when reading spreadsheet files. This can lead to: 7 | 8 | - Disclosure whether a file is existent 9 | - Server Side Request Forgery 10 | - Command Execution (depending on the installed PHP wrappers) 11 | 12 | 13 | To prevent this, PHPExcel sets `libxml_disable_entity_loader` to `true` for the XML-based Readers by default. -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Documentation/markdown/ReadingSpreadsheetFiles/06-Error-Handling.md: -------------------------------------------------------------------------------- 1 | # PHPExcel User Documentation – Reading Spreadsheet Files 2 | 3 | ## Error Handling 4 | 5 | Of course, you should always apply some error handling to your scripts as well. PHPExcel throws exceptions, so you can wrap all your code that accesses the library methods within Try/Catch blocks to trap for any problems that are encountered, and deal with them in an appropriate manner. 6 | 7 | The PHPExcel Readers throw a PHPExcel_Reader_Exception. 8 | 9 | ```php 10 | $inputFileName = './sampleData/example-1.xls'; 11 | 12 | try { 13 | /** Load $inputFileName to a PHPExcel Object **/ 14 | $objPHPExcel = PHPExcel_IOFactory::load($inputFileName); 15 | } catch(PHPExcel_Reader_Exception $e) { 16 | die('Error loading file: '.$e->getMessage()); 17 | } 18 | ``` 19 | > See Examples/Reader/exampleReader16.php for a working example of this code. 20 | 21 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/.gitignore: -------------------------------------------------------------------------------- 1 | *.xls 2 | *.xlsx 3 | *.csv 4 | *.jpg 5 | *.pdf 6 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/GnumericTest.gnumeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Examples/GnumericTest.gnumeric -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/OOCalcTest.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Examples/OOCalcTest.ods -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/data/continents/Africa.txt: -------------------------------------------------------------------------------- 1 | Algeria 2 | Angola 3 | Benin 4 | Botswana 5 | Burkina 6 | Burundi 7 | Cameroon 8 | Cape Verde 9 | Central African Republic 10 | Chad 11 | Comoros 12 | Congo 13 | Congo, Democratic Republic of 14 | Djibouti 15 | Egypt 16 | Equatorial Guinea 17 | Eritrea 18 | Ethiopia 19 | Gabon 20 | Gambia 21 | Ghana 22 | Guinea 23 | Guinea-Bissau 24 | Ivory Coast 25 | Kenya 26 | Lesotho 27 | Liberia 28 | Libya 29 | Madagascar 30 | Malawi 31 | Mali 32 | Mauritania 33 | Mauritius 34 | Morocco 35 | Mozambique 36 | Namibia 37 | Niger 38 | Nigeria 39 | Rwanda 40 | Sao Tome and Principe 41 | Senegal 42 | Seychelles 43 | Sierra Leone 44 | Somalia 45 | South Africa 46 | South Sudan 47 | Sudan 48 | Swaziland 49 | Tanzania 50 | Togo 51 | Tunisia 52 | Uganda 53 | Zambia 54 | Zimbabwe 55 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/data/continents/Asia.txt: -------------------------------------------------------------------------------- 1 | Afghanistan 2 | Bahrain 3 | Bangladesh 4 | Bhutan 5 | Brunei 6 | Burma (Myanmar) 7 | Cambodia 8 | China 9 | East Timor 10 | India 11 | Indonesia 12 | Iran 13 | Iraq 14 | Israel 15 | Japan 16 | Jordan 17 | Kazakhstan 18 | Korea, North 19 | Korea, South 20 | Kuwait 21 | Kyrgyzstan 22 | Laos 23 | Lebanon 24 | Malaysia 25 | Maldives 26 | Mongolia 27 | Nepal 28 | Oman 29 | Pakistan 30 | Philippines 31 | Qatar 32 | Russian Federation 33 | Saudi Arabia 34 | Singapore 35 | Sri Lanka 36 | Syria 37 | Tajikistan 38 | Thailand 39 | Turkey 40 | Turkmenistan 41 | United Arab Emirates 42 | Uzbekistan 43 | Vietnam 44 | Yemen 45 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/data/continents/Europe.txt: -------------------------------------------------------------------------------- 1 | Albania 2 | Andorra 3 | Armenia 4 | Austria 5 | Azerbaijan 6 | Belarus 7 | Belgium 8 | Bosnia and Herzegovina 9 | Bulgaria 10 | Croatia 11 | Cyprus 12 | Czech Republic 13 | Denmark 14 | Estonia 15 | Finland 16 | France 17 | Georgia 18 | Germany 19 | Greece 20 | Hungary 21 | Iceland 22 | Ireland 23 | Italy 24 | Latvia 25 | Liechtenstein 26 | Lithuania 27 | Luxembourg 28 | Macedonia 29 | Malta 30 | Moldova 31 | Monaco 32 | Montenegro 33 | Netherlands 34 | Norway 35 | Poland 36 | Portugal 37 | Romania 38 | San Marino 39 | Serbia 40 | Slovakia 41 | Slovenia 42 | Spain 43 | Sweden 44 | Switzerland 45 | Ukraine 46 | United Kingdom 47 | Vatican City 48 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/data/continents/North America.txt: -------------------------------------------------------------------------------- 1 | Antigua and Barbuda 2 | Bahamas 3 | Barbados 4 | Belize 5 | Canada 6 | Costa Rica 7 | Cuba 8 | Dominica 9 | Dominican Republic 10 | El Salvador 11 | Grenada 12 | Guatemala 13 | Haiti 14 | Honduras 15 | Jamaica 16 | Mexico 17 | Nicaragua 18 | Panama 19 | Saint Kitts and Nevis 20 | Saint Lucia 21 | Saint Vincent and the Grenadines 22 | Trinidad and Tobago 23 | United States 24 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/data/continents/Oceania.txt: -------------------------------------------------------------------------------- 1 | Australia 2 | Fiji 3 | Kiribati 4 | Marshall Islands 5 | Micronesia 6 | Nauru 7 | New Zealand 8 | Palau 9 | Papua New Guinea 10 | Samoa 11 | Solomon Islands 12 | Tonga 13 | Tuvalu 14 | Vanuatu 15 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/data/continents/South America.txt: -------------------------------------------------------------------------------- 1 | Argentina 2 | Bolivia 3 | Brazil 4 | Chile 5 | Colombia 6 | Ecuador 7 | Guyana 8 | Paraguay 9 | Peru 10 | Suriname 11 | Uruguay 12 | Venezuela 13 | -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/images/paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Examples/images/paid.png -------------------------------------------------------------------------------- /application/third_party/PHPExcel-1.8/Examples/images/phpexcel_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/application/third_party/PHPExcel-1.8/Examples/images/phpexcel_logo.gif -------------------------------------------------------------------------------- /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/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 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

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 |
2 |
3 |

Import

4 |
5 | 6 |
7 |
8 |
9 |
-------------------------------------------------------------------------------- /application/views/private/accounts/intereset_calculation/bill_wise_interest_calculation.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |

Labels

11 |
12 | 13 |
14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /application/views/private/accounts/send_sms.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |

Send SMS

11 |
12 | 13 |
14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /application/views/private/admin/admin_dash.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |
11 |
Admin Dashboard
12 | 13 | 14 |
15 |
16 | 17 | 18 |
19 |
20 | 21 | 22 |
23 |
24 | 25 |
26 |
27 |
28 | 29 | -------------------------------------------------------------------------------- /application/views/private/admin/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/admin/user/user_profile.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /application/views/private/admissions/create_list_view.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |

Create List View

6 |

To download the list as PDF

7 | 8 |
9 |
10 |
11 |
12 | -------------------------------------------------------------------------------- /application/views/private/admissions/footer_admission.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /application/views/private/admissions/import_view.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

Import File

5 |

Download Smaple File Click here

6 |
7 |
8 |
9 |
10 |
11 | 12 | -------------------------------------------------------------------------------- /application/views/private/admissions/send_sms.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |

Send SMS

5 |
6 |
7 |
8 |
9 |
10 | 11 | 12 |
13 |
14 | 15 | 16 | 17 | 18 |
19 |
20 |
21 |
22 |
23 | -------------------------------------------------------------------------------- /application/views/private/admissions/students_profile_view.php: -------------------------------------------------------------------------------- 1 |

View to be created

-------------------------------------------------------------------------------- /application/views/private/admissions/success_adm.php: -------------------------------------------------------------------------------- 1 | 8 |

Admission Done Successfully

9 | -------------------------------------------------------------------------------- /application/views/private/attendance/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/attendance/print.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/certificates/enterance_test/dashboard.php: -------------------------------------------------------------------------------- 1 | 9 |
10 |
11 |

Enterance Test

12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
Rec No.NameFatherVillageMobileAdmitted to
35 |
36 |
37 |
38 | 39 | -------------------------------------------------------------------------------- /application/views/private/certificates/entrance_test.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |

Entrance Test

11 |
12 | 13 |
14 |
15 | 16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /application/views/private/certificates/school_leaving/delete_sl.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/private/certificates/student_cert.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |

Student Certificate

11 |
12 | 13 |
14 |
15 | 16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /application/views/private/certificates/student_certificate/dashboard.php: -------------------------------------------------------------------------------- 1 | 9 |
10 |
11 |

Student Certificate Certificate

12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
Sr No.Adm. No.NameFatherIssue onReasonRemarks
29 |
30 |
31 |
32 | 33 | -------------------------------------------------------------------------------- /application/views/private/certificates/student_certificate/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /application/views/private/certificates/teacher_cert_l.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |

Teacher Certificate Leaving

11 |
12 | 13 |
14 |
15 | 16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /application/views/private/certificates/teacher_cert_p.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |

Teacher Certificate Present

11 |
12 | 13 |
14 |
15 | 16 |
17 |
18 |
19 | -------------------------------------------------------------------------------- /application/views/private/certificates/teacher_certificate_l/dashboard.php: -------------------------------------------------------------------------------- 1 | 9 |
10 |
11 |

Teacher Leaving Certificates

12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 |
Sr No.Adm. No.NameFatherIssue onReasonRemarks
37 |
38 |
39 |
40 | 41 | -------------------------------------------------------------------------------- /application/views/private/certificates/teacher_certificate_p/dashboard.php: -------------------------------------------------------------------------------- 1 | 9 |
10 |
11 |

School Present Certificate

12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 |
Sr No.Adm. No.NameFatherIssue onReasonRemarks
37 |
38 |
39 |
40 | 41 | -------------------------------------------------------------------------------- /application/views/private/dashboard/documentation.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Documentation

4 |
5 |
6 |
7 |
-------------------------------------------------------------------------------- /application/views/private/dashboard/prefrences.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Prefrences

4 |
5 |
6 |
7 |
-------------------------------------------------------------------------------- /application/views/private/dashboard/support.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Support

4 |
5 |
6 |
7 |
-------------------------------------------------------------------------------- /application/views/private/discuss/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/dues_list/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/enquiry/export.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/enquiry/parents.php: -------------------------------------------------------------------------------- 1 | 8 |
9 | 10 |
11 | -------------------------------------------------------------------------------- /application/views/private/enquiry/print.php: -------------------------------------------------------------------------------- 1 | 9 |
10 | Exams Dashboard 11 |
12 | 13 | -------------------------------------------------------------------------------- /application/views/private/exams/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/fees/fees_conc_settings.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/hr/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/hr/hr_view.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |
11 |

HR

12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /application/views/private/library/book_issue_register.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |
11 |

Book Issue Register

12 |
13 |
14 |
15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 |
Voucher IDDateS No.Admission No.Account No.NameRoll No.TitleAuthorSubjectPublisherClassSection
37 |
38 |
39 |
40 | -------------------------------------------------------------------------------- /application/views/private/library/book_ledger.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |
11 |

Book Ledger

12 |
13 |
14 |
15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
S No.AuthorTitleAcsession No.Admission No.Issue DateReturn DateDays DelayedFineRec. No.Remarks
35 |
36 |
37 |
38 | 39 | -------------------------------------------------------------------------------- /application/views/private/library/export.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/library/import.php: -------------------------------------------------------------------------------- 1 | 8 |
9 |
10 |
11 |

Pending Books

12 |
13 |
14 |
15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
Book IDAcc. No.TitleAuthorSubjectIssue toNo.Issued onClassEstimated Fine
34 |
35 |
36 |
37 | 38 | 39 | -------------------------------------------------------------------------------- /application/views/private/library/print.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/misc/demand_bill_print.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/misc/material_issue.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/summary/footer.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/time_table/assign_period.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/time_table/subject_master.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/private/transport/settings.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |

SchoolERP

6 |

SchoolERP is a subsidiary of Futurehead Technologies.

7 |
8 |
9 |
10 | 11 | -------------------------------------------------------------------------------- /application/views/public/feedback.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Feedback

4 |
5 |
-------------------------------------------------------------------------------- /application/views/public/footer_view.php: -------------------------------------------------------------------------------- 1 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /application/views/public/help.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Help

4 |
5 |
-------------------------------------------------------------------------------- /application/views/public/incorrect_info.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |

Incorrect Infomation

7 |
8 |
9 |
10 |
11 |
12 | -------------------------------------------------------------------------------- /application/views/public/login_success.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |

Login Success

7 |

You have logged in successfully

8 |
9 |
10 |
11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /application/views/public/query.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Query

4 |
5 |
-------------------------------------------------------------------------------- /application/views/public/suggestions.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Suggestions

4 |
5 |
-------------------------------------------------------------------------------- /application/views/upload_form.php: -------------------------------------------------------------------------------- 1 |

Test View

2 | 3 | 4 | Upload Form 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |

15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /application/views/upload_success.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | Upload Form 12 | 13 | 14 | 15 |

Your file was successfully uploaded!

16 | 17 | 22 | 23 |

24 | 25 | 26 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The CodeIgniter framework", 3 | "name": "codeigniter/framework", 4 | "type": "project", 5 | "homepage": "https://codeigniter.com", 6 | "license": "MIT", 7 | "support": { 8 | "forum": "http://forum.codeigniter.com/", 9 | "wiki": "https://github.com/bcit-ci/CodeIgniter/wiki", 10 | "irc": "irc://irc.freenode.net/codeigniter", 11 | "source": "https://github.com/bcit-ci/CodeIgniter" 12 | }, 13 | "require": { 14 | "php": ">=5.2.4" 15 | }, 16 | "suggest": { 17 | "paragonie/random_compat": "Provides better randomness in PHP 5.x" 18 | }, 19 | "require-dev": { 20 | "mikey179/vfsStream": "1.1.*", 21 | "phpunit/phpunit": "4.* || 5.*" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/assets/css/styles.css: -------------------------------------------------------------------------------- 1 | .back_image{ 2 | background-color: white; 3 | } 4 | .nav_image{ 5 | background-color:white; 6 | } 7 | .color_footer{ 8 | background-color: #ECEFF1; 9 | } -------------------------------------------------------------------------------- /public/assets/img/accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/accounts.png -------------------------------------------------------------------------------- /public/assets/img/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/admin.png -------------------------------------------------------------------------------- /public/assets/img/admission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/admission.png -------------------------------------------------------------------------------- /public/assets/img/attend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/attend.png -------------------------------------------------------------------------------- /public/assets/img/bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/bright.png -------------------------------------------------------------------------------- /public/assets/img/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/cal.png -------------------------------------------------------------------------------- /public/assets/img/cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/cert.png -------------------------------------------------------------------------------- /public/assets/img/certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/certificate.png -------------------------------------------------------------------------------- /public/assets/img/cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/cubes.png -------------------------------------------------------------------------------- /public/assets/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/dash.png -------------------------------------------------------------------------------- /public/assets/img/discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/discuss.png -------------------------------------------------------------------------------- /public/assets/img/doodles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/doodles.png -------------------------------------------------------------------------------- /public/assets/img/dues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/dues.png -------------------------------------------------------------------------------- /public/assets/img/exams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/exams.png -------------------------------------------------------------------------------- /public/assets/img/fees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/fees.png -------------------------------------------------------------------------------- /public/assets/img/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/hr.png -------------------------------------------------------------------------------- /public/assets/img/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/library.png -------------------------------------------------------------------------------- /public/assets/img/lms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/lms.png -------------------------------------------------------------------------------- /public/assets/img/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/misc.png -------------------------------------------------------------------------------- /public/assets/img/quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/quiz.png -------------------------------------------------------------------------------- /public/assets/img/science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/science.png -------------------------------------------------------------------------------- /public/assets/img/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/summary.png -------------------------------------------------------------------------------- /public/assets/img/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/tile.png -------------------------------------------------------------------------------- /public/assets/img/transport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/transport.png -------------------------------------------------------------------------------- /public/assets/img/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/public/assets/img/tt.png -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /system/core/compat/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/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/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/pdo/subdrivers/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/sqlite/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/database/drivers/sqlsrv/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/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/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/language/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/Cache/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/libraries/Session/drivers/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 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /uploads/.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/uploads/.png -------------------------------------------------------------------------------- /uploads/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/uploads/1.png -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 3c1b170e2d8544b1cf108267b2fe09fb 4 | tags: 645f666f9bcd5a90fca523b33c5a78b7 5 | -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /user_guide/_static/images/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/images/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akshat4112/SchoolErp/63412334ab28f8de40520ae09e64eaab35df4d87/user_guide/objects.inv --------------------------------------------------------------------------------