├── 404Error.php ├── AdminController.php ├── AdminManager.php ├── AppointmentController.php ├── AppointmentManager.php ├── ClientController.php ├── ClientManager.php ├── DBManager.php ├── EmployeeController.php ├── EmployeeManager.php ├── EvaluateDaysController.php ├── EvaluateDaysManager.php ├── ForgotPasswordController.php ├── ForgotPasswordManager.php ├── GSTController.php ├── GSTManager.php ├── InvoiceController.php ├── InvoiceManager.php ├── LoaderController.php ├── LoaderManager.php ├── PayrollController.php ├── PayrollManager.php ├── README.md ├── ToDo ├── Validate.php ├── adminHome.php ├── bootstrap ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── changePasswordForm.php ├── clientNameList.php ├── companyProfile.php ├── composer.json ├── composer.lock ├── createClient.php ├── createEmployee.php ├── createInvoice.php ├── css ├── bootstrap-formhelpers.min.css ├── custom.css └── passwordStrength.css ├── currentGST.php ├── db └── ems.sql ├── dbconnect.php ├── descriptionOfReceivedServicesList.php ├── descriptionOfServicesList.php ├── dist ├── css │ ├── AdminLTE.css │ ├── AdminLTE.min.css │ └── skins │ │ ├── _all-skins.css │ │ ├── _all-skins.min.css │ │ ├── skin-black-light.css │ │ ├── skin-black-light.min.css │ │ ├── skin-black.css │ │ ├── skin-black.min.css │ │ ├── skin-blue-light.css │ │ ├── skin-blue-light.min.css │ │ ├── skin-blue.css │ │ ├── skin-blue.min.css │ │ ├── skin-green-light.css │ │ ├── skin-green-light.min.css │ │ ├── skin-green.css │ │ ├── skin-green.min.css │ │ ├── skin-purple-light.css │ │ ├── skin-purple-light.min.css │ │ ├── skin-purple.css │ │ ├── skin-purple.min.css │ │ ├── skin-red-light.css │ │ ├── skin-red-light.min.css │ │ ├── skin-red.css │ │ ├── skin-red.min.css │ │ ├── skin-yellow-light.css │ │ ├── skin-yellow-light.min.css │ │ ├── skin-yellow.css │ │ └── skin-yellow.min.css ├── img │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ ├── default-50x50.gif │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ └── user8-128x128.jpg └── js │ ├── app.js │ ├── app.min.js │ ├── demo.js │ └── pages │ ├── dashboard.js │ └── dashboard2.js ├── editClient.php ├── editCreatedInvoice.php ├── editEmployee.php ├── edit_receive_invoice.php ├── emails ├── forgotPasswordEmailMessage.php ├── invoiceEmailToClient.php └── paysilipEmailToEmployee.php ├── employee ├── changePasswordForm.php ├── editProfile.php ├── employeeTermsConditions.php ├── error_log ├── home.php ├── include │ ├── footer.php │ └── header.php ├── logout.php ├── payroll.php ├── permanentAppointment.php ├── probationerAppointment.php └── profile.php ├── employeeLeaveHoliday.php ├── employeeTermsConditions.php ├── experienceCertificate.php ├── forgotPassword.php ├── functionMakeHtaccessDynamic.php ├── function_no_to_words.php ├── generateExperienceCertificate.php ├── generateGST.php ├── generateGSTXL.php ├── generateInvoice.php ├── generatePayrollPdf.php ├── generatePermanentAppointment.php ├── generatePrabationerAppointment.php ├── images ├── defaultuser.png ├── logo.png └── logo1.png ├── include ├── footer.php ├── header.php ├── notificationBell.php ├── rssfeeds.php ├── scrap.php └── simple_html_dom.php ├── index.php ├── js ├── bootstrap-formhelpers-countries.en_US.js ├── bootstrap-formhelpers-countries.js ├── custom.js ├── formValidate.js ├── jquery-2.2.3.min.js ├── jquery-ui.min.js ├── jquery.min.js ├── jquery.validate.js ├── passwordStrength.js └── printThis.js ├── logout.php ├── namelist.php ├── notifications.php ├── payroll.php ├── permanentAppointment.php ├── phpMailer ├── composer.json ├── composer.lock └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ └── phpmailer │ └── phpmailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sr_latn.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── Exception.php │ ├── OAuth.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── plugins ├── Ionicons │ ├── css │ │ └── ionicons.min.css │ └── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff ├── datatables │ ├── dataTables.bootstrap.css │ ├── dataTables.bootstrap.js │ ├── dataTables.bootstrap.min.js │ ├── extensions │ │ ├── AutoFill │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ └── dataTables.autoFill.min.css │ │ │ ├── examples │ │ │ │ ├── columns.html │ │ │ │ ├── complete-callback.html │ │ │ │ ├── fill-both.html │ │ │ │ ├── fill-horizontal.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── simple.html │ │ │ │ └── step-callback.html │ │ │ ├── images │ │ │ │ └── filler.png │ │ │ └── js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ ├── ColReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ └── dataTables.colReorder.min.css │ │ │ ├── examples │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── new_init.html │ │ │ │ ├── predefined.html │ │ │ │ ├── realtime.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── simple.html │ │ │ │ └── state_save.html │ │ │ ├── images │ │ │ │ └── insert.png │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── ColVis │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colVis.css │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ ├── examples │ │ │ │ ├── button_order.html │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── group_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── new_init.html │ │ │ │ ├── restore.html │ │ │ │ ├── simple.html │ │ │ │ ├── text.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ └── js │ │ │ │ ├── dataTables.colVis.js │ │ │ │ └── dataTables.colVis.min.js │ │ ├── FixedColumns │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ ├── examples │ │ │ │ ├── bootstrap.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── css_size.html │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── right_column.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── simple.html │ │ │ │ ├── size_fixed.html │ │ │ │ ├── size_fluid.html │ │ │ │ └── two_columns.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ ├── examples │ │ │ │ ├── header_footer.html │ │ │ │ ├── index.html │ │ │ │ ├── simple.html │ │ │ │ ├── top_left_right.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── KeyTable │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ └── dataTables.keyTable.min.css │ │ │ ├── examples │ │ │ │ ├── events.html │ │ │ │ ├── html.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ └── simple.html │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ └── dataTables.keyTable.min.js │ │ ├── Responsive │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.responsive.css │ │ │ │ └── dataTables.responsive.scss │ │ │ ├── examples │ │ │ │ ├── child-rows │ │ │ │ │ ├── column-control.html │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── right-column.html │ │ │ │ │ └── whole-row-control.html │ │ │ │ ├── display-control │ │ │ │ │ ├── auto.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init-classes.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── className.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new.html │ │ │ │ │ └── option.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── compact.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── scrolling.html │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ └── dataTables.responsive.min.js │ │ ├── Scroller │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.scroller.css │ │ │ │ └── dataTables.scroller.min.css │ │ │ ├── examples │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── data │ │ │ │ │ ├── 2500.txt │ │ │ │ │ └── ssp.php │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── server-side_processing.html │ │ │ │ ├── simple.html │ │ │ │ └── state_saving.html │ │ │ ├── images │ │ │ │ └── loading-background.png │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ └── dataTables.scroller.min.js │ │ └── TableTools │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ ├── dataTables.tableTools.css │ │ │ └── dataTables.tableTools.min.css │ │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── alter_buttons.html │ │ │ ├── bootstrap.html │ │ │ ├── button_text.html │ │ │ ├── collection.html │ │ │ ├── defaults.html │ │ │ ├── index.html │ │ │ ├── jqueryui.html │ │ │ ├── multi_instance.html │ │ │ ├── multiple_tables.html │ │ │ ├── new_init.html │ │ │ ├── pdf_message.html │ │ │ ├── plug-in.html │ │ │ ├── select_column.html │ │ │ ├── select_multi.html │ │ │ ├── select_os.html │ │ │ ├── select_single.html │ │ │ ├── simple.html │ │ │ └── swf_path.html │ │ │ ├── images │ │ │ ├── collection.png │ │ │ ├── collection_hover.png │ │ │ ├── copy.png │ │ │ ├── copy_hover.png │ │ │ ├── csv.png │ │ │ ├── csv_hover.png │ │ │ ├── pdf.png │ │ │ ├── pdf_hover.png │ │ │ ├── print.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── collection.psd │ │ │ │ ├── copy document.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── printer.psd │ │ │ ├── xls.png │ │ │ └── xls_hover.png │ │ │ ├── js │ │ │ ├── dataTables.tableTools.js │ │ │ └── dataTables.tableTools.min.js │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── jquery.dataTables.css │ ├── jquery.dataTables.js │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ └── jquery.dataTables_themeroller.css ├── datepicker │ ├── bootstrap-datepicker.js │ ├── datepicker3.css │ └── locales │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js ├── dropify │ ├── css │ │ ├── demo.css │ │ ├── dropify.css │ │ └── dropify.min.css │ ├── fonts │ │ ├── dropify.eot │ │ ├── dropify.svg │ │ ├── dropify.ttf │ │ └── dropify.woff │ └── js │ │ ├── dropify.js │ │ └── dropify.min.js ├── font-awesome │ ├── css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── moment │ ├── .bower.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── bower.json │ ├── locale │ │ ├── af.js │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bo.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cv.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-at.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en-ie.js │ │ ├── en-nz.js │ │ ├── eo.js │ │ ├── es-do.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr-ch.js │ │ ├── fr.js │ │ ├── fy.js │ │ ├── gd.js │ │ ├── gl.js │ │ ├── gom-latn.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy-am.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── jv.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── ky.js │ │ ├── lb.js │ │ ├── lo.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── me.js │ │ ├── mi.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mr.js │ │ ├── ms-my.js │ │ ├── ms.js │ │ ├── my.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl-be.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── pa-in.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sd.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cyrl.js │ │ ├── sr.js │ │ ├── ss.js │ │ ├── sv.js │ │ ├── sw.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── tet.js │ │ ├── th.js │ │ ├── tl-ph.js │ │ ├── tlh.js │ │ ├── tr.js │ │ ├── tzl.js │ │ ├── tzm-latn.js │ │ ├── tzm.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── uz-latn.js │ │ ├── uz.js │ │ ├── vi.js │ │ ├── x-pseudo.js │ │ ├── yo.js │ │ ├── zh-cn.js │ │ ├── zh-hk.js │ │ └── zh-tw.js │ ├── min │ │ ├── locales.js │ │ ├── locales.min.js │ │ ├── moment-with-locales.js │ │ ├── moment-with-locales.min.js │ │ ├── moment.min.js │ │ └── tests.js │ ├── moment.d.ts │ ├── moment.js │ ├── src │ │ ├── lib │ │ │ ├── create │ │ │ │ ├── check-overflow.js │ │ │ │ ├── date-from-array.js │ │ │ │ ├── from-anything.js │ │ │ │ ├── from-array.js │ │ │ │ ├── from-object.js │ │ │ │ ├── from-string-and-array.js │ │ │ │ ├── from-string-and-format.js │ │ │ │ ├── from-string.js │ │ │ │ ├── local.js │ │ │ │ ├── parsing-flags.js │ │ │ │ ├── utc.js │ │ │ │ └── valid.js │ │ │ ├── duration │ │ │ │ ├── abs.js │ │ │ │ ├── add-subtract.js │ │ │ │ ├── as.js │ │ │ │ ├── bubble.js │ │ │ │ ├── constructor.js │ │ │ │ ├── create.js │ │ │ │ ├── duration.js │ │ │ │ ├── get.js │ │ │ │ ├── humanize.js │ │ │ │ ├── iso-string.js │ │ │ │ ├── prototype.js │ │ │ │ └── valid.js │ │ │ ├── format │ │ │ │ └── format.js │ │ │ ├── locale │ │ │ │ ├── base-config.js │ │ │ │ ├── calendar.js │ │ │ │ ├── constructor.js │ │ │ │ ├── en.js │ │ │ │ ├── formats.js │ │ │ │ ├── invalid.js │ │ │ │ ├── lists.js │ │ │ │ ├── locale.js │ │ │ │ ├── locales.js │ │ │ │ ├── ordinal.js │ │ │ │ ├── pre-post-format.js │ │ │ │ ├── prototype.js │ │ │ │ ├── relative.js │ │ │ │ └── set.js │ │ │ ├── moment │ │ │ │ ├── add-subtract.js │ │ │ │ ├── calendar.js │ │ │ │ ├── clone.js │ │ │ │ ├── compare.js │ │ │ │ ├── constructor.js │ │ │ │ ├── creation-data.js │ │ │ │ ├── diff.js │ │ │ │ ├── format.js │ │ │ │ ├── from.js │ │ │ │ ├── get-set.js │ │ │ │ ├── locale.js │ │ │ │ ├── min-max.js │ │ │ │ ├── moment.js │ │ │ │ ├── now.js │ │ │ │ ├── prototype.js │ │ │ │ ├── start-end-of.js │ │ │ │ ├── to-type.js │ │ │ │ ├── to.js │ │ │ │ └── valid.js │ │ │ ├── parse │ │ │ │ ├── regex.js │ │ │ │ └── token.js │ │ │ ├── units │ │ │ │ ├── aliases.js │ │ │ │ ├── constants.js │ │ │ │ ├── day-of-month.js │ │ │ │ ├── day-of-week.js │ │ │ │ ├── day-of-year.js │ │ │ │ ├── hour.js │ │ │ │ ├── millisecond.js │ │ │ │ ├── minute.js │ │ │ │ ├── month.js │ │ │ │ ├── offset.js │ │ │ │ ├── priorities.js │ │ │ │ ├── quarter.js │ │ │ │ ├── second.js │ │ │ │ ├── timestamp.js │ │ │ │ ├── timezone.js │ │ │ │ ├── units.js │ │ │ │ ├── week-calendar-utils.js │ │ │ │ ├── week-year.js │ │ │ │ ├── week.js │ │ │ │ └── year.js │ │ │ └── utils │ │ │ │ ├── abs-ceil.js │ │ │ │ ├── abs-floor.js │ │ │ │ ├── abs-round.js │ │ │ │ ├── compare-arrays.js │ │ │ │ ├── defaults.js │ │ │ │ ├── deprecate.js │ │ │ │ ├── extend.js │ │ │ │ ├── has-own-prop.js │ │ │ │ ├── hooks.js │ │ │ │ ├── index-of.js │ │ │ │ ├── is-array.js │ │ │ │ ├── is-date.js │ │ │ │ ├── is-function.js │ │ │ │ ├── is-number.js │ │ │ │ ├── is-object-empty.js │ │ │ │ ├── is-object.js │ │ │ │ ├── is-undefined.js │ │ │ │ ├── keys.js │ │ │ │ ├── map.js │ │ │ │ ├── some.js │ │ │ │ ├── to-int.js │ │ │ │ └── zero-fill.js │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-latn.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ └── zh-tw.js │ │ └── moment.js │ └── templates │ │ ├── default.js │ │ ├── locale-header.js │ │ └── test-header.js ├── sweetalert │ ├── sweetalert.css │ └── sweetalert.min.js └── timepicker │ ├── bootstrap-timepicker.css │ ├── bootstrap-timepicker.js │ ├── bootstrap-timepicker.min.css │ └── bootstrap-timepicker.min.js ├── previewInvoice.php ├── probationerAppointment.php ├── receiveInvoice.php ├── resetPassword.php ├── rssfeeds.php ├── sacReceivedInvoiceList.php ├── searchGST.php ├── searchPayroll.php ├── sellerNameList.php ├── settings ├── config.php └── indian_bankname_list.php ├── setup.php ├── tinymceUploadImage.php ├── uploads ├── GST │ └── .gitkeep ├── appointment_pdf │ ├── permanent │ │ └── .gitkeep │ └── probationer │ │ └── .gitkeep ├── avatar04.png ├── avatar5.png ├── client_image │ └── defaultuser.png ├── company_profile_images │ ├── defaultuser.png │ ├── logo-black.png │ └── logo-white.png ├── defaultuser.png ├── employee │ └── images │ │ └── defaultuser.png ├── experience_certificate_pdf │ └── .gitkeep ├── invoices │ ├── createdInvoice │ │ └── .gitkeep │ └── receivedInvoice │ │ └── .gitkeep ├── letterLogo │ └── .gitkeep ├── payroll_pdf │ └── .gitkeep └── termsAndConditions_pdf │ └── EMPLOYEES-AGREMENT-TOMATO.pdf ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── doctrine │ ├── annotations │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Annotations │ │ │ │ ├── Annotation.php │ │ │ │ ├── Annotation │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attributes.php │ │ │ │ ├── Enum.php │ │ │ │ ├── IgnoreAnnotation.php │ │ │ │ ├── Required.php │ │ │ │ └── Target.php │ │ │ │ ├── AnnotationException.php │ │ │ │ ├── AnnotationReader.php │ │ │ │ ├── AnnotationRegistry.php │ │ │ │ ├── CachedReader.php │ │ │ │ ├── DocLexer.php │ │ │ │ ├── DocParser.php │ │ │ │ ├── FileCacheReader.php │ │ │ │ ├── IndexedReader.php │ │ │ │ ├── PhpParser.php │ │ │ │ ├── Reader.php │ │ │ │ ├── SimpleAnnotationReader.php │ │ │ │ └── TokenParser.php │ │ └── phpstan.neon │ ├── cache │ │ ├── .coveralls.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── build.properties │ │ ├── build.xml │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Cache │ │ │ │ ├── ApcCache.php │ │ │ │ ├── ApcuCache.php │ │ │ │ ├── ArrayCache.php │ │ │ │ ├── Cache.php │ │ │ │ ├── CacheProvider.php │ │ │ │ ├── ChainCache.php │ │ │ │ ├── ClearableCache.php │ │ │ │ ├── CouchbaseCache.php │ │ │ │ ├── FileCache.php │ │ │ │ ├── FilesystemCache.php │ │ │ │ ├── FlushableCache.php │ │ │ │ ├── MemcacheCache.php │ │ │ │ ├── MemcachedCache.php │ │ │ │ ├── MongoDBCache.php │ │ │ │ ├── MultiGetCache.php │ │ │ │ ├── MultiPutCache.php │ │ │ │ ├── PhpFileCache.php │ │ │ │ ├── PredisCache.php │ │ │ │ ├── RedisCache.php │ │ │ │ ├── RiakCache.php │ │ │ │ ├── SQLite3Cache.php │ │ │ │ ├── Version.php │ │ │ │ ├── VoidCache.php │ │ │ │ ├── WinCacheCache.php │ │ │ │ ├── XcacheCache.php │ │ │ │ └── ZendDataCache.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ │ ├── Doctrine │ │ │ └── Tests │ │ │ │ ├── Common │ │ │ │ └── Cache │ │ │ │ │ ├── ApcCacheTest.php │ │ │ │ │ ├── ApcuCacheTest.php │ │ │ │ │ ├── ArrayCacheTest.php │ │ │ │ │ ├── BaseFileCacheTest.php │ │ │ │ │ ├── CacheProviderTest.php │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ ├── ChainCacheTest.php │ │ │ │ │ ├── CouchbaseCacheTest.php │ │ │ │ │ ├── FileCacheTest.php │ │ │ │ │ ├── FilesystemCacheTest.php │ │ │ │ │ ├── MemcacheCacheTest.php │ │ │ │ │ ├── MemcachedCacheTest.php │ │ │ │ │ ├── MongoDBCacheTest.php │ │ │ │ │ ├── PhpFileCacheTest.php │ │ │ │ │ ├── PredisCacheTest.php │ │ │ │ │ ├── RedisCacheTest.php │ │ │ │ │ ├── RiakCacheTest.php │ │ │ │ │ ├── SQLite3CacheTest.php │ │ │ │ │ ├── VoidCacheTest.php │ │ │ │ │ ├── WinCacheCacheTest.php │ │ │ │ │ ├── XcacheCacheTest.php │ │ │ │ │ └── ZendDataCacheTest.php │ │ │ │ └── DoctrineTestCase.php │ │ │ └── travis │ │ │ ├── php.ini │ │ │ └── phpunit.travis.xml │ ├── collections │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Collections │ │ │ ├── AbstractLazyCollection.php │ │ │ ├── ArrayCollection.php │ │ │ ├── Collection.php │ │ │ ├── Criteria.php │ │ │ ├── Expr │ │ │ ├── ClosureExpressionVisitor.php │ │ │ ├── Comparison.php │ │ │ ├── CompositeExpression.php │ │ │ ├── Expression.php │ │ │ ├── ExpressionVisitor.php │ │ │ └── Value.php │ │ │ ├── ExpressionBuilder.php │ │ │ └── Selectable.php │ ├── common │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE_TO_2_1 │ │ ├── UPGRADE_TO_2_2 │ │ ├── composer.json │ │ ├── humbug.json.dist │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ ├── ClassLoader.php │ │ │ ├── CommonException.php │ │ │ ├── Comparable.php │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ ├── EventSubscriber.php │ │ │ ├── Lexer.php │ │ │ ├── NotifyPropertyChanged.php │ │ │ ├── Persistence │ │ │ ├── AbstractManagerRegistry.php │ │ │ ├── ConnectionRegistry.php │ │ │ ├── Event │ │ │ │ ├── LifecycleEventArgs.php │ │ │ │ ├── LoadClassMetadataEventArgs.php │ │ │ │ ├── ManagerEventArgs.php │ │ │ │ ├── OnClearEventArgs.php │ │ │ │ └── PreUpdateEventArgs.php │ │ │ ├── ManagerRegistry.php │ │ │ ├── Mapping │ │ │ │ ├── AbstractClassMetadataFactory.php │ │ │ │ ├── ClassMetadata.php │ │ │ │ ├── ClassMetadataFactory.php │ │ │ │ ├── Driver │ │ │ │ │ ├── AnnotationDriver.php │ │ │ │ │ ├── DefaultFileLocator.php │ │ │ │ │ ├── FileDriver.php │ │ │ │ │ ├── FileLocator.php │ │ │ │ │ ├── MappingDriver.php │ │ │ │ │ ├── MappingDriverChain.php │ │ │ │ │ ├── PHPDriver.php │ │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ │ └── SymfonyFileLocator.php │ │ │ │ ├── MappingException.php │ │ │ │ ├── ReflectionService.php │ │ │ │ ├── RuntimeReflectionService.php │ │ │ │ └── StaticReflectionService.php │ │ │ ├── ObjectManager.php │ │ │ ├── ObjectManagerAware.php │ │ │ ├── ObjectManagerDecorator.php │ │ │ ├── ObjectRepository.php │ │ │ ├── PersistentObject.php │ │ │ └── Proxy.php │ │ │ ├── PropertyChangedListener.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxyFactory.php │ │ │ ├── Autoloader.php │ │ │ ├── Exception │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ ├── ProxyException.php │ │ │ │ └── UnexpectedValueException.php │ │ │ ├── Proxy.php │ │ │ ├── ProxyDefinition.php │ │ │ └── ProxyGenerator.php │ │ │ ├── Reflection │ │ │ ├── ClassFinderInterface.php │ │ │ ├── Psr0FindFile.php │ │ │ ├── ReflectionProviderInterface.php │ │ │ ├── RuntimePublicReflectionProperty.php │ │ │ ├── StaticReflectionClass.php │ │ │ ├── StaticReflectionMethod.php │ │ │ ├── StaticReflectionParser.php │ │ │ └── StaticReflectionProperty.php │ │ │ ├── Util │ │ │ ├── ClassUtils.php │ │ │ ├── Debug.php │ │ │ └── Inflector.php │ │ │ └── Version.php │ ├── inflector │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Inflector │ │ │ │ └── Inflector.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ │ └── Doctrine │ │ │ └── Tests │ │ │ ├── Common │ │ │ └── Inflector │ │ │ │ └── InflectorTest.php │ │ │ ├── DoctrineTestCase.php │ │ │ └── TestInit.php │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php ├── phpoffice │ └── phpexcel │ │ ├── .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 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── officelogo.jpg │ │ │ ├── paid.png │ │ │ ├── phpexcel_logo.gif │ │ │ └── termsconditions.jpg │ │ └── runall.php │ │ ├── changelog.txt │ │ ├── composer.json │ │ ├── install.txt │ │ ├── license.md │ │ └── unitTests │ │ ├── Classes │ │ └── PHPExcel │ │ │ ├── AutoloaderTest.php │ │ │ ├── Calculation │ │ │ ├── DateTimeTest.php │ │ │ ├── EngineeringTest.php │ │ │ ├── FinancialTest.php │ │ │ ├── FunctionsTest.php │ │ │ ├── LogicalTest.php │ │ │ ├── LookupRefTest.php │ │ │ ├── MathTrigTest.php │ │ │ └── TextDataTest.php │ │ │ ├── CalculationTest.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinderTest.php │ │ │ ├── DataTypeTest.php │ │ │ ├── DefaultValueBinderTest.php │ │ │ └── HyperlinkTest.php │ │ │ ├── CellTest.php │ │ │ ├── Chart │ │ │ ├── DataSeriesValuesTest.php │ │ │ ├── LayoutTest.php │ │ │ └── LegendTest.php │ │ │ ├── Reader │ │ │ └── XEEValidatorTest.php │ │ │ ├── ReferenceHelperTest.php │ │ │ ├── Shared │ │ │ ├── CodePageTest.php │ │ │ ├── DateTest.php │ │ │ ├── FileTest.php │ │ │ ├── FontTest.php │ │ │ ├── PasswordHasherTest.php │ │ │ ├── StringTest.php │ │ │ └── TimeZoneTest.php │ │ │ ├── Style │ │ │ ├── ColorTest.php │ │ │ └── NumberFormatTest.php │ │ │ └── Worksheet │ │ │ ├── AutoFilter │ │ │ ├── Column │ │ │ │ └── RuleTest.php │ │ │ └── ColumnTest.php │ │ │ ├── AutoFilterTest.php │ │ │ ├── CellCollectionTest.php │ │ │ ├── ColumnCellIteratorTest.php │ │ │ ├── ColumnIteratorTest.php │ │ │ ├── RowCellIteratorTest.php │ │ │ ├── RowIteratorTest.php │ │ │ ├── WorksheetColumnTest.php │ │ │ └── WorksheetRowTest.php │ │ ├── bootstrap.php │ │ ├── custom │ │ ├── Complex.php │ │ └── complexAssert.php │ │ ├── phpunit-cc.xml │ │ ├── phpunit.xml │ │ ├── rawTestData │ │ ├── Calculation │ │ │ ├── DateTime │ │ │ │ ├── DATE.data │ │ │ │ ├── DATEDIF.data │ │ │ │ ├── DATEVALUE.data │ │ │ │ ├── DAY.data │ │ │ │ ├── DAYS360.data │ │ │ │ ├── EDATE.data │ │ │ │ ├── EOMONTH.data │ │ │ │ ├── HOUR.data │ │ │ │ ├── MINUTE.data │ │ │ │ ├── MONTH.data │ │ │ │ ├── NETWORKDAYS.data │ │ │ │ ├── SECOND.data │ │ │ │ ├── TIME.data │ │ │ │ ├── TIMEVALUE.data │ │ │ │ ├── WEEKDAY.data │ │ │ │ ├── WEEKNUM.data │ │ │ │ ├── WORKDAY.data │ │ │ │ ├── YEAR.data │ │ │ │ └── YEARFRAC.data │ │ │ ├── Engineering │ │ │ │ ├── BESSELI.data │ │ │ │ ├── BESSELJ.data │ │ │ │ ├── BESSELK.data │ │ │ │ ├── BESSELY.data │ │ │ │ ├── BIN2DEC.data │ │ │ │ ├── BIN2HEX.data │ │ │ │ ├── BIN2OCT.data │ │ │ │ ├── COMPLEX.data │ │ │ │ ├── CONVERTUOM.data │ │ │ │ ├── DEC2BIN.data │ │ │ │ ├── DEC2HEX.data │ │ │ │ ├── DEC2OCT.data │ │ │ │ ├── DELTA.data │ │ │ │ ├── ERF.data │ │ │ │ ├── ERFC.data │ │ │ │ ├── GESTEP.data │ │ │ │ ├── HEX2BIN.data │ │ │ │ ├── HEX2DEC.data │ │ │ │ ├── HEX2OCT.data │ │ │ │ ├── IMABS.data │ │ │ │ ├── IMAGINARY.data │ │ │ │ ├── IMARGUMENT.data │ │ │ │ ├── IMCONJUGATE.data │ │ │ │ ├── IMCOS.data │ │ │ │ ├── IMDIV.data │ │ │ │ ├── IMEXP.data │ │ │ │ ├── IMLN.data │ │ │ │ ├── IMLOG10.data │ │ │ │ ├── IMLOG2.data │ │ │ │ ├── IMPOWER.data │ │ │ │ ├── IMPRODUCT.data │ │ │ │ ├── IMREAL.data │ │ │ │ ├── IMSIN.data │ │ │ │ ├── IMSQRT.data │ │ │ │ ├── IMSUB.data │ │ │ │ ├── IMSUM.data │ │ │ │ ├── OCT2BIN.data │ │ │ │ ├── OCT2DEC.data │ │ │ │ └── OCT2HEX.data │ │ │ ├── Financial │ │ │ │ ├── ACCRINT.data │ │ │ │ ├── ACCRINTM.data │ │ │ │ ├── AMORDEGRC.data │ │ │ │ ├── AMORLINC.data │ │ │ │ ├── COUPDAYBS.data │ │ │ │ ├── COUPDAYS.data │ │ │ │ ├── COUPDAYSNC.data │ │ │ │ ├── COUPNCD.data │ │ │ │ ├── COUPNUM.data │ │ │ │ ├── COUPPCD.data │ │ │ │ ├── CUMIPMT.data │ │ │ │ ├── CUMPRINC.data │ │ │ │ ├── DB.data │ │ │ │ ├── DDB.data │ │ │ │ ├── DISC.data │ │ │ │ ├── DOLLARDE.data │ │ │ │ ├── DOLLARFR.data │ │ │ │ ├── EFFECT.data │ │ │ │ ├── FV.data │ │ │ │ ├── FVSCHEDULE.data │ │ │ │ ├── INTRATE.data │ │ │ │ ├── IPMT.data │ │ │ │ ├── IRR.data │ │ │ │ ├── ISPMT.data │ │ │ │ ├── MIRR.data │ │ │ │ ├── NOMINAL.data │ │ │ │ ├── NPER.data │ │ │ │ ├── NPV.data │ │ │ │ ├── PRICE.data │ │ │ │ ├── RATE.data │ │ │ │ └── XIRR.data │ │ │ ├── Functions │ │ │ │ ├── ERROR_TYPE.data │ │ │ │ ├── IS_BLANK.data │ │ │ │ ├── IS_ERR.data │ │ │ │ ├── IS_ERROR.data │ │ │ │ ├── IS_EVEN.data │ │ │ │ ├── IS_LOGICAL.data │ │ │ │ ├── IS_NA.data │ │ │ │ ├── IS_NONTEXT.data │ │ │ │ ├── IS_NUMBER.data │ │ │ │ ├── IS_ODD.data │ │ │ │ ├── IS_TEXT.data │ │ │ │ ├── N.data │ │ │ │ └── TYPE.data │ │ │ ├── Logical │ │ │ │ ├── AND.data │ │ │ │ ├── IF.data │ │ │ │ ├── IFERROR.data │ │ │ │ ├── NOT.data │ │ │ │ └── OR.data │ │ │ ├── LookupRef │ │ │ │ ├── HLOOKUP.data │ │ │ │ └── VLOOKUP.data │ │ │ ├── MathTrig │ │ │ │ ├── ATAN2.data │ │ │ │ ├── CEILING.data │ │ │ │ ├── COMBIN.data │ │ │ │ ├── EVEN.data │ │ │ │ ├── FACT.data │ │ │ │ ├── FACTDOUBLE.data │ │ │ │ ├── FLOOR.data │ │ │ │ ├── GCD.data │ │ │ │ ├── INT.data │ │ │ │ ├── LCM.data │ │ │ │ ├── LOG.data │ │ │ │ ├── MDETERM.data │ │ │ │ ├── MINVERSE.data │ │ │ │ ├── MMULT.data │ │ │ │ ├── MOD.data │ │ │ │ ├── MROUND.data │ │ │ │ ├── MULTINOMIAL.data │ │ │ │ ├── ODD.data │ │ │ │ ├── POWER.data │ │ │ │ ├── PRODUCT.data │ │ │ │ ├── QUOTIENT.data │ │ │ │ ├── ROMAN.data │ │ │ │ ├── ROUNDDOWN.data │ │ │ │ ├── ROUNDUP.data │ │ │ │ ├── SERIESSUM.data │ │ │ │ ├── SIGN.data │ │ │ │ ├── SQRTPI.data │ │ │ │ ├── SUMSQ.data │ │ │ │ └── TRUNC.data │ │ │ └── TextData │ │ │ │ ├── CHAR.data │ │ │ │ ├── CLEAN.data │ │ │ │ ├── CODE.data │ │ │ │ ├── CONCATENATE.data │ │ │ │ ├── DOLLAR.data │ │ │ │ ├── FIND.data │ │ │ │ ├── FIXED.data │ │ │ │ ├── LEFT.data │ │ │ │ ├── LEN.data │ │ │ │ ├── LOWER.data │ │ │ │ ├── MID.data │ │ │ │ ├── PROPER.data │ │ │ │ ├── REPLACE.data │ │ │ │ ├── RIGHT.data │ │ │ │ ├── SEARCH.data │ │ │ │ ├── SUBSTITUTE.data │ │ │ │ ├── T.data │ │ │ │ ├── TEXT.data │ │ │ │ ├── TRIM.data │ │ │ │ ├── UPPER.data │ │ │ │ └── VALUE.data │ │ ├── CalculationBinaryComparisonOperation.data │ │ ├── Cell │ │ │ └── DefaultValueBinder.data │ │ ├── CellAbsoluteCoordinate.data │ │ ├── CellAbsoluteReference.data │ │ ├── CellBuildRange.data │ │ ├── CellCoordinates.data │ │ ├── CellExtractAllCellReferencesInRange.data │ │ ├── CellGetRangeBoundaries.data │ │ ├── CellRangeBoundaries.data │ │ ├── CellRangeDimension.data │ │ ├── CellSplitRange.data │ │ ├── ColumnIndex.data │ │ ├── ColumnString.data │ │ ├── Reader │ │ │ ├── XEETestInvalidUTF-16.xml │ │ │ ├── XEETestInvalidUTF-16BE.xml │ │ │ ├── XEETestInvalidUTF-16LE.xml │ │ │ ├── XEETestInvalidUTF-8.xml │ │ │ ├── XEETestValidUTF-16.xml │ │ │ ├── XEETestValidUTF-16BE.xml │ │ │ ├── XEETestValidUTF-16LE.xml │ │ │ └── XEETestValidUTF-8.xml │ │ ├── Shared │ │ │ ├── CentimeterSizeToPixels.data │ │ │ ├── CodePage.data │ │ │ ├── DateTimeExcelToPHP1900.data │ │ │ ├── DateTimeExcelToPHP1900Timezone.data │ │ │ ├── DateTimeExcelToPHP1904.data │ │ │ ├── DateTimeFormatCodes.data │ │ │ ├── DateTimeFormattedPHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1900.data │ │ │ ├── DateTimePHPToExcel1904.data │ │ │ ├── FontSizeToPixels.data │ │ │ ├── InchSizeToPixels.data │ │ │ └── PasswordHashes.data │ │ └── Style │ │ │ ├── ColorChangeBrightness.data │ │ │ ├── ColorGetBlue.data │ │ │ ├── ColorGetGreen.data │ │ │ ├── ColorGetRed.data │ │ │ └── NumberFormat.data │ │ └── testDataFileIterator.php └── ticketpark │ └── htmlphpexcel │ ├── .gitignore │ ├── README.md │ ├── Resources │ └── meta │ │ └── LICENSE │ ├── composer.json │ ├── example │ ├── example.html │ └── example.php │ ├── lib │ └── HtmlPhpExcel │ │ ├── Elements │ │ ├── Base │ │ │ └── BaseElement.php │ │ ├── Cell.php │ │ ├── Document.php │ │ ├── Row.php │ │ └── Table.php │ │ ├── Exception │ │ └── HtmlPhpExcelException.php │ │ ├── HtmlPhpExcel.php │ │ └── Parser │ │ └── Parser.php │ ├── phpunit.xml │ └── tests │ ├── HtmlPhpExcel │ └── Tests │ │ ├── HtmlPhpExcelTest.php │ │ └── Parser │ │ └── ParserTest.php │ └── testfiles │ └── test.html ├── viewClientDetails.php ├── viewClientProjects.php ├── viewClients.php ├── viewEmployeeDetails.php ├── viewEmployees.php ├── viewGST.php ├── viewInvoices.php ├── viewProjects.php └── viewSingleProjectDetails.php /ToDo: -------------------------------------------------------------------------------- 1 | Currently there is no improvement 2 | Updated on 17th feb,2022 3 | Change logo 4 | Credit note 5 | -------------------------------------------------------------------------------- /Validate.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /clientNameList.php: -------------------------------------------------------------------------------- 1 | listClientName($term); 7 | echo json_encode($result); 8 | ?> -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "ticketpark/htmlphpexcel": "^0.4.1" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /dbconnect.php: -------------------------------------------------------------------------------- 1 | conn = mysqli_connect("localhost", "mukesh", "MKUghy49", "mukesh"); 7 | 8 | if (mysqli_connect_errno()) 9 | { 10 | echo "Failed to connect to MySQL: " . mysqli_connect_error(); 11 | } 12 | } 13 | } 14 | 15 | ?> -------------------------------------------------------------------------------- /descriptionOfReceivedServicesList.php: -------------------------------------------------------------------------------- 1 | listDescOfReceivedServices($term); 6 | echo json_encode($result); 7 | ?> -------------------------------------------------------------------------------- /descriptionOfServicesList.php: -------------------------------------------------------------------------------- 1 | listDescOfServices($term); 6 | echo json_encode($result); 7 | ?> -------------------------------------------------------------------------------- /dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar.png -------------------------------------------------------------------------------- /dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar04.png -------------------------------------------------------------------------------- /dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar2.png -------------------------------------------------------------------------------- /dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar3.png -------------------------------------------------------------------------------- /dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/avatar5.png -------------------------------------------------------------------------------- /dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/credit/visa.png -------------------------------------------------------------------------------- /dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/icons.png -------------------------------------------------------------------------------- /dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo1.png -------------------------------------------------------------------------------- /dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo2.png -------------------------------------------------------------------------------- /dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo3.jpg -------------------------------------------------------------------------------- /dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/photo4.jpg -------------------------------------------------------------------------------- /dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /emails/invoiceEmailToClient.php: -------------------------------------------------------------------------------- 1 | '; 10 | $message .= '

Dear '.$client_name.',

'; 11 | $message .= '

Invoice # '.$invoice_id.'.

'; 12 | $message .= '

Invoice Date: '.$invoice_date.'.

'; 13 | $message .= '

Please click the link below to download or view the invoice: '.$invoice_date.'.

'; 14 | $message .='Invoice'; 15 | $message .= '

Thanks
'.$companyInfo['company_name'].'

'; 16 | $message .= ''; 17 | ?> 18 | -------------------------------------------------------------------------------- /employee/logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/defaultuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/images/defaultuser.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/images/logo.png -------------------------------------------------------------------------------- /images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/images/logo1.png -------------------------------------------------------------------------------- /include/scrap.php: -------------------------------------------------------------------------------- 1 | load($result); 23 | 24 | return $result; 25 | 26 | } 27 | 28 | 29 | ?> -------------------------------------------------------------------------------- /js/custom.js: -------------------------------------------------------------------------------- 1 | // fade error message div 2 | $( ".clear-error-msg" ).click(function() { 3 | $( ".error-message" ).fadeOut( "slow" ); 4 | }); -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /namelist.php: -------------------------------------------------------------------------------- 1 | listEmployeesName($term); 6 | echo json_encode($result); 7 | ?> -------------------------------------------------------------------------------- /phpMailer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "phpmailer/phpmailer": "^6.5" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /phpMailer/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /phpMailer/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpmailer/phpmailer/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /phpMailer/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.5.3 -------------------------------------------------------------------------------- /plugins/Ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/Ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /plugins/Ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/Ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /plugins/Ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/Ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/ColVis/css/dataTables.colvis.jqueryui.css: -------------------------------------------------------------------------------- 1 | 2 | button.ColVis_Button, 3 | ul.ColVis_collection li { 4 | padding: 0.5em; 5 | } 6 | 7 | ul.ColVis_collection { 8 | margin: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | z-index: 2002; 12 | } 13 | 14 | ul.ColVis_collection li { 15 | clear: both; 16 | display: block; 17 | text-align: left; 18 | margin: -1px 0 0 0; 19 | } 20 | 21 | ul.ColVis_collection li span { 22 | display: inline-block; 23 | padding-left: 0.5em; 24 | cursor: pointer; 25 | } 26 | 27 | div.ColVis_collectionBackground { 28 | position: fixed; 29 | top: 0; 30 | left: 0; 31 | height: 100%; 32 | width: 100%; 33 | background-color: black; 34 | z-index: 1100; 35 | } 36 | 37 | 38 | div.ColVis_catcher { 39 | position: absolute; 40 | z-index: 1101; 41 | } -------------------------------------------------------------------------------- /plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | -------------------------------------------------------------------------------- /plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation for bootstrap-datepicker 3 | * Mohammed Alshehri 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ar'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 11 | monthsShort: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation for bootstrap-datepicker 3 | * Matěj Koubík 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['cs'] = { 8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", "Neděle"], 9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So", "Ne"], 11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['da'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "I Dag", 13 | clear: "Nulstil" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * German translation for bootstrap-datepicker 3 | * Sam Zurcher 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['de'] = { 7 | days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag"], 8 | daysShort: ["Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam", "Son"], 9 | daysMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa", "So"], 10 | months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 11 | monthsShort: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 12 | today: "Heute", 13 | clear: "Löschen", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation for bootstrap-datepicker 3 | * Mostafa Rokooie 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fa'] = { 7 | days: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه", "یک‌شنبه"], 8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"], 9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"], 10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"], 11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"], 12 | today: "امروز", 13 | clear: "پاک کن", 14 | weekStart: 1, 15 | format: "yyyy/mm/dd" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Finnish translation for bootstrap-datepicker 3 | * Jaakko Salonen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fi'] = { 7 | days: ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai", "sunnuntai"], 8 | daysShort: ["sun", "maa", "tii", "kes", "tor", "per", "lau", "sun"], 9 | daysMin: ["su", "ma", "ti", "ke", "to", "pe", "la", "su"], 10 | months: ["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kesäkuu", "heinäkuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"], 11 | monthsShort: ["tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mar", "jou"], 12 | today: "tänään", 13 | weekStart: 1, 14 | format: "d.m.yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French translation for bootstrap-datepicker 3 | * Nico Mollet 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fr'] = { 7 | days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"], 8 | daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"], 9 | daysMin: ["D", "L", "Ma", "Me", "J", "V", "S", "D"], 10 | months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 11 | monthsShort: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Déc"], 12 | today: "Aujourd'hui", 13 | clear: "Effacer", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hungarian translation for bootstrap-datepicker 3 | * Sotus László 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['hu'] = { 7 | days: ["Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat", "Vasárnap"], 8 | daysShort: ["Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo", "Vas"], 9 | daysMin: ["Va", "Hé", "Ke", "Sz", "Cs", "Pé", "Sz", "Va"], 10 | months: ["Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Sze", "Okt", "Nov", "Dec"], 12 | today: "Ma", 13 | weekStart: 1, 14 | format: "yyyy.mm.dd" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['id'] = { 7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"], 8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"], 9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"], 10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], 12 | today: "Hari Ini", 13 | clear: "Kosongkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['is'] = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian translation for bootstrap-datepicker 3 | * Enrico Rubboli 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['it'] = { 7 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato", "Domenica"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa", "Do"], 10 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 12 | today: "Oggi", 13 | clear: "Cancella", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kk'] = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі", "Жексенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен", "Жек"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн", "Жк"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мамыр", "Мау", "Шлд", "Тмз", "Қыр", "Қзн", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.lt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Lithuanian translation for bootstrap-datepicker 3 | * Šarūnas Gliebus 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lt'] = { 8 | days: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis", "Sekmadienis"], 9 | daysShort: ["S", "Pr", "A", "T", "K", "Pn", "Š", "S"], 10 | daysMin: ["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Št", "Sk"], 11 | months: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"], 12 | monthsShort: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru"], 13 | today: "Šiandien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Latvian translation for bootstrap-datepicker 3 | * Artis Avotins 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lv'] = { 8 | days: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena", "Svētdiena"], 9 | daysShort: ["Sv", "P", "O", "T", "C", "Pk", "S", "Sv"], 10 | daysMin: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "Se", "Sv"], 11 | months: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Šodien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Macedonian translation for bootstrap-datepicker 3 | * Marko Aleksic 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['mk'] = { 7 | days: ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота", "Недела"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сре", "Чет", "Пет", "Саб", "Нед"], 9 | daysMin: ["Не", "По", "Вт", "Ср", "Че", "Пе", "Са", "Не"], 10 | months: ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Јан", "Фев", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "Денес", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian (bokmål) translation for bootstrap-datepicker 3 | * Fredrik Sundmyhr 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nb'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "I Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Belgium-Dutch translation for bootstrap-datepicker 3 | * Julien Poulin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl-BE'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag", 13 | clear: "Leegmaken", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Polish translation for bootstrap-datepicker 3 | * Robert 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pl'] = { 7 | days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela"], 8 | daysShort: ["Nie", "Pn", "Wt", "Śr", "Czw", "Pt", "So", "Nie"], 9 | daysMin: ["N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N"], 10 | months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], 11 | monthsShort: ["Sty", "Lu", "Mar", "Kw", "Maj", "Cze", "Lip", "Sie", "Wrz", "Pa", "Lis", "Gru"], 12 | today: "Dzisiaj", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | clear: "Limpar" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Portuguese translation for bootstrap-datepicker 3 | * Original code: Cauan Cabral 4 | * Tiago Melo 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['pt'] = { 8 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 9 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 10 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 11 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 12 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 13 | today: "Hoje", 14 | clear: "Limpar" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation for bootstrap-datepicker 3 | * Cristian Vasile 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ro'] = { 7 | days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă", "Duminică"], 8 | daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm", "Dum"], 9 | daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ", "Du"], 10 | months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 11 | monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Astăzi", 13 | clear: "Șterge", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ru'] = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovak translation for bootstrap-datepicker 3 | * Marek Lichtner 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates["sk"] = { 8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota", "Nedeľa"], 9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So", "Ne"], 11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sq'] = { 7 | days: ["E Diel", "E Hënë", "E martē", "E mërkurë", "E Enjte", "E Premte", "E Shtunë", "E Diel"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu", "Die"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht", "Di"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | today: "Sot" 13 | }; 14 | }(jQuery)); 15 | 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation for bootstrap-datepicker 3 | * Patrik Ragnarsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sv'] = { 7 | days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag", "Söndag"], 8 | daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör", "Sön"], 9 | daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö", "Sö"], 10 | months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Idag", 13 | format: "yyyy-mm-dd", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation for bootstrap-datepicker 3 | * Serkan Algur 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['tr'] = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.ua.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ua'] = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятница", "Субота", "Неділя"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation for bootstrap-datepicker 3 | * An Vo 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['vi'] = { 7 | days: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy", "Chủ nhật"], 8 | daysShort: ["CN", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7", "CN"], 9 | daysMin: ["CN", "T2", "T3", "T4", "T5", "T6", "T7", "CN"], 10 | months: ["Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12"], 11 | monthsShort: ["Th1", "Th2", "Th3", "Th4", "Th5", "Th6", "Th7", "Th8", "Th9", "Th10", "Th11", "Th12"], 12 | today: "Hôm nay", 13 | clear: "Xóa", 14 | format: "dd/mm/yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Traditional Chinese translation for bootstrap-datepicker 3 | * Rung-Sheng Jang 4 | * FrankWu Fix more appropriate use of Traditional Chinese habit 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['zh-TW'] = { 8 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 9 | daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六", "週日"], 10 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 11 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 13 | today: "今天", 14 | format: "yyyy年mm月dd日", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /plugins/dropify/fonts/dropify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/dropify/fonts/dropify.eot -------------------------------------------------------------------------------- /plugins/dropify/fonts/dropify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/dropify/fonts/dropify.ttf -------------------------------------------------------------------------------- /plugins/dropify/fonts/dropify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/dropify/fonts/dropify.woff -------------------------------------------------------------------------------- /plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /plugins/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/plugins/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /plugins/moment/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "moment", 3 | "license": "MIT", 4 | "main": "moment.js", 5 | "ignore": [ 6 | "**/.*", 7 | "benchmarks", 8 | "bower_components", 9 | "meteor", 10 | "node_modules", 11 | "scripts", 12 | "tasks", 13 | "test", 14 | "component.json", 15 | "composer.json", 16 | "CONTRIBUTING.md", 17 | "ender.js", 18 | "Gruntfile.js", 19 | "Moment.js.nuspec", 20 | "package.js", 21 | "package.json", 22 | "ISSUE_TEMPLATE.md", 23 | "typing-tests" 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/create/date-from-array.js: -------------------------------------------------------------------------------- 1 | export function createDate (y, m, d, h, M, s, ms) { 2 | // can't just apply() to create a date: 3 | // https://stackoverflow.com/q/181348 4 | var date = new Date(y, m, d, h, M, s, ms); 5 | 6 | // the date constructor remaps years 0-99 to 1900-1999 7 | if (y < 100 && y >= 0 && isFinite(date.getFullYear())) { 8 | date.setFullYear(y); 9 | } 10 | return date; 11 | } 12 | 13 | export function createUTCDate (y) { 14 | var date = new Date(Date.UTC.apply(null, arguments)); 15 | 16 | // the Date.UTC function remaps years 0-99 to 1900-1999 17 | if (y < 100 && y >= 0 && isFinite(date.getUTCFullYear())) { 18 | date.setUTCFullYear(y); 19 | } 20 | return date; 21 | } 22 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/create/from-object.js: -------------------------------------------------------------------------------- 1 | import { normalizeObjectUnits } from '../units/aliases'; 2 | import { configFromArray } from './from-array'; 3 | import map from '../utils/map'; 4 | 5 | export function configFromObject(config) { 6 | if (config._d) { 7 | return; 8 | } 9 | 10 | var i = normalizeObjectUnits(config._i); 11 | config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) { 12 | return obj && parseInt(obj, 10); 13 | }); 14 | 15 | configFromArray(config); 16 | } 17 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/create/local.js: -------------------------------------------------------------------------------- 1 | import { createLocalOrUTC } from './from-anything'; 2 | 3 | export function createLocal (input, format, locale, strict) { 4 | return createLocalOrUTC(input, format, locale, strict, false); 5 | } 6 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/create/parsing-flags.js: -------------------------------------------------------------------------------- 1 | function defaultParsingFlags() { 2 | // We need to deep clone this object. 3 | return { 4 | empty : false, 5 | unusedTokens : [], 6 | unusedInput : [], 7 | overflow : -2, 8 | charsLeftOver : 0, 9 | nullInput : false, 10 | invalidMonth : null, 11 | invalidFormat : false, 12 | userInvalidated : false, 13 | iso : false, 14 | parsedDateParts : [], 15 | meridiem : null, 16 | rfc2822 : false, 17 | weekdayMismatch : false 18 | }; 19 | } 20 | 21 | export default function getParsingFlags(m) { 22 | if (m._pf == null) { 23 | m._pf = defaultParsingFlags(); 24 | } 25 | return m._pf; 26 | } 27 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/create/utc.js: -------------------------------------------------------------------------------- 1 | import { createLocalOrUTC } from './from-anything'; 2 | 3 | export function createUTC (input, format, locale, strict) { 4 | return createLocalOrUTC(input, format, locale, strict, true).utc(); 5 | } 6 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/duration/abs.js: -------------------------------------------------------------------------------- 1 | var mathAbs = Math.abs; 2 | 3 | export function abs () { 4 | var data = this._data; 5 | 6 | this._milliseconds = mathAbs(this._milliseconds); 7 | this._days = mathAbs(this._days); 8 | this._months = mathAbs(this._months); 9 | 10 | data.milliseconds = mathAbs(data.milliseconds); 11 | data.seconds = mathAbs(data.seconds); 12 | data.minutes = mathAbs(data.minutes); 13 | data.hours = mathAbs(data.hours); 14 | data.months = mathAbs(data.months); 15 | data.years = mathAbs(data.years); 16 | 17 | return this; 18 | } 19 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/duration/add-subtract.js: -------------------------------------------------------------------------------- 1 | import { createDuration } from './create'; 2 | 3 | function addSubtract (duration, input, value, direction) { 4 | var other = createDuration(input, value); 5 | 6 | duration._milliseconds += direction * other._milliseconds; 7 | duration._days += direction * other._days; 8 | duration._months += direction * other._months; 9 | 10 | return duration._bubble(); 11 | } 12 | 13 | // supports only 2.0-style add(1, 's') or add(duration) 14 | export function add (input, value) { 15 | return addSubtract(this, input, value, 1); 16 | } 17 | 18 | // supports only 2.0-style subtract(1, 's') or subtract(duration) 19 | export function subtract (input, value) { 20 | return addSubtract(this, input, value, -1); 21 | } 22 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/duration/duration.js: -------------------------------------------------------------------------------- 1 | // Side effect imports 2 | import './prototype'; 3 | 4 | import { createDuration } from './create'; 5 | import { isDuration } from './constructor'; 6 | import { 7 | getSetRelativeTimeRounding, 8 | getSetRelativeTimeThreshold 9 | } from './humanize'; 10 | 11 | export { 12 | createDuration, 13 | isDuration, 14 | getSetRelativeTimeRounding, 15 | getSetRelativeTimeThreshold 16 | }; 17 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/locale/calendar.js: -------------------------------------------------------------------------------- 1 | export var defaultCalendar = { 2 | sameDay : '[Today at] LT', 3 | nextDay : '[Tomorrow at] LT', 4 | nextWeek : 'dddd [at] LT', 5 | lastDay : '[Yesterday at] LT', 6 | lastWeek : '[Last] dddd [at] LT', 7 | sameElse : 'L' 8 | }; 9 | 10 | import isFunction from '../utils/is-function'; 11 | 12 | export function calendar (key, mom, now) { 13 | var output = this._calendar[key] || this._calendar['sameElse']; 14 | return isFunction(output) ? output.call(mom, now) : output; 15 | } 16 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/locale/constructor.js: -------------------------------------------------------------------------------- 1 | export function Locale(config) { 2 | if (config != null) { 3 | this.set(config); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/locale/en.js: -------------------------------------------------------------------------------- 1 | import './prototype'; 2 | import { getSetGlobalLocale } from './locales'; 3 | import toInt from '../utils/to-int'; 4 | 5 | getSetGlobalLocale('en', { 6 | dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, 7 | ordinal : function (number) { 8 | var b = number % 10, 9 | output = (toInt(number % 100 / 10) === 1) ? 'th' : 10 | (b === 1) ? 'st' : 11 | (b === 2) ? 'nd' : 12 | (b === 3) ? 'rd' : 'th'; 13 | return number + output; 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/locale/formats.js: -------------------------------------------------------------------------------- 1 | export var defaultLongDateFormat = { 2 | LTS : 'h:mm:ss A', 3 | LT : 'h:mm A', 4 | L : 'MM/DD/YYYY', 5 | LL : 'MMMM D, YYYY', 6 | LLL : 'MMMM D, YYYY h:mm A', 7 | LLLL : 'dddd, MMMM D, YYYY h:mm A' 8 | }; 9 | 10 | export function longDateFormat (key) { 11 | var format = this._longDateFormat[key], 12 | formatUpper = this._longDateFormat[key.toUpperCase()]; 13 | 14 | if (format || !formatUpper) { 15 | return format; 16 | } 17 | 18 | this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) { 19 | return val.slice(1); 20 | }); 21 | 22 | return this._longDateFormat[key]; 23 | } 24 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/locale/invalid.js: -------------------------------------------------------------------------------- 1 | export var defaultInvalidDate = 'Invalid date'; 2 | 3 | export function invalidDate () { 4 | return this._invalidDate; 5 | } 6 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/locale/ordinal.js: -------------------------------------------------------------------------------- 1 | export var defaultOrdinal = '%d'; 2 | export var defaultDayOfMonthOrdinalParse = /\d{1,2}/; 3 | 4 | export function ordinal (number) { 5 | return this._ordinal.replace('%d', number); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/locale/pre-post-format.js: -------------------------------------------------------------------------------- 1 | export function preParsePostFormat (string) { 2 | return string; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/moment/clone.js: -------------------------------------------------------------------------------- 1 | import { Moment } from './constructor'; 2 | 3 | export function clone () { 4 | return new Moment(this); 5 | } 6 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/moment/creation-data.js: -------------------------------------------------------------------------------- 1 | export function creationData() { 2 | return { 3 | input: this._i, 4 | format: this._f, 5 | locale: this._locale, 6 | isUTC: this._isUTC, 7 | strict: this._strict 8 | }; 9 | } 10 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/moment/from.js: -------------------------------------------------------------------------------- 1 | import { createDuration } from '../duration/create'; 2 | import { createLocal } from '../create/local'; 3 | import { isMoment } from '../moment/constructor'; 4 | 5 | export function from (time, withoutSuffix) { 6 | if (this.isValid() && 7 | ((isMoment(time) && time.isValid()) || 8 | createLocal(time).isValid())) { 9 | return createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); 10 | } else { 11 | return this.localeData().invalidDate(); 12 | } 13 | } 14 | 15 | export function fromNow (withoutSuffix) { 16 | return this.from(createLocal(), withoutSuffix); 17 | } 18 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/moment/moment.js: -------------------------------------------------------------------------------- 1 | import { createLocal } from '../create/local'; 2 | import { createUTC } from '../create/utc'; 3 | import { createInvalid } from '../create/valid'; 4 | import { isMoment } from './constructor'; 5 | import { min, max } from './min-max'; 6 | import { now } from './now'; 7 | import momentPrototype from './prototype'; 8 | 9 | function createUnix (input) { 10 | return createLocal(input * 1000); 11 | } 12 | 13 | function createInZone () { 14 | return createLocal.apply(null, arguments).parseZone(); 15 | } 16 | 17 | export { 18 | now, 19 | min, 20 | max, 21 | isMoment, 22 | createUTC, 23 | createUnix, 24 | createLocal, 25 | createInZone, 26 | createInvalid, 27 | momentPrototype 28 | }; 29 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/moment/now.js: -------------------------------------------------------------------------------- 1 | export var now = function () { 2 | return Date.now ? Date.now() : +(new Date()); 3 | }; 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/moment/to.js: -------------------------------------------------------------------------------- 1 | import { createDuration } from '../duration/create'; 2 | import { createLocal } from '../create/local'; 3 | import { isMoment } from '../moment/constructor'; 4 | 5 | export function to (time, withoutSuffix) { 6 | if (this.isValid() && 7 | ((isMoment(time) && time.isValid()) || 8 | createLocal(time).isValid())) { 9 | return createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix); 10 | } else { 11 | return this.localeData().invalidDate(); 12 | } 13 | } 14 | 15 | export function toNow (withoutSuffix) { 16 | return this.to(createLocal(), withoutSuffix); 17 | } 18 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/moment/valid.js: -------------------------------------------------------------------------------- 1 | import { isValid as _isValid } from '../create/valid'; 2 | import extend from '../utils/extend'; 3 | import getParsingFlags from '../create/parsing-flags'; 4 | 5 | export function isValid () { 6 | return _isValid(this); 7 | } 8 | 9 | export function parsingFlags () { 10 | return extend({}, getParsingFlags(this)); 11 | } 12 | 13 | export function invalidAt () { 14 | return getParsingFlags(this).overflow; 15 | } 16 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/units/constants.js: -------------------------------------------------------------------------------- 1 | export var YEAR = 0; 2 | export var MONTH = 1; 3 | export var DATE = 2; 4 | export var HOUR = 3; 5 | export var MINUTE = 4; 6 | export var SECOND = 5; 7 | export var MILLISECOND = 6; 8 | export var WEEK = 7; 9 | export var WEEKDAY = 8; 10 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/units/minute.js: -------------------------------------------------------------------------------- 1 | import { makeGetSet } from '../moment/get-set'; 2 | import { addFormatToken } from '../format/format'; 3 | import { addUnitAlias } from './aliases'; 4 | import { addUnitPriority } from './priorities'; 5 | import { addRegexToken, match1to2, match2 } from '../parse/regex'; 6 | import { addParseToken } from '../parse/token'; 7 | import { MINUTE } from './constants'; 8 | 9 | // FORMATTING 10 | 11 | addFormatToken('m', ['mm', 2], 0, 'minute'); 12 | 13 | // ALIASES 14 | 15 | addUnitAlias('minute', 'm'); 16 | 17 | // PRIORITY 18 | 19 | addUnitPriority('minute', 14); 20 | 21 | // PARSING 22 | 23 | addRegexToken('m', match1to2); 24 | addRegexToken('mm', match1to2, match2); 25 | addParseToken(['m', 'mm'], MINUTE); 26 | 27 | // MOMENTS 28 | 29 | export var getSetMinute = makeGetSet('Minutes', false); 30 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/units/priorities.js: -------------------------------------------------------------------------------- 1 | var priorities = {}; 2 | 3 | export function addUnitPriority(unit, priority) { 4 | priorities[unit] = priority; 5 | } 6 | 7 | export function getPrioritizedUnits(unitsObj) { 8 | var units = []; 9 | for (var u in unitsObj) { 10 | units.push({unit: u, priority: priorities[u]}); 11 | } 12 | units.sort(function (a, b) { 13 | return a.priority - b.priority; 14 | }); 15 | return units; 16 | } 17 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/units/second.js: -------------------------------------------------------------------------------- 1 | import { makeGetSet } from '../moment/get-set'; 2 | import { addFormatToken } from '../format/format'; 3 | import { addUnitAlias } from './aliases'; 4 | import { addUnitPriority } from './priorities'; 5 | import { addRegexToken, match1to2, match2 } from '../parse/regex'; 6 | import { addParseToken } from '../parse/token'; 7 | import { SECOND } from './constants'; 8 | 9 | // FORMATTING 10 | 11 | addFormatToken('s', ['ss', 2], 0, 'second'); 12 | 13 | // ALIASES 14 | 15 | addUnitAlias('second', 's'); 16 | 17 | // PRIORITY 18 | 19 | addUnitPriority('second', 15); 20 | 21 | // PARSING 22 | 23 | addRegexToken('s', match1to2); 24 | addRegexToken('ss', match1to2, match2); 25 | addParseToken(['s', 'ss'], SECOND); 26 | 27 | // MOMENTS 28 | 29 | export var getSetSecond = makeGetSet('Seconds', false); 30 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/units/timestamp.js: -------------------------------------------------------------------------------- 1 | import { addFormatToken } from '../format/format'; 2 | import { addRegexToken, matchTimestamp, matchSigned } from '../parse/regex'; 3 | import { addParseToken } from '../parse/token'; 4 | import toInt from '../utils/to-int'; 5 | 6 | // FORMATTING 7 | 8 | addFormatToken('X', 0, 0, 'unix'); 9 | addFormatToken('x', 0, 0, 'valueOf'); 10 | 11 | // PARSING 12 | 13 | addRegexToken('x', matchSigned); 14 | addRegexToken('X', matchTimestamp); 15 | addParseToken('X', function (input, array, config) { 16 | config._d = new Date(parseFloat(input, 10) * 1000); 17 | }); 18 | addParseToken('x', function (input, array, config) { 19 | config._d = new Date(toInt(input)); 20 | }); 21 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/units/timezone.js: -------------------------------------------------------------------------------- 1 | import { addFormatToken } from '../format/format'; 2 | 3 | // FORMATTING 4 | 5 | addFormatToken('z', 0, 0, 'zoneAbbr'); 6 | addFormatToken('zz', 0, 0, 'zoneName'); 7 | 8 | // MOMENTS 9 | 10 | export function getZoneAbbr () { 11 | return this._isUTC ? 'UTC' : ''; 12 | } 13 | 14 | export function getZoneName () { 15 | return this._isUTC ? 'Coordinated Universal Time' : ''; 16 | } 17 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/units/units.js: -------------------------------------------------------------------------------- 1 | // Side effect imports 2 | import './day-of-month'; 3 | import './day-of-week'; 4 | import './day-of-year'; 5 | import './hour'; 6 | import './millisecond'; 7 | import './minute'; 8 | import './month'; 9 | import './offset'; 10 | import './quarter'; 11 | import './second'; 12 | import './timestamp'; 13 | import './timezone'; 14 | import './week-year'; 15 | import './week'; 16 | import './year'; 17 | 18 | import { normalizeUnits } from './aliases'; 19 | 20 | export { normalizeUnits }; 21 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/abs-ceil.js: -------------------------------------------------------------------------------- 1 | export default function absCeil (number) { 2 | if (number < 0) { 3 | return Math.floor(number); 4 | } else { 5 | return Math.ceil(number); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/abs-floor.js: -------------------------------------------------------------------------------- 1 | export default function absFloor (number) { 2 | if (number < 0) { 3 | // -0 -> 0 4 | return Math.ceil(number) || 0; 5 | } else { 6 | return Math.floor(number); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/abs-round.js: -------------------------------------------------------------------------------- 1 | export default function absRound (number) { 2 | if (number < 0) { 3 | return Math.round(-1 * number) * -1; 4 | } else { 5 | return Math.round(number); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/compare-arrays.js: -------------------------------------------------------------------------------- 1 | import toInt from './to-int'; 2 | 3 | // compare two arrays, return the number of differences 4 | export default function compareArrays(array1, array2, dontConvert) { 5 | var len = Math.min(array1.length, array2.length), 6 | lengthDiff = Math.abs(array1.length - array2.length), 7 | diffs = 0, 8 | i; 9 | for (i = 0; i < len; i++) { 10 | if ((dontConvert && array1[i] !== array2[i]) || 11 | (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { 12 | diffs++; 13 | } 14 | } 15 | return diffs + lengthDiff; 16 | } 17 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/defaults.js: -------------------------------------------------------------------------------- 1 | // Pick the first defined of two or three arguments. 2 | export default function defaults(a, b, c) { 3 | if (a != null) { 4 | return a; 5 | } 6 | if (b != null) { 7 | return b; 8 | } 9 | return c; 10 | } 11 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/extend.js: -------------------------------------------------------------------------------- 1 | import hasOwnProp from './has-own-prop'; 2 | 3 | export default function extend(a, b) { 4 | for (var i in b) { 5 | if (hasOwnProp(b, i)) { 6 | a[i] = b[i]; 7 | } 8 | } 9 | 10 | if (hasOwnProp(b, 'toString')) { 11 | a.toString = b.toString; 12 | } 13 | 14 | if (hasOwnProp(b, 'valueOf')) { 15 | a.valueOf = b.valueOf; 16 | } 17 | 18 | return a; 19 | } 20 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/has-own-prop.js: -------------------------------------------------------------------------------- 1 | export default function hasOwnProp(a, b) { 2 | return Object.prototype.hasOwnProperty.call(a, b); 3 | } 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/hooks.js: -------------------------------------------------------------------------------- 1 | export { hooks, setHookCallback }; 2 | 3 | var hookCallback; 4 | 5 | function hooks () { 6 | return hookCallback.apply(null, arguments); 7 | } 8 | 9 | // This is done to register the method called with moment() 10 | // without creating circular dependencies. 11 | function setHookCallback (callback) { 12 | hookCallback = callback; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/index-of.js: -------------------------------------------------------------------------------- 1 | var indexOf; 2 | 3 | if (Array.prototype.indexOf) { 4 | indexOf = Array.prototype.indexOf; 5 | } else { 6 | indexOf = function (o) { 7 | // I know 8 | var i; 9 | for (i = 0; i < this.length; ++i) { 10 | if (this[i] === o) { 11 | return i; 12 | } 13 | } 14 | return -1; 15 | }; 16 | } 17 | 18 | export { indexOf as default }; 19 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/is-array.js: -------------------------------------------------------------------------------- 1 | export default function isArray(input) { 2 | return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]'; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/is-date.js: -------------------------------------------------------------------------------- 1 | export default function isDate(input) { 2 | return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/is-function.js: -------------------------------------------------------------------------------- 1 | export default function isFunction(input) { 2 | return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]'; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/is-number.js: -------------------------------------------------------------------------------- 1 | export default function isNumber(input) { 2 | return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]'; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/is-object-empty.js: -------------------------------------------------------------------------------- 1 | export default function isObjectEmpty(obj) { 2 | var k; 3 | for (k in obj) { 4 | // even if its not own property I'd still call it non-empty 5 | return false; 6 | } 7 | return true; 8 | } 9 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/is-object.js: -------------------------------------------------------------------------------- 1 | export default function isObject(input) { 2 | // IE8 will treat undefined and null as object if it wasn't for 3 | // input != null 4 | return input != null && Object.prototype.toString.call(input) === '[object Object]'; 5 | } 6 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/is-undefined.js: -------------------------------------------------------------------------------- 1 | export default function isUndefined(input) { 2 | return input === void 0; 3 | } 4 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/keys.js: -------------------------------------------------------------------------------- 1 | import hasOwnProp from './has-own-prop'; 2 | 3 | var keys; 4 | 5 | if (Object.keys) { 6 | keys = Object.keys; 7 | } else { 8 | keys = function (obj) { 9 | var i, res = []; 10 | for (i in obj) { 11 | if (hasOwnProp(obj, i)) { 12 | res.push(i); 13 | } 14 | } 15 | return res; 16 | }; 17 | } 18 | 19 | export { keys as default }; 20 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/map.js: -------------------------------------------------------------------------------- 1 | export default function map(arr, fn) { 2 | var res = [], i; 3 | for (i = 0; i < arr.length; ++i) { 4 | res.push(fn(arr[i], i)); 5 | } 6 | return res; 7 | } 8 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/some.js: -------------------------------------------------------------------------------- 1 | var some; 2 | if (Array.prototype.some) { 3 | some = Array.prototype.some; 4 | } else { 5 | some = function (fun) { 6 | var t = Object(this); 7 | var len = t.length >>> 0; 8 | 9 | for (var i = 0; i < len; i++) { 10 | if (i in t && fun.call(this, t[i], i, t)) { 11 | return true; 12 | } 13 | } 14 | 15 | return false; 16 | }; 17 | } 18 | 19 | export { some as default }; 20 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/to-int.js: -------------------------------------------------------------------------------- 1 | import absFloor from './abs-floor'; 2 | 3 | export default function toInt(argumentForCoercion) { 4 | var coercedNumber = +argumentForCoercion, 5 | value = 0; 6 | 7 | if (coercedNumber !== 0 && isFinite(coercedNumber)) { 8 | value = absFloor(coercedNumber); 9 | } 10 | 11 | return value; 12 | } 13 | -------------------------------------------------------------------------------- /plugins/moment/src/lib/utils/zero-fill.js: -------------------------------------------------------------------------------- 1 | export default function zeroFill(number, targetLength, forceSign) { 2 | var absNumber = '' + Math.abs(number), 3 | zerosToFill = targetLength - absNumber.length, 4 | sign = number >= 0; 5 | return (sign ? (forceSign ? '+' : '') : '-') + 6 | Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; 7 | } 8 | -------------------------------------------------------------------------------- /plugins/moment/templates/default.js: -------------------------------------------------------------------------------- 1 | ;(function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | global.moment = factory() 5 | }(this, (function () { 'use strict'; 6 | -------------------------------------------------------------------------------- /plugins/moment/templates/locale-header.js: -------------------------------------------------------------------------------- 1 | ;(function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' 3 | && typeof require === 'function' ? factory(require('../moment')) : 4 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 5 | factory(global.moment) 6 | }(this, (function (moment) { 'use strict'; 7 | -------------------------------------------------------------------------------- /plugins/moment/templates/test-header.js: -------------------------------------------------------------------------------- 1 | ;(function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' 3 | && typeof require === 'function' ? factory(require('../../moment')) : 4 | typeof define === 'function' && define.amd ? define(['../../moment'], factory) : 5 | factory(global.moment) 6 | }(this, (function (moment) { 'use strict'; 7 | -------------------------------------------------------------------------------- /sacReceivedInvoiceList.php: -------------------------------------------------------------------------------- 1 | getSACReceivedInvoice($term); 6 | echo json_encode($result); 7 | ?> -------------------------------------------------------------------------------- /sellerNameList.php: -------------------------------------------------------------------------------- 1 | listSellerName($term); 6 | echo json_encode($result); 7 | ?> -------------------------------------------------------------------------------- /uploads/GST/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/appointment_pdf/permanent/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/appointment_pdf/probationer/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/avatar04.png -------------------------------------------------------------------------------- /uploads/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/avatar5.png -------------------------------------------------------------------------------- /uploads/client_image/defaultuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/client_image/defaultuser.png -------------------------------------------------------------------------------- /uploads/company_profile_images/defaultuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/company_profile_images/defaultuser.png -------------------------------------------------------------------------------- /uploads/company_profile_images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/company_profile_images/logo-black.png -------------------------------------------------------------------------------- /uploads/company_profile_images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/company_profile_images/logo-white.png -------------------------------------------------------------------------------- /uploads/defaultuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/defaultuser.png -------------------------------------------------------------------------------- /uploads/employee/images/defaultuser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/employee/images/defaultuser.png -------------------------------------------------------------------------------- /uploads/experience_certificate_pdf/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/invoices/createdInvoice/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/invoices/receivedInvoice/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/letterLogo/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/payroll_pdf/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /uploads/termsAndConditions_pdf/EMPLOYEES-AGREMENT-TOMATO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/uploads/termsAndConditions_pdf/EMPLOYEES-AGREMENT-TOMATO.pdf -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpoffice/phpexcel/Classes'), 10 | 'Doctrine\\Common\\Lexer\\' => array($vendorDir . '/doctrine/lexer/lib'), 11 | 'Doctrine\\Common\\Inflector\\' => array($vendorDir . '/doctrine/inflector/lib'), 12 | 'Doctrine\\Common\\Collections\\' => array($vendorDir . '/doctrine/collections/lib'), 13 | ); 14 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/ticketpark/htmlphpexcel/lib/HtmlPhpExcel'), 10 | 'Doctrine\\Common\\Cache\\' => array($vendorDir . '/doctrine/cache/lib/Doctrine/Common/Cache'), 11 | 'Doctrine\\Common\\Annotations\\' => array($vendorDir . '/doctrine/annotations/lib/Doctrine/Common/Annotations'), 12 | 'Doctrine\\Common\\' => array($vendorDir . '/doctrine/common/lib/Doctrine/Common'), 13 | ); 14 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/.coveralls.yml: -------------------------------------------------------------------------------- 1 | # for php-coveralls 2 | service_name: travis-ci 3 | src_dir: lib 4 | coverage_clover: build/logs/clover.xml 5 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | build/ 3 | phpunit.xml 4 | composer.lock -------------------------------------------------------------------------------- /vendor/doctrine/cache/README.md: -------------------------------------------------------------------------------- 1 | # Doctrine Cache 2 | 3 | Master: [![Build Status](https://secure.travis-ci.org/doctrine/cache.png?branch=master)](http://travis-ci.org/doctrine/cache) [![Coverage Status](https://coveralls.io/repos/doctrine/cache/badge.png?branch=master)](https://coveralls.io/r/doctrine/cache?branch=master) 4 | 5 | [![Latest Stable Version](https://poser.pugx.org/doctrine/cache/v/stable.png)](https://packagist.org/packages/doctrine/cache) [![Total Downloads](https://poser.pugx.org/doctrine/cache/downloads.png)](https://packagist.org/packages/doctrine/cache) 6 | 7 | Cache component extracted from the Doctrine Common project. 8 | 9 | ## Changelog 10 | 11 | ### v1.2 12 | 13 | * Added support for MongoDB as Cache Provider 14 | * Fix namespace version reset 15 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/UPGRADE.md: -------------------------------------------------------------------------------- 1 | # Upgrade to 1.4 2 | 3 | ## Minor BC Break: `Doctrine\Common\Cache\FileCache#$extension` is now `private`. 4 | 5 | If you need to override the value of `Doctrine\Common\Cache\FileCache#$extension`, then use the 6 | second parameter of `Doctrine\Common\Cache\FileCache#__construct()` instead of overriding 7 | the property in your own implementation. 8 | 9 | ## Minor BC Break: file based caches paths changed 10 | 11 | `Doctrine\Common\Cache\FileCache`, `Doctrine\Common\Cache\PhpFileCache` and 12 | `Doctrine\Common\Cache\FilesystemCache` are using a different cache paths structure. 13 | 14 | If you rely on warmed up caches for deployments, consider that caches generated 15 | with `doctrine/cache` `<1.4` are not compatible with the new directory structure, 16 | and will be ignored. 17 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/build.properties: -------------------------------------------------------------------------------- 1 | # Version class and file 2 | project.version_class = Doctrine\\Common\\Cache\\Version 3 | project.version_file = lib/Doctrine/Common/Cache/Version.php 4 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ./tests/Doctrine/ 17 | 18 | 19 | 20 | 21 | 22 | ./lib/Doctrine/ 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcCacheTest.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('APC must be enabled for the CLI with the ini setting apc.enable_cli=1'); 16 | } 17 | } 18 | 19 | protected function _getCacheDriver() 20 | { 21 | return new ApcCache(); 22 | } 23 | 24 | public function testLifetime() 25 | { 26 | $this->markTestSkipped('The APC cache TTL is not working in a single process/request. See https://bugs.php.net/bug.php?id=58084'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcuCacheTest.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('APC must be enabled for the CLI with the ini setting apc.enable_cli=1'); 16 | } 17 | } 18 | 19 | protected function _getCacheDriver() 20 | { 21 | return new ApcuCache(); 22 | } 23 | 24 | public function testLifetime() 25 | { 26 | $this->markTestSkipped('The APC cache TTL is not working in a single process/request. See https://bugs.php.net/bug.php?id=58084'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/WinCacheCacheTest.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Zend Data Cache only works in apache2handler SAPI.'); 16 | } 17 | } 18 | 19 | public function testGetStats() 20 | { 21 | $cache = $this->_getCacheDriver(); 22 | $stats = $cache->getStats(); 23 | 24 | $this->assertNull($stats); 25 | } 26 | 27 | protected function _getCacheDriver() 28 | { 29 | return new ZendDataCache(); 30 | } 31 | } -------------------------------------------------------------------------------- /vendor/doctrine/cache/tests/Doctrine/Tests/DoctrineTestCase.php: -------------------------------------------------------------------------------- 1 | =5.3.2" 15 | }, 16 | "autoload": { 17 | "psr-0": { "Doctrine\\Common\\Lexer\\": "lib/" } 18 | }, 19 | "extra": { 20 | "branch-alias": { 21 | "dev-master": "1.0.x-dev" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/.gitattributes: -------------------------------------------------------------------------------- 1 | /Build export-ignore 2 | /Documentation export-ignore 3 | /Tests export-ignore 4 | README.md export-ignore 5 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/.gitignore: -------------------------------------------------------------------------------- 1 | build/PHPExcel.phar 2 | unitTests/codeCoverage 3 | analysis 4 | 5 | ## IDE support 6 | *.buildpath 7 | *.project 8 | /.settings 9 | /.idea 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.2 5 | - 5.3.3 6 | - 5.3 7 | - 5.4 8 | - 5.5 9 | - 5.6 10 | - hhvm 11 | 12 | matrix: 13 | allow_failures: 14 | - php: hhvm 15 | 16 | script: 17 | - phpunit -c ./unitTests/ 18 | 19 | notifications: 20 | email: false 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/Examples/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.xls 3 | *.xlsx -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/Examples/GnumericTest.gnumeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/Examples/GnumericTest.gnumeric -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/Examples/OOCalcTest.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/Examples/OOCalcTest.ods -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/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 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/Examples/images/officelogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/Examples/images/officelogo.jpg -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/Examples/images/paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/Examples/images/paid.png -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/Examples/images/phpexcel_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/Examples/images/phpexcel_logo.gif -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/Examples/images/termsconditions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/Examples/images/termsconditions.jpg -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Cell/DataTypeTest.php: -------------------------------------------------------------------------------- 1 | assertInternalType('array', $result); 20 | $this->assertGreaterThan(0, count($result)); 21 | $this->assertArrayHasKey('#NULL!', $result); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/DAY.data: -------------------------------------------------------------------------------- 1 | # Date Value Result 2 | 22269, 19 3 | 30348, 1 4 | 30843, 10 5 | "11-Nov-1918", 11 6 | "28-Feb-1904", 28 7 | "Invalid", "#VALUE!" 8 | -1, "#NUM!" 9 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/EDATE.data: -------------------------------------------------------------------------------- 1 | "15-Jan-2008", 1, 39493 2 | "15-Jan-2008", -1, 39431 3 | "15-Jan-2008", 2, 39522 4 | "31-Mar-2007", 1, 39202 5 | "31-Mar-2007", -1, 39141 6 | "31-Mar-2008", -1, 39507 7 | "31-Mar-2008", -4, 39416 8 | "29-Feb-2008", -12, 39141 9 | "15-Mar-2007", 3, 39248 10 | 22269.0, 0, 22269 11 | 22269.0, 2, 22331 12 | 22269.0, 110, 25618 13 | 22269.0, -110, 18920 14 | "15-Mar-2007", "ABC", "#VALUE!" 15 | "Invalid", 12, "#VALUE!" 16 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/EOMONTH.data: -------------------------------------------------------------------------------- 1 | "15-Jan-2008", 1, 39507 2 | "15-Jan-2008", -1, 39447 3 | "15-Jan-2008", 2, 39538 4 | "31-Mar-2007", 1, 39202 5 | "31-Mar-2007", -1, 39141 6 | "31-Mar-2008", -1, 39507 7 | "31-Mar-2008", -4, 39416 8 | "29-Feb-2008", -12, 39141 9 | "15-Mar-2007", 3, 39263 10 | 22269.0, 0, 22281 11 | 22269.0, 2, 22340 12 | 22269.0, 110, 25627 13 | 22269.0, -110, 18932 14 | 22269.0, 3, 22371 15 | 22269.0, 3.75, 22371 16 | "15-Mar-2007", "ABC", "#VALUE!" 17 | "Invalid", 12, "#VALUE!" 18 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/HOUR.data: -------------------------------------------------------------------------------- 1 | 0.25, 6 2 | 0.75, 18 3 | 0.5, 12 4 | 0.6, 14 5 | "11-Nov-1918 11:11", 11 6 | "11:59 PM", 23 7 | "23:59:59", 23 8 | 3600, 2 9 | -3600, 0 10 | 7200, 3 11 | 65535, 19 12 | "1 O'Clock", "#VALUE!" 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/MINUTE.data: -------------------------------------------------------------------------------- 1 | 0.2, 48 2 | 0.4, 36 3 | 0.6, 24 4 | 0.8, 12 5 | "11-Nov-1918 11:15", 15 6 | "11:59 PM", 59 7 | "23:59:59", 59 8 | 3600, 0 9 | -3600, 0 10 | 12500, 28 11 | 65535, 12 12 | "Half past 1 O'Clock", "#VALUE!" 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/MONTH.data: -------------------------------------------------------------------------------- 1 | , 1 2 | 0, 1 3 | 22269.0, 12 4 | 30348.0, 2 5 | 30843.0, 6 6 | "11-Nov-1918", 11 7 | "28-Feb-1904", 2 8 | "01 Jul 2003", 7 9 | 38094, 4 10 | "Dec 2003", 12 11 | -10, "#NUM!" 12 | "ABCD", "#VALUE!" 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/SECOND.data: -------------------------------------------------------------------------------- 1 | 0.2339930556, 57 2 | 0.4202893519, 13 3 | 0.6078935185, 22 4 | 0.8022106481, 11 5 | "11-Nov-1918 11:15:35", 35 6 | "11:59 PM", 0 7 | "23:59:59", 59 8 | 3600, 0 9 | -3601, 59 10 | 12500, 20 11 | 65535, 15 12 | "Half past 1 O'Clock", "#VALUE!" 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/TIME.data: -------------------------------------------------------------------------------- 1 | 18, 11, 11, 0.757766203704 2 | 6, 15, 5, 0.260474537037 3 | 12, 30, 10, 0.520949074074 4 | 18, 45, 25, 0.781539351852 5 | 15, 32, 50, 0.647800925926 6 | 12, , 61, 0.500706018519 7 | 11, , -1, 0.458321759259 8 | 10, , -67, 0.415891203704 9 | 13, 62, 5, 0.584780092593 10 | 9, -80, 17, 0.319641203704 11 | 8, -162, , 0.220833333333 12 | 2, -120, -1, "#NUM!" 13 | 2, -120, , 0.000000000000 14 | 2, -120, 1, 0.000011574074 15 | 36, 1, 2, 0.500717592593 16 | -1, 2, 3, "#NUM!" 17 | -1, 61, 29, 0.001030092593 18 | -1, 61, -60, 0.000000000000 19 | "A", , , "#VALUE!" 20 | 11, 59, 0, 0.499305555556 21 | 12, 0, 0, 0.500000000000 22 | 16, 48, 10, 0.700115740741 23 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/TIMEVALUE.data: -------------------------------------------------------------------------------- 1 | "12:00:00 am", 0 2 | "12:01:02 am", 0.000717593 3 | "12:03 pm", 0.502083333 4 | "12:7:11 pm", 0.504988426 5 | "4:13:39", 0.176145833 6 | "6:20:17 pm", 0.764085648 7 | "18:33:27", 0.773229167 8 | "31/12/2007 03:27:15", 0.143923611 9 | "9:44:55 pm", 0.90619213 10 | 12, "#VALUE!" 11 | "13:01", 0.542361111 12 | "33:45", 0.40625 13 | "13:01PM", "#VALUE!" 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/WEEKDAY.data: -------------------------------------------------------------------------------- 1 | "24-Oct-1968", 5 2 | "24-Oct-1968", 2, 4 3 | "24-Oct-1968", 3, 3 4 | "2000-06-14", 4 5 | "2000-06-14", 2, 3 6 | "2000-06-14", 3, 2 7 | "1996-07-24", 4 8 | "1996-07-24", 2, 3 9 | "1996-07-24", 3, 2 10 | "1996-07-27", 7 11 | "1996-07-27", 2, 6 12 | "1996-07-27", 3, 5 13 | "1977-7-31", 1 14 | "1977-7-31", 2, 7 15 | "1977-7-31", 3, 6 16 | "1977-8-1", 2 17 | "1977-8-1", 2, 1 18 | "1977-8-1", 3, 0 19 | "1900-2-5", 2, 7 20 | "1900-2-1", 1 21 | 38093, 6 22 | 38093, 2, 5 23 | 38093, 3, 4 24 | "3/7/1977", "A", "#VALUE!" 25 | "3/7/1977", 0, "#NUM!" 26 | "Invalid", 1, "#VALUE!" 27 | -1, "#NUM!" 28 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/WEEKNUM.data: -------------------------------------------------------------------------------- 1 | "21-Dec-2000", 1, 52 2 | "1995-01-01", 1, 1 3 | "3/7/1977", 27 4 | "3/7/1977", "A", "#VALUE!" 5 | "3/7/1977", 0, "#NUM!" 6 | "Invalid", 1, "#VALUE!" 7 | -1, "#NUM!" 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/WORKDAY.data: -------------------------------------------------------------------------------- 1 | "1-Jan-2007", "ABC", "#VALUE!" 2 | "1-Jan-2007", 9, 39094 3 | "18-Jun-2008", 2, 39619 4 | "16-Jun-2008", 4, 39619 5 | "14-Jun-2008", 6, 39622 6 | "14-Jun-2008", 11, 39629 7 | "14-Jun-2008", -2, 39611 8 | "14-Jun-2008", -6, 39605 9 | "19-Dec-2008", 10, 39815 10 | "19-Dec-2008", 10, "25-Dec-2008", "26-Dec-2008", "01-Jan-2009", 39820 11 | "19-Dec-2008", 10, {"25-Dec-2008"|"26-Dec-2008"|"01-Jan-2009"}, 39820 12 | 39820, -10, {"25-Dec-2008"|"26-Dec-2008"|"01-Jan-2009"}, 39801 13 | "5-Apr-2012", 3, {"6-Apr-2012"|"9-Apr-2012"}, 41010 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/DateTime/YEAR.data: -------------------------------------------------------------------------------- 1 | , 1900 2 | 1, 1900 3 | 33333.33, 1991 4 | 22269.0, 1960 5 | 30348.0, 1983 6 | 30843.0, 1984 7 | "01 Jan 2525", 2525 8 | "11-Nov-1918", 1918 9 | "28-Feb-1904", 1904 10 | -10, "#NUM!" 11 | "ABCD", "#VALUE!" 12 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/BIN2DEC.data: -------------------------------------------------------------------------------- 1 | "10110010", "178" 2 | "1100100", "100" 3 | "111001010101", "#NUM!" // Too large 4 | "101", "5" 5 | "10", "2" 6 | "0", "0" 7 | "21", "#NUM!" // Invalid binary number 8 | TRUE, "#VALUE!" // Non string 9 | "1110010101", "-107" // 2's Complement 10 | "1111111111", "-1" // 2's Complement 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/BIN2HEX.data: -------------------------------------------------------------------------------- 1 | "10110010", "B2" 2 | "111001010101", "#NUM!" // Too large 3 | "11111011", 4, "00FB" // Leading places 4 | "11111011", 3.75, "0FB" // Leading places as a float 5 | "11111011", -1, "#NUM!" // Leading places negative 6 | "11111011", "ABC", "#VALUE!" // Leading places non-numeric 7 | "1110", "E" 8 | "101", "5" 9 | "10", "2" 10 | "0", "0" 11 | "21", "#NUM!" // Invalid binary number 12 | TRUE, "#VALUE!" // Non string 13 | "1110010101", "FFFFFFFF95" // 2's Complement 14 | "1111111111", "FFFFFFFFFF" // 2's Complement 15 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/BIN2OCT.data: -------------------------------------------------------------------------------- 1 | "1100100", "144" 2 | "10110010", "262" 3 | "111001010101", "#NUM!" // Too large 4 | "1001", 3, "011" // Leading places 5 | "1001", 4.75, "0011" // Leading places as a float 6 | "1001", -1, "#NUM!" // Leading places negative 7 | "1001", "ABC", "#VALUE!" // Leading places non-numeric 8 | "00000010", "2" 9 | "00000101", "5" 10 | "00001101", "15" 11 | "0", "0" 12 | "21", "#NUM!" // Invalid binary number 13 | TRUE, "#VALUE!" // Non string 14 | "1110010101", "7777777625" // 2's Complement 15 | "1111111111", "7777777777" // 2's Complement 16 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/CONVERTUOM.data: -------------------------------------------------------------------------------- 1 | 1.0, "lbm", "kg", 0.45359230974881 2 | 123.45, "kg", "kg", 123.45 3 | 68, "F", "C", 20 4 | 20, "C", "F", 68 5 | 68, "F", "K", 293.15 6 | 293.15, "K", "F", 68 7 | 22, "C", "K", 295.15 8 | 295.65, "K", "C", 22.5 9 | 2.5, "ft", "sec", "#N/A" 10 | 12345, "m", "km", 12.345 11 | 12.345, "km", "m", 12345 12 | 1, "km", "mi", 0.62137119223733 13 | "three","ft", "yds", "#VALUE!" 14 | 123.45, "K", "kel", 123.45 15 | 123.45, "C", "cel", 123.45 16 | 123.45, "F", "fah", 123.45 17 | 1, "ft", "day", "#N/A" 18 | 123.45, "m", "m", 123.45 19 | 234.56, "km", "km", 234.56 20 | 234.56, "kpt", "lt", "#N/A" 21 | 234.56, "sm", "m", "#N/A" 22 | 234.56, "lt", "kpt", "#N/A" 23 | 234.56, "m", "sm", "#N/A" 24 | 12.345, "km", "mm", 12345000 25 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/DEC2BIN.data: -------------------------------------------------------------------------------- 1 | 357, "101100101" 2 | 1357, "#NUM!" // Too large 3 | 9, 4, "1001" 4 | 9, 8, "00001001" 5 | 9, 6.75, "001001" // Leading places as a float 6 | 9, -1, "#NUM!" // Leading places negative 7 | 9, "ABC", "#VALUE!" // Leading places non-numeric 8 | 246, "11110110" 9 | 12345, "#NUM!" 10 | 123456789, "#NUM!" 11 | 123.45, "1111011" 12 | 0, "0" 13 | "3579A", "#VALUE!" // Invalid decimal 14 | TRUE, "#VALUE!" // Non string 15 | -100, "1110011100" // 2's Complement 16 | -107, "1110010101" // 2's Complement 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/DEC2HEX.data: -------------------------------------------------------------------------------- 1 | "357", "165" 2 | "1357", "54D" 3 | "246", "F6" 4 | "12345", "3039" 5 | "123456789", "75BCD15" 6 | "100", 4, "0064" 7 | "100", 5.75, "00064" // Leading places as a float 8 | "100", -1, "#NUM!" // Leading places negative 9 | "100", "ABC", "#VALUE!" // Leading places non-numeric 10 | "123.45", "7B" 11 | "0", "0" 12 | "3579A", "#VALUE!" // Invalid decimal 13 | TRUE, "#VALUE!" // Non string 14 | "-54", "FFFFFFFFCA" // 2's Complement 15 | "-107", "FFFFFFFF95" // 2's Complement 16 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/DEC2OCT.data: -------------------------------------------------------------------------------- 1 | "357", "545" 2 | "1357", "2515" 3 | "246", "366" 4 | "12345", "30071" 5 | "123456789", "726746425" 6 | "123.45", "173" 7 | "58, 3, "072" 8 | "0", "0" 9 | "3579A", "#VALUE!" // Invalid decimal 10 | TRUE, "#VALUE!" // Non string 11 | "-100", "7777777634" // 2's Complement 12 | "-107", "7777777625" // 2's Complement 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/DELTA.data: -------------------------------------------------------------------------------- 1 | -1.5, -1.5, 1 2 | -0.75, -1.5, 0 3 | 0, -1.5, 0 4 | 0.75, -1.5, 0 5 | 1.5, -1.5, 0 6 | -1.5, -0.75, 0 7 | -0.75, -0.75, 1 8 | 0, -0.75, 0 9 | 0.75, -0.75, 0 10 | 1.5, -0.75, 0 11 | -1.5, 0, 0 12 | -0.75, 0, 0 13 | 0, 0, 1 14 | 0.75, 0, 0 15 | 1.5, 0, 0 16 | -1.5, 0.75, 0 17 | -0.75, 0.75, 0 18 | 0, 0.75, 0 19 | 0.75, 0.75, 1 20 | 1.5, 0.75, 0 21 | -1.5, 1.5, 0 22 | -0.75, 1.5, 0 23 | 0, 1.5, 0 24 | 0.75, 1.5, 0 25 | 1.5, 1.5, 1 26 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/HEX2BIN.data: -------------------------------------------------------------------------------- 1 | "01AB", "110101011" 2 | "ABCD", "#NUM!" 3 | "F6", "11110110" 4 | "F", 8, "00001111" 5 | "B7", "10110111" 6 | "12345", "#NUM!" 7 | "123456789", "#NUM!" 8 | "123.45", "#NUM!" 9 | "0", "0" 10 | "G3579A", "#NUM!" 11 | TRUE, "#VALUE!" 12 | "-107", "#NUM!" 13 | "FFFFFFFFFF", "1111111111" // 2's Complement 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/HEX2DEC.data: -------------------------------------------------------------------------------- 1 | "01AB", "427" 2 | "ABCD", "43981" 3 | "F6", "246" 4 | "12345", "74565" 5 | "123456789", "4886718345" 6 | "123.45", "#NUM!" 7 | "0", "0" 8 | "G3579A", "#NUM!" 9 | TRUE, "#VALUE!" 10 | "-107", "#NUM!" 11 | "A5", "165" 12 | "FFFFFFFF5B", "-165" 13 | "3DA408B9", "1034160313" // 2's Complement 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/HEX2OCT.data: -------------------------------------------------------------------------------- 1 | "01AB", "653" 2 | "ABCD", "125715" 3 | "F6", "366" 4 | "3B4E", "35516" 5 | "F", 3, "017" 6 | "12345", "221505" 7 | "123456789", "#NUM!" 8 | "123.45", "#NUM!" 9 | "0", "0" 10 | "G3579A", "#NUM!" 11 | TRUE, "#VALUE!" 12 | "-107", "#NUM!" 13 | "FFFFFFFF00", "7777777400" // 2's Complement 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/IMABS.data: -------------------------------------------------------------------------------- 1 | "12.34+5.67j", 13.580298229420 2 | "1.234E-5+6.78E9i", 6.78E9 3 | "3.5+2.5i", 4.301162633521 4 | "3.5+i", 3.640054944640 5 | "3.5", 3.5 6 | "3.5-i", 3.640054944640 7 | "3.5-2.5i", 4.301162633521 8 | "1+2.5i", 2.692582403567 9 | "1+i", 1.414213562373 10 | "1", 1 11 | "1-i", 1.414213562373 12 | "1-2.5i", 2.692582403567 13 | "2.5i", 2.5 14 | "i", 1 15 | "0", 0 16 | "-i", 1 17 | "-2.5i", 2.5 18 | "-1+2.5i", 2.692582403567 19 | "-1+i", 1.414213562373 20 | "-1", 1 21 | "-1-i", 1.414213562373 22 | "-1-2.5i", 2.692582403567 23 | "-3.5+2.5i", 4.301162633521 24 | "-3.5+i", 3.640054944640 25 | "-3.5", 3.5 26 | "-3.5-i", 3.640054944640 27 | "-3.5-2.5i", 4.301162633521 28 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/IMAGINARY.data: -------------------------------------------------------------------------------- 1 | "12.34+5.67j", 5.67 2 | "1.234E-5+6.78E9i", 6.78E9 3 | "3.5+2.5i", 2.5 4 | "3.5+i", 1 5 | "3.5", 0 6 | "3.5-i", -1 7 | "3.5-2.5i", -2.5 8 | "1+2.5i", 2.5 9 | "1+i", 1 10 | "1", 0 11 | 1, 0 12 | "1-i", -1 13 | "1-2.5i", -2.5 14 | "2.5i", 2.5 15 | "i", 1 16 | "0", 0 17 | 0, 0 18 | 0.0, 0 19 | "-i", -1 20 | "-2.5i", -2.5 21 | "-1+2.5i", 2.5 22 | "-1+i", 1 23 | "-1", 0 24 | "-1-i", -1 25 | "-1-2.5i", -2.5 26 | "-3.5+2.5i", 2.5 27 | "-3.5+i", 1 28 | "-3.5", 0 29 | "-3.5-i", -1 30 | "-3.5-2.5i", -2.5 31 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/IMARGUMENT.data: -------------------------------------------------------------------------------- 1 | "12.34+5.67j", 0.430710595550 2 | "3.5+2.5i", 0.620249485983 3 | "3.5+i", 0.278299659005 4 | "3.5", 0 5 | "3.5-i", -0.278299659005 6 | "3.5-2.5i", -0.620249485983 7 | "1+2.5i", 1.190289949683 8 | "1+i", 0.785398163397 9 | "1", 0 10 | "1-i", -0.785398163397 11 | "1-2.5i", -1.190289949683 12 | "2.5i", 1.570796326795 13 | "i", 1.570796326795 14 | "0", "#DIV/0!" 15 | "-i", -1.570796326795 16 | "-2.5i", -1.570796326795 17 | "-1+2.5i", 1.951302703907 18 | "-1+i", 2.356194490192 19 | "-1", 3.141592653590 20 | "-1-i", -2.356194490192 21 | "-1-2.5i", -1.951302703907 22 | "-3.5+2.5i", 2.521343167607 23 | "-3.5+i", 2.863292994585 24 | "-3.5", 3.141592653590 25 | "-3.5-i", -2.863292994585 26 | "-3.5-2.5i", -2.521343167607 27 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/IMCONJUGATE.data: -------------------------------------------------------------------------------- 1 | "12.34+5.67j", "12.34-5.67j" 2 | "3.5+2.5i", "3.5-2.5i" 3 | "3.5+i", "3.5-i" 4 | "3.5", "3.5" 5 | "3.5-i", "3.5+i" 6 | "3.5-2.5i", "3.5+2.5i" 7 | "1+2.5i", "1-2.5i" 8 | "1+i", "1-i" 9 | "1", "1" 10 | "1-i", "1+i" 11 | "1-2.5i", "1+2.5i" 12 | "2.5i", "-2.5i" 13 | "i", "-i" 14 | "0", "0" 15 | "-i", "i" 16 | "-2.5i", "2.5i" 17 | "-1+2.5i", "-1-2.5i" 18 | "-1+i", "-1-i" 19 | "-1", "-1" 20 | "-1-i", "-1+i" 21 | "-1-2.5i", "-1+2.5i" 22 | "-3.5+2.5i", "-3.5-2.5i" 23 | "-3.5+i", "-3.5-i" 24 | "-3.5", "-3.5" 25 | "-3.5-i", "-3.5+i" 26 | "-3.5-2.5i", "-3.5+2.5i" 27 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/IMREAL.data: -------------------------------------------------------------------------------- 1 | 12.34+5.67j", 12.34 2 | "-1.234E-5+6.78E9i", -1.234E-5 3 | "3.5+2.5i", 3.5 4 | "3.5+i", 3.5 5 | "3.5", 3.5 6 | 3.5, 3.5 7 | "3.5-i", 3.5 8 | "3.5-2.5i", 3.5 9 | "1+2.5i", 1 10 | "1+i", 1 11 | "1", 1 12 | 1, 1 13 | "1-i", 1 14 | "1-2.5i", 1 15 | "2.5i", 0 16 | "i", 0 17 | "0", 0 18 | 0, 0 19 | "-i", 0 20 | "-2.5i", 0 21 | "-1+2.5i", -1 22 | "-1+i", -1 23 | "-1", -1 24 | "-1-i", -1 25 | "-1-2.5i", -1 26 | "-3.5+2.5i", -3.5 27 | "-3.5+i", -3.5 28 | "-3.5", -3.5 29 | "-3.5-i", -3.5 30 | "-3.5-2.5i", -3.5 31 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/IMSUB.data: -------------------------------------------------------------------------------- 1 | "12.34+5.67j", "123.45+67.89i", "#NUM!" 2 | "123.45+67.89j", "12.34+5.67j", "111.11+62.22j" 3 | "12.34+5.67j", "123.45+67.89j", "-111.11-62.22j" 4 | "12.34+5.67i", "123.45+67.89i", "123.45+67.89i", "-111.11-62.22i" 5 | "-12.34-5.67i", "123.45-67.89i", "-135.79+62.22i" 6 | "12.34-5.67i", "-123.45-67.89i", "135.79+62.22i" 7 | "-12.34-5.67i", "-123.45-67.89i", "111.11+62.22i" 8 | "-12.34-5.67i", "-123.45-67.89", "#NUM!" 9 | "-12.34-5.67j", "-123.45-67.89", "#NUM!" 10 | "-12.34-5.67", "-123.45-67.89j", "#NUM!" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/IMSUM.data: -------------------------------------------------------------------------------- 1 | "12.34+5.67j", "123.45+67.89i", "#NUM!" 2 | "12.34+5.67j", "123.45+67.89j", "135.79+73.56j" 3 | "12.34-5.67i", "123.45+67.89i", "135.79+62.22i" 4 | "12.34+5.67i", "123.45-67.89i", "135.79-62.22i" 5 | "12.34-5.67i", "123.45-67.89i", "135.79-73.56i" 6 | "12.34+5.67i", "123.45+67.89i", "123.45+67.89i", "259.24+141.45i" 7 | "12.34+5.67i", "123.45+67.89i", "123.45+67.89j", "#NUM!" 8 | "-12.34-5.67i", "123.45-67.89i", "111.11-73.56i" 9 | "12.34-5.67i", "-123.45-67.89i", "-111.11-73.56i" 10 | "-12.34-5.67i", "-123.45-67.89i", "-135.79-73.56i" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/OCT2BIN.data: -------------------------------------------------------------------------------- 1 | "1357", "#NUM!" 2 | "246", "10100110" 3 | "3", 3, "011" 4 | "12345", "#NUM!" 5 | "123.45", "#NUM!" 6 | "0", "0" 7 | TRUE, "#VALUE!" 8 | "3579", "#NUM!" 9 | "7777777000", "1000000000" // 2's Complement 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/OCT2DEC.data: -------------------------------------------------------------------------------- 1 | "1357", "751" 2 | "246", "166" 3 | "12345", "5349" 4 | "123.45", "#NUM!" 5 | "0", "0" 6 | TRUE, "#VALUE!" 7 | "3579", "#NUM!" 8 | "54", "44" 9 | "7777777533", "-165" // 2's Complement 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Engineering/OCT2HEX.data: -------------------------------------------------------------------------------- 1 | "1357", "2EF" 2 | "246", "A6" 3 | "12345", "14E5" 4 | "100", 4, "0040" 5 | "123.45", "#NUM!" 6 | "0", "0" 7 | TRUE, "#VALUE!" 8 | "3579", "#NUM!" 9 | "7777777533", "FFFFFFFF5B" // 2's Complement 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/ACCRINT.data: -------------------------------------------------------------------------------- 1 | #Issue date 1st Interest Settlement Rate Par Freq Basis Result 2 | "2008-03-01", "2008-08-31", "2008-05-01", 0.10, 1000, 2, 0, 16.666666666667 3 | "2008-03-05", "2008-08-31", "2008-05-01", 0.10, 1000, 2, 0, 15.555555555556 4 | "2010-01-01", "2010-06-30", "2010-04-01", 0.08, 10000, 4, 202.222222222222 5 | "2008-03-05", "2008-08-31", "2008-05-01", -0.10, 1000, 2, 0, "#NUM!" 6 | "Invalid Date", "2008-08-31", "2008-05-01", 0.10, 1000, 2, 0, "#VALUE!" 7 | "2008-03-01", "2008-08-31", "2008-05-01", "ABC", 1000, 2, 0, "#VALUE!" 8 | "2008-03-01", "2008-08-31", "2008-05-01", 0.10, 1000, 2, "ABC", "#VALUE!" 9 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/ACCRINTM.data: -------------------------------------------------------------------------------- 1 | #Issue date Settlement Rate Par Basis Result 2 | "2008-04-01", "2008-06-15", 0.10, 1000, 3, 20.547945205479 3 | "2010-01-01", "2010-12-31", 0.08, 10000, 800 4 | "2008-03-05", "2008-08-31", -0.10, 1000, 2, "#NUM!" 5 | "Invalid Date", "2008-08-31", 0.10, 1000, 2, "#VALUE!" 6 | "2008-03-01", "2008-08-31", "ABC", 1000, 2, "#VALUE!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/AMORDEGRC.data: -------------------------------------------------------------------------------- 1 | #Cost Date purchased End of the 1st period Salvage Period Depreciation Basis Result 2 | 2400, "2008-08-19", "2008-12-31", 300, 1, 0.15, 1, 776 3 | 150, "2011-01-01", "2011-09-30", 20, 1, 0.2, 4, 42 4 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/AMORLINC.data: -------------------------------------------------------------------------------- 1 | #Cost Date purchased End of the 1st period Salvage Period Depreciation Basis Result 2 | 2400, "2008-08-19", "2008-12-31", 300, 1, 0.15, 1, 360 3 | 150, "2011-01-01", "2011-09-30", 20, 1, 0.2, 4, 30 4 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/COUPDAYBS.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Frequency Basis Result 2 | "25-Jan-2007", "15-Nov-2008", 2, 1, 71 3 | "2011-01-01", "2012-10-25", 4, 66 4 | "Invalid Date", "15-Nov-2008", 2, 1, "#VALUE!" 5 | "25-Jan-2007", "Invalid Date", 2, 1, "#VALUE!" 6 | "25-Jan-2007", "15-Nov-2008", 3, 1, "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/COUPDAYS.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Frequency Basis Result 2 | "25-Jan-2007", "15-Nov-2008", 2, 1, 181 3 | "2011-01-01", "2012-10-25", 4, 90 4 | "Invalid Date", "15-Nov-2008", 2, 1, "#VALUE!" 5 | "25-Jan-2007", "Invalid Date", 2, 1, "#VALUE!" 6 | "25-Jan-2007", "15-Nov-2008", 3, 1, "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/COUPDAYSNC.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Frequency Basis Result 2 | "25-Jan-2007", "15-Nov-2008", 2, 1, 110 3 | "2011-01-01", "2012-10-25", 4, 24 4 | "Invalid Date", "15-Nov-2008", 2, 1, "#VALUE!" 5 | "25-Jan-2007", "Invalid Date", 2, 1, "#VALUE!" 6 | "25-Jan-2007", "15-Nov-2008", 3, 1, "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/COUPNCD.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Frequency Basis Result 2 | "25-Jan-2007", "15-Nov-2008", 2, 1, 39217 3 | "2011-01-01", "2012-10-25", 4, 40568 4 | "Invalid Date", "15-Nov-2008", 2, 1, "#VALUE!" 5 | "25-Jan-2007", "Invalid Date", 2, 1, "#VALUE!" 6 | "25-Jan-2007", "15-Nov-2008", 3, 1, "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/COUPNUM.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Frequency Basis Result 2 | "25-Jan-2007", "15-Nov-2008", 2, 1, 4 3 | "2011-01-01", "2012-10-25", 4, 0, 8 4 | "Invalid Date", "15-Nov-2008", 2, 1, "#VALUE!" 5 | "25-Jan-2007", "Invalid Date", 2, 1, "#VALUE!" 6 | "25-Jan-2007", "15-Nov-2008", 3, 1, "#NUM!" 7 | "01-Jan-2008", "31-Dec-2012", 1, 1, 5 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/COUPPCD.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Frequency Basis Result 2 | "25-Jan-2007", "15-Nov-2008", 2, 1, 39036 3 | "2011-01-01", "2012-10-25", 4, 40476 4 | "Invalid Date", "15-Nov-2008", 2, 1, "#VALUE!" 5 | "25-Jan-2007", "Invalid Date", 2, 1, "#VALUE!" 6 | "25-Jan-2007", "15-Nov-2008", 3, 1, "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/CUMIPMT.data: -------------------------------------------------------------------------------- 1 | #rate nper pv start_period end_period type result 2 | 0.0075, 360, 125000, 13, 24, 0, -11135.232130751 3 | 0.0075, 360, 125000, 1, 1, 0, -937.50 4 | 0.004166666667, 60, 50000, 1, 12, 0, -2294.9775375121 5 | 0.004166666667, 60, 50000, 13, 24, 0, -1833.1000667254 6 | 0.004166666667, 60, 50000, 25, 36, 0, -1347.5920679425 7 | 0.004166666667, 60, 50000, 37, 48, 0, -837.24455850309 8 | 0.004166666667, 60, 50000, 49, 60, 0, -300.78670189939 9 | 0.0075, 360, 125000, 24, 13, 0, "#VALUE!" 10 | 0.0075, 360, 125000, 24, 13, 2, "#NUM!" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/CUMPRINC.data: -------------------------------------------------------------------------------- 1 | #rate nper pv start_period end_period type result 2 | 0.0075, 360, 125000, 13, 24, 0, -934.10712342088 3 | 0.0075, 360, 125000, 1, 1, 0, -68.278271180977 4 | 0.004166666667, 60, 50000, 1, 12, 0, -9027.7626490046 5 | 0.004166666667, 60, 50000, 13, 24, 0, -9489.6401197913 6 | 0.004166666667, 60, 50000, 25, 36, 0, -9975.1481185741 7 | 0.004166666667, 60, 50000, 37, 48, 0, -10485.495628014 8 | 0.004166666667, 60, 50000, 49, 60, 0, -11021.953484617 9 | 0.0075, 360, 125000, 24, 13, 0, "#VALUE!" 10 | 0.0075, 360, 125000, 24, 13, 2, "#NUM!" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/DB.data: -------------------------------------------------------------------------------- 1 | #cost salvage life period month result 2 | 1000000, 100000, 6, 1, 7, 186083.33333333 3 | 1000000, 100000, 6, 2, 7, 259639.41666667 4 | 1000000, 100000, 6, 3, 7, 176814.44275 5 | 1000000, 100000, 6, 4, 7, 120410.63551275 6 | 1000000, 100000, 6, 5, 7, 81999.642784183 7 | 1000000, 100000, 6, 6, 7, 55841.756736028 8 | 1000000, 100000, 6, 7, 7, 15845.098473848 9 | 10000, 1000, 5, 1, 6, 1845.00 10 | 10000, 1000, 5, 2, 6, 3009.195 11 | 10000, 1000, 5, 3, 6, 1898.802045 12 | 10000, 1000, 5, 4, 6, 1198.144090395 13 | 10000, 1000, 5, 5, 6, 756.02892103925 14 | 10000, 1000, 5, 6, 6, 238.52712458788 15 | 0, 0, 5, 6, 6, 0.0 16 | -1000, 100, 5, 6, 6, "#NUM!" 17 | "ABC", 100, 5, 6, 6, "#VALUE!" 18 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/DDB.data: -------------------------------------------------------------------------------- 1 | #cost salvage life period month result 2 | 2400, 300, 36500, 1, 0.13150684931507 3 | 2400, 300, 36500, 2, 0.13149964346031 4 | 2400, 300, 36500, 7, 0.13146362010871 5 | 2400, 300, 36500, 7, 14, 0.91843145432708 6 | 2400, 300, 120, 1, 2, 40.00 7 | 2400, 300, 10, 1, 2, 480.00 8 | 2400, 300, 10, 2, 1.5, 306.00 9 | 2400, 300, 10, 10, 22.12254720000030 10 | 10000, 1000, 5, 1, 4000.00 11 | 10000, 1000, 5, 2, 2400.00 12 | 10000, 1000, 5, 3, 1440.00 13 | 10000, 1000, 5, 4, 864.00 14 | 10000, 1000, 5, 5, 296.00 15 | -2400, 300, 36500, 1, "#NUM!" 16 | "ABC", 300, 36500, 1, "#VALUE!" 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/DISC.data: -------------------------------------------------------------------------------- 1 | #settlement maturity price redemption basis result 2 | "2007-01-25", "2007-06-15", 97.975, 100, 1, 0.052420213 3 | "2010-04-01", "2015-03-31", 95, 100, 0.01 4 | "2010-04-01", "2015-03-31", 0, 100, "#NUM!" 5 | "2010-04-01", "2015-03-31", "ABC", 100, "#VALUE!" 6 | "Invalid Date", "2007-06-15", 97.975, 100, 1, "#VALUE!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/DOLLARDE.data: -------------------------------------------------------------------------------- 1 | #fractional_dollar fraction result 2 | 1.02, 16, 1.125 3 | 1.1, 32, 1.3125 4 | 1.01, 16, 1.0625 5 | 1.1, 16, 1.625 6 | 1.03, 32, 1.09375 7 | 1.3, 32, 1.9375 8 | 1.12, 32, 1.375 9 | 1.2345, 0, "#DIV/0!" 10 | 1.2345, -2, "#NUM!" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/DOLLARFR.data: -------------------------------------------------------------------------------- 1 | #decimal_dollar fraction result 2 | 1.125, 16, 1.02 3 | 1.125, 32, 1.04 4 | 1.0625, 16, 1.01 5 | 1.625, 16, 1.1 6 | 1.09375, 32, 1.03 7 | 1.9375, 32, 1.3 8 | 1.375, 32, 1.12 9 | 1.2345, 0, "#DIV/0!" 10 | 1.2345, -2, "#NUM!" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/EFFECT.data: -------------------------------------------------------------------------------- 1 | #nominal_rate npery Result 2 | 0.0525, 4, 0.053542667370758 3 | 0.10, 4, 0.103812890625 4 | 0.10, 2, 0.1025 5 | 0.025, 2, 0.02515625 6 | 1, 0, "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/FV.data: -------------------------------------------------------------------------------- 1 | #rate nper pmt pv type Result 2 | 0.005, 10, -200, -500, 1, 2581.4033740601 3 | 0.01, 12, -1000, 12682.503013197 4 | 0.009166666667, 35, -2000, , 1, 82846.246372418 5 | 0.005, 12, -100, -1000, 1, 2301.4018303409 6 | 0.004166666667, 60, -1000, 68006.082841536 7 | 0.025, 16, -2000, 0, 1, 39729.460894166 8 | 0.1, 12, -100, 0, 2, "#NUM!" 9 | 0.0, 12, -100, -100, 1300 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/FVSCHEDULE.data: -------------------------------------------------------------------------------- 1 | #principal schedule Result 2 | 1, {0.09|0.11|0.1}, 1.33089 3 | 10, {0.09;0.11;0.1}, 13.3089 4 | 10000, {0.05|0.05|0.035|0.035|0.035}, 12223.614571875 5 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/INTRATE.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Investment Redemption Basis Result 2 | "2008-02-15", "2008-05-15", 1000000, 1014420, 2, 0.05768 3 | "2005-04-01", "2010-03-31", 1000, 2125, 0.225 4 | "2008-02-15", "2008-05-15", 1000000, 1014420, "ABC", "#VALUE!" 5 | "2008-02-15", "2008-05-15", 1000000, -1014420, 2, "#NUM!" 6 | "Invalid Date", "2008-05-15", 1000000, 1014420, 2, "#VALUE!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/IPMT.data: -------------------------------------------------------------------------------- 1 | #rate per nper pv fv type Result 2 | 0.008333333333, 3, 3, 8000, -22.406893015021 3 | 0.10, 3, 3, 8000, -292.44712990937 4 | 0.004166666667, 1, 60, 50000, -208.33333335 5 | 0.004166666667, 2, 60, 50000, -205.26988189617 6 | 0.00875, 1, 8, 10000, 5000, 1, 0.00 7 | 0.00875, 2, 8, 10000, 5000, 1, -70.968650395559 8 | 0.005, 2, 8, 2500, 200, 6, "#NUM!" 9 | 0.005, 8, 2, 2500, 200, 1, "#VALUE!" 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/IRR.data: -------------------------------------------------------------------------------- 1 | #values guess Result 2 | {-70000;12000;15000;18000;21000}, -0.021244848273410 3 | {-70000;12000;15000;18000;21000;26000}, 0.08663094803652 4 | {-70000;12000;15000;18000}, 0.10, -0.18213746414550 5 | {-100;20|24|28.80}, -0.13618951095869 6 | {-100;20|24|28.80|34.56|41.47}, 0.130575756371527 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/ISPMT.data: -------------------------------------------------------------------------------- 1 | #rate per nper pv result 2 | 0.008333333333, 1, 36, 8000000, -64814.814812222 3 | 0.10, 1, 3, 8000000, -533333.33333333 4 | 0.004166666667, 1, 60, 50000, -204.8611111275 5 | 0.004166666667, 2, 60, 50000, -201.388888905 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/MIRR.data: -------------------------------------------------------------------------------- 1 | #values finance_rate reinvestment_rate Result 2 | {-120000;39000|30000|21000|37000|46000}, 0.10, 0.12, 0.12609413036591 3 | {-120000;39000|30000|21000}, 0.10, 0.12, -0.048044655249981 4 | {-120000;39000|30000|21000|37000|46000}, 0.10, 0.14, 0.13475911082831 5 | {-100;12|14|11}, 5.5, 5, 0.74021752686287 6 | {-100;12|14|11|13|16}, 5.5, 5, 1.8579321744785 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/NOMINAL.data: -------------------------------------------------------------------------------- 1 | #effect_rate npery result 2 | 0.053543, 4, 0.052500319868356 3 | 0.10, 4, 0.09645475633778 4 | 0.10, 2, 0.097617696340303 5 | 0.025, 12, 0.024718035238113 6 | -0.025, 12, "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/NPER.data: -------------------------------------------------------------------------------- 1 | #rate pmt pv fv type result 2 | 0.01, -100, -1000, 10000, 1, 59.673865674295 3 | 0.01, -100, -1000, 10000, 60.082122853762 4 | 0.01, -100, -1000, -9.5785940398132 5 | 0.003333333333, -1000, 50000, 54.78757726 6 | 0.015, -1200, 9000, 5000, 1, 11.90373729 7 | 0.015, -1200, 9000, 5000, 2, "#NUM!" 8 | 0.015, 0.0, 0.0, 5000, 1, "#NUM!" 9 | 0.0, 0.0, -500, 5000, 1, "#NUM!" 10 | 0.0, -50, -250, 150, 1, -2.0 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/NPV.data: -------------------------------------------------------------------------------- 1 | #rate values result 2 | 0.10, -10000, 3000, 4200, 6800, 1188.4434123352 3 | 0.08, 8000, 9200, 10000, 12000, 14500, 41922.061554932 4 | 0.08, 8000, 9200, 10000, 12000, 14500, -9000, 36250.534912984 5 | 0.05, 2000, 2400, 2900, 3500, 4100, 12678.677633095 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/PRICE.data: -------------------------------------------------------------------------------- 1 | #Settlement Maturity Rate Yield Redemption Frequency Basis Result 2 | "15-Feb-2008", "15-Nov-2017", 0.0575, 0.065, 100, 2, 0, 94.6343616213221 3 | "15-Feb-2008", "15-Nov-2017", 0.0575, 0.065, 100, 2, 1, 94.6354492078772 4 | "15-Feb-2008", "15-Nov-2017", 0.0575, 0.065, 100, 2, 2, 94.6365640300251 5 | "15-Feb-2008", "15-Nov-2017", 0.0575, 0.065, 100, 2, 3, 94.6351747967845 6 | "01-Apr-2012", "31-Mar-2020", 0.12, 0.10, 100, 2, NULL, 110.8344835932160 7 | "01-Apr-2012", "31-Mar-2020", 0.12, 0.10, 100, 2, 1, 110.8345373958590 8 | "01-Apr-2012", "31-Mar-2020", 0.12, 0.10, 100, 2, 2, 110.8344835932160 9 | "01-Apr-2012", "31-Mar-2020", 0.12, 0.10, 100, 2, 3, 110.8345285514390 10 | "01-Apr-2012", "31-Mar-2020", 0.12, 0.10, 100, 4, 3, 110.9217329631980 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/RATE.data: -------------------------------------------------------------------------------- 1 | #Periods Payment Present Value Future Value Type Guess Result 2 | 48, -200, 8000, 0.0077014724882014 3 | 60, -6000, 120000, 0.0467819164224934 4 | 60, -1000, 120000, -0.0204429522193565 5 | 24, -250, 5000, 0.0151308439023434 6 | 24, -250, 5000, NULL, 1, 0.0165501190667120 7 | 208, -700, 8000, 0.0874999976840937 8 | 10, -1000, 6500, 0.0871137556058636 9 | 6, -1000, 100000, -126068, 0.0484721272835728 10 | 6, 1000, 100000, -126068, 0.0302728738275435 11 | 6, -1000, -100000, 126068, 0, 0.0302728738275437 12 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Financial/XIRR.data: -------------------------------------------------------------------------------- 1 | #values dates guess Result 2 | {-10000;2750|4250|3250|2750|46000}, {"2008-01-01";"2008-03-01"|"2008-10-30"|"2009-02-15"|"2009-04-01"}, 0.10, 0.373362535 3 | {-100;20|40|25}, {"2010-01-01";"2010-04-01"|"2010-10-01"|"2011-02-01"}, -0.3024 4 | {-100;20|40|25|8|15}, {"2010-01-01";"2010-04-01"|"2010-10-01"|"2011-02-01"|"2011-03-01"|"2011-06-01"}, 0.2095 5 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/ERROR_TYPE.data: -------------------------------------------------------------------------------- 1 | "#N/A" 2 | NULL, "#N/A" 3 | -1, "#N/A" 4 | 1.25, "#N/A" 5 | "", "#N/A" 6 | "2.5", "#N/A" 7 | TRUE, "#N/A" 8 | "#NULL!", 1 9 | "#DIV/0!", 2 10 | "#VALUE!", 3 11 | "#REF!", 4 12 | "#NAME?", 5 13 | "#NUM!", 6 14 | "#N/A", 7 15 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_BLANK.data: -------------------------------------------------------------------------------- 1 | TRUE 2 | NULL, TRUE 3 | -1, FALSE 4 | 0, FALSE 5 | 9, FALSE 6 | 1.5, FALSE 7 | "", FALSE 8 | "-1", FALSE 9 | "2", FALSE 10 | "-1.5", FALSE 11 | "ABC", FALSE 12 | "#VALUE!", FALSE 13 | "#N/A", FALSE 14 | "TRUE", FALSE 15 | TRUE, FALSE 16 | FALSE, FALSE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_ERR.data: -------------------------------------------------------------------------------- 1 | FALSE 2 | NULL, FALSE 3 | -1, FALSE 4 | 0, FALSE 5 | 9, FALSE 6 | 1.5, FALSE 7 | "", FALSE 8 | "-1", FALSE 9 | "2", FALSE 10 | "-1.5", FALSE 11 | "ABC", FALSE 12 | "#VALUE!", TRUE 13 | "#N/A", FALSE 14 | "TRUE", FALSE 15 | TRUE, FALSE 16 | FALSE, FALSE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_ERROR.data: -------------------------------------------------------------------------------- 1 | FALSE 2 | NULL, FALSE 3 | -1, FALSE 4 | 0, FALSE 5 | 9, FALSE 6 | 1.5, FALSE 7 | "", FALSE 8 | "-1", FALSE 9 | "2", FALSE 10 | "-1.5", FALSE 11 | "ABC", FALSE 12 | "#VALUE!", TRUE 13 | "#N/A", TRUE 14 | "TRUE", FALSE 15 | TRUE, FALSE 16 | FALSE, FALSE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_EVEN.data: -------------------------------------------------------------------------------- 1 | "#NAME?" 2 | NULL, "#NAME?" 3 | -1, FALSE 4 | 0, TRUE 5 | 9, FALSE 6 | 1.25, FALSE 7 | 1.5, FALSE 8 | 2.25, TRUE 9 | 2.5, TRUE 10 | "", "#VALUE!" 11 | "-1", FALSE 12 | "2", TRUE 13 | "-1.5", FALSE 14 | "2.5", TRUE 15 | "ABC", "#VALUE!" 16 | "#VALUE!", "#VALUE!" 17 | "#N/A", "#VALUE!" 18 | "TRUE", "#VALUE!" 19 | TRUE, "#VALUE!" 20 | FALSE, "#VALUE!" 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_LOGICAL.data: -------------------------------------------------------------------------------- 1 | FALSE 2 | NULL, FALSE 3 | -1, FALSE 4 | 0, FALSE 5 | 9, FALSE 6 | 1.5, FALSE 7 | "", FALSE 8 | "-1", FALSE 9 | "2", FALSE 10 | "-1.5", FALSE 11 | "ABC", FALSE 12 | "#VALUE!", FALSE 13 | "#N/A", FALSE 14 | "TRUE", FALSE 15 | TRUE, TRUE 16 | FALSE, TRUE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_NA.data: -------------------------------------------------------------------------------- 1 | FALSE 2 | NULL, FALSE 3 | -1, FALSE 4 | 0, FALSE 5 | 9, FALSE 6 | 1.5, FALSE 7 | "", FALSE 8 | "-1", FALSE 9 | "2", FALSE 10 | "-1.5", FALSE 11 | "ABC", FALSE 12 | "#VALUE!", FALSE 13 | "#N/A", TRUE 14 | "TRUE", FALSE 15 | TRUE, FALSE 16 | FALSE, FALSE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_NONTEXT.data: -------------------------------------------------------------------------------- 1 | TRUE 2 | NULL, TRUE 3 | -1, TRUE 4 | 0, TRUE 5 | 9, TRUE 6 | 1.5, TRUE 7 | "", FALSE 8 | "-1", FALSE 9 | "2", FALSE 10 | "-1.5", FALSE 11 | "ABC", FALSE 12 | "#VALUE!", TRUE 13 | "#N/A", TRUE 14 | "TRUE", FALSE 15 | TRUE, TRUE 16 | FALSE, TRUE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_NUMBER.data: -------------------------------------------------------------------------------- 1 | FALSE 2 | NULL, FALSE 3 | -1, TRUE 4 | 0, TRUE 5 | 9, TRUE 6 | 1.5, TRUE 7 | "", FALSE 8 | "-1", FALSE 9 | "2", FALSE 10 | "-1.5", FALSE 11 | "ABC", FALSE 12 | "#VALUE!", FALSE 13 | "#N/A", FALSE 14 | "TRUE", FALSE 15 | TRUE, FALSE 16 | FALSE, FALSE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_ODD.data: -------------------------------------------------------------------------------- 1 | "#NAME?" 2 | NULL, "#NAME?" 3 | -1, TRUE 4 | 0, FALSE 5 | 9, TRUE 6 | 1.25, TRUE 7 | 1.5, TRUE 8 | 2.25, FALSE 9 | 2.5, FALSE 10 | "", "#VALUE!" 11 | "-1", TRUE 12 | "2", FALSE 13 | "-1.5", TRUE 14 | "2.5", FALSE 15 | "ABC", "#VALUE!" 16 | "#VALUE!", "#VALUE!" 17 | "#N/A", "#VALUE!" 18 | "TRUE", "#VALUE!" 19 | TRUE, "#VALUE!" 20 | FALSE, "#VALUE!" 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/IS_TEXT.data: -------------------------------------------------------------------------------- 1 | FALSE 2 | NULL, FALSE 3 | -1, FALSE 4 | 0, FALSE 5 | 9, FALSE 6 | 1.5, FALSE 7 | "", TRUE 8 | "-1", TRUE 9 | "2", TRUE 10 | "-1.5", TRUE 11 | "ABC", TRUE 12 | "#VALUE!", FALSE 13 | "#N/A", FALSE 14 | "TRUE", TRUE 15 | TRUE, FALSE 16 | FALSE, FALSE 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/N.data: -------------------------------------------------------------------------------- 1 | 0 2 | NULL, 0 3 | -1, -1 4 | 1.25, 1.25 5 | "", 0 6 | "2.5", 0 7 | "TRUE", 0 8 | "ABCDE", 0 9 | TRUE, 1 10 | "#DIV/0!", "#DIV/0!" 11 | "#NUM!", "#NUM!" 12 | {}, 0 13 | {123}, 123 14 | {123|456}, 123 15 | {123|"A"}, 123 16 | {"A"|123}, 0 17 | {"A"|123;456|789}, 0 18 | {123|"A";456|789}, 123 19 | {123|456;"A"|789}, 123 20 | {123|456;789|"A"}, 123 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Functions/TYPE.data: -------------------------------------------------------------------------------- 1 | 1 2 | NULL, 1 3 | -1, 1 4 | 1.25, 1 5 | "", 2 6 | "2.5", 2 7 | "TRUE", 2 8 | "ABCDE", 2 9 | TRUE, 4 10 | "#DIV/0!", 16 11 | "#NUM!", 16 12 | {}, 1 13 | {1}, 1 14 | {1;2;3}, 64 15 | {1|2|3;4|5|6;7|8|9}, 64 16 | {|;|}, 64 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Logical/AND.data: -------------------------------------------------------------------------------- 1 | "#VALUE!" // No arguments 2 | NULL, TRUE // NULL 3 | TRUE, NULL, TRUE // Boolean TRUE and NULL 4 | FALSE, NULL, FALSE // Boolean FALSE and NULL 5 | TRUE, TRUE, TRUE // Both TRUE Booleans 6 | TRUE, FALSE, FALSE // Mixed Booleans 7 | FALSE, TRUE, FALSE // Mixed Booleans 8 | FALSE, FALSE, FALSE // Both FALSE Booleans 9 | TRUE, TRUE, FALSE, FALSE // Multiple Mixed Booleans 10 | TRUE, TRUE, TRUE, TRUE // Multiple TRUE Booleans 11 | FALSE, FALSE, FALSE, FALSE, FALSE // Multiple FALSE Booleans 12 | -1, -2, TRUE 13 | 0, 0, FALSE 14 | 0, 1, FALSE 15 | 1, 1, TRUE 16 | "1",1, "#VALUE!" 17 | "TRUE", 1, TRUE // 'TRUE' String 18 | "FALSE",TRUE, FALSE // 'FALSE' String 19 | "ABCD", 1, "#VALUE!" // Non-numeric String 20 | -2, 1, TRUE 21 | -2, 0, FALSE 22 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Logical/IF.data: -------------------------------------------------------------------------------- 1 | 0 2 | TRUE, 0 3 | FALSE, FALSE 4 | TRUE, "ABC", "ABC" 5 | FALSE, "ABC", FALSE 6 | TRUE, "ABC", "XYZ", "ABC" 7 | FALSE, "ABC", "XYZ", "XYZ" 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Logical/IFERROR.data: -------------------------------------------------------------------------------- 1 | , "Error", NULL 2 | TRUE, "Error", TRUE 3 | 42, "Error", 42 4 | "", "Error", "" 5 | "ABC", "Error", "ABC" 6 | "#VALUE!", "Error", "Error" 7 | "#NAME?", "Error", "Error" 8 | "#N/A", "Error", "Error" 9 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Logical/NOT.data: -------------------------------------------------------------------------------- 1 | TRUE 2 | NULL, TRUE 3 | -1, FALSE 4 | 0, TRUE 5 | 1, FALSE 6 | 2, FALSE 7 | -1.5, FALSE 8 | 1.5, FALSE 9 | "-1", "#VALUE!" 10 | "0", "#VALUE!" 11 | "1", "#VALUE!" 12 | "2", "#VALUE!" 13 | "-1.5", "#VALUE!" 14 | "1.5", "#VALUE!" 15 | "", "#VALUE!" 16 | "ABC", "#VALUE!" 17 | "FALSE",TRUE 18 | "TRUE", FALSE 19 | TRUE, FALSE 20 | FALSE, TRUE 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/Logical/OR.data: -------------------------------------------------------------------------------- 1 | "#VALUE!" // No arguments 2 | NULL, FALSE // NULL 3 | TRUE, NULL, TRUE // Boolean TRUE and NULL 4 | FALSE, NULL, FALSE // Boolean FALSE and NULL 5 | TRUE, TRUE, TRUE // Both TRUE Booleans 6 | TRUE, FALSE, TRUE // Mixed Booleans 7 | FALSE, TRUE, TRUE // Mixed Booleans 8 | FALSE, FALSE, FALSE // Both FALSE Booleans 9 | TRUE, TRUE, FALSE, TRUE // Multiple Mixed Booleans 10 | TRUE, TRUE, TRUE, TRUE // Multiple TRUE Booleans 11 | FALSE, FALSE, FALSE, FALSE, FALSE // Multiple FALSE Booleans 12 | -1, -2, TRUE 13 | 0, 0, FALSE 14 | 0, 1, TRUE 15 | 1, 1, TRUE 16 | "TRUE", 1, TRUE // 'TRUE' String 17 | "FALSE",TRUE, TRUE // 'FALSE' String 18 | "ABCD", 1, "#VALUE!" // Non-numeric String 19 | -2, 1, TRUE 20 | -2, 0, TRUE 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/ATAN2.data: -------------------------------------------------------------------------------- 1 | #x_num y_num Result 2 | 0, 0, "#DIV/0!" 3 | 1, 1, 0.785398163397 4 | -1, -1, -2.356194490192 5 | -1, 1, 2.356194490192 6 | 1, -1, -0.785398163397 7 | 0.5, 1, 1.107148717794 8 | -0.5, 2, 1.815774989922 9 | 1, 0.8, 0.674740942224 10 | 0.8, -0.6, -0.643501108793 11 | 1, -9, -1.460139105621 12 | 0.2, 0, 0.0 13 | 0.1, 0.2, 1.107148717794 14 | 0, 0.2, 1.570796326795 15 | "A", 0.2, "#VALUE!" 16 | TRUE, 1, 0.785398163397 17 | FALSE, -2.5, -1.570796326795 18 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/CEILING.data: -------------------------------------------------------------------------------- 1 | #number significance result 2 | 2.5, 1, 3.0 3 | -2.5, -2, -4.0 4 | 1.5, 0.1, 1.5 5 | 0.234, 0.01, 0.24 6 | -2.341, -0.1, -2.4 7 | 8, 0, 0.0 8 | 8, 1.5, 9.0 9 | 8, -1.5, "#NUM!" 10 | -8, 1.5, "#NUM!" 11 | -8, -1.5, -9.0 12 | 8.26, 0.05, 8.3 13 | 2.341, 0.05, 2.35 14 | 123.456, "#VALUE!" 15 | "PHPExcel", "#VALUE!" 16 | 210.67, 1, 211.0 17 | 210.67, 0.05, 210.70 18 | 210.63, 0.05, 210.65 19 | 2.98, 2, 4.0 20 | -2.98, 2, "#NUM!" 21 | -4.5, -1, -5.0 22 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/COMBIN.data: -------------------------------------------------------------------------------- 1 | #NumObjs NumInSet Result 2 | 7, 3, 35 3 | 8, 2, 28 4 | 8, 3, 56 5 | 8, 4, 70 6 | 100, 3, 161700 7 | -7, -10, "#NUM!" 8 | -7, 10, "#NUM!" 9 | 7, -10, "#NUM!" 10 | 2, 3, "#NUM!" 11 | 2, 2, 1 12 | 2, 1, 2 13 | 2, 0, 1 14 | 2.5, 2, 1 15 | "ABCD", "EFGH", "#VALUE!" 16 | 10, 5, 252 17 | 10, 3, 120 18 | 21, 5, 20349 19 | 6, 1, 6 20 | 6, 2, 15 21 | 6, 3, 20 22 | 6, 4, 15 23 | 6, 5, 6 24 | 6, 6, 1 25 | 6, 7, "#NUM!" 26 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/EVEN.data: -------------------------------------------------------------------------------- 1 | , 0 2 | 5.4, 6 3 | -5.4, -6 4 | 1.5, 2 5 | 0.1, 2 6 | 3, 4 7 | 2, 2 8 | -2, -2 9 | -1, -2 10 | "ABC", "#VALUE!" 11 | TRUE, 2 12 | FALSE, 0 13 | 0, 0 14 | 210.61, 212 15 | 2.98, 4 16 | -2.98, -4 17 | 6, 6 18 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/FACT.data: -------------------------------------------------------------------------------- 1 | 5, 120 2 | 1.9, 1 3 | 0, 1 4 | -4, "#NUM!" 5 | 1, 1 6 | 3, 6 7 | 6, 720 8 | 10, 3628800 9 | 3.2, 6 10 | "ABC", "#VALUE!" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/FACTDOUBLE.data: -------------------------------------------------------------------------------- 1 | 0, 1 2 | 6, 48 3 | 7, 105 4 | 5, 15 5 | 8, 384 6 | 13, 135135 7 | -1, "#NUM!" 8 | "ABC", "#VALUE!" 9 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/FLOOR.data: -------------------------------------------------------------------------------- 1 | 2.5, 1, 2 2 | -2.5, -2, -2 3 | -2.5, 2, "#NUM!" 4 | 2.5, -2, "#NUM!" 5 | 123.456,0, "#DIV/0!" 6 | 1.5, 0.1, 1.5 7 | 0.234, 0.01, 0.23 8 | 123.456, "#VALUE!" 9 | "ABC", "#VALUE!" 10 | 17, 3, 15 11 | 19, 4, 16 12 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/GCD.data: -------------------------------------------------------------------------------- 1 | 5, 2, 1 2 | 24, 36, 12 3 | 7, 1, 1 4 | 5, 0, 5 5 | 30, 15, 10, 5 6 | 42, 56, 140, 14 7 | 24, 28, 40, 4 8 | 27, 45, 54, 9 9 | 84, 126, 196, 14 10 | 3, 5, 7, 1 11 | 3, 5, 0, 1 12 | 3, 5, -7, "#NUM!" 13 | 3, 6, 12, 3 14 | 3, 6, "12", 3 15 | 3, 6, "ABC", "#VALUE!" 16 | 3, 3 17 | 15, 10, 25, 5 18 | 0, 8, 12, 4 19 | 7, 2, 1 20 | 0, 0, 0 21 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/INT.data: -------------------------------------------------------------------------------- 1 | , 0 2 | 5.4, 5 3 | -5.4, -6 4 | -3.2, -4 5 | 1.5, 1 6 | 0.1, 0 7 | -0.1, -1 8 | 3, 3 9 | 2, 2 10 | -2.01, -3 11 | -2, -2 12 | -1, -1 13 | "ABC", "#VALUE!" 14 | TRUE, 1 15 | FALSE, 0 16 | 0, 0 17 | "-3.5", -4 18 | 8.9, 8 19 | -8.9, -9 20 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/LCM.data: -------------------------------------------------------------------------------- 1 | 5, 2, 10 2 | 24, 36, 72 3 | 3, 7, 12, 84 4 | 24.9, 36.9, 72 5 | 6, 22, 121, 726 6 | 6, "ABC", "#VALUE!" 7 | 24, -12, "#NUM!" 8 | 3, 0, 0 9 | 1, 5, 5 10 | 15, 10, 25, 150 11 | 1, 8, 12, 24 12 | 7, 2, 14 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/MDETERM.data: -------------------------------------------------------------------------------- 1 | {1|2|3;4|5|6;7|8|9}, 6.661338147750940E-16 2 | {1.1|2.2|3.3;4.4|5.5|6.6;7.7|8.8|9.9}, 1.61204383175573E-15 3 | {10|20|30;40|50|60;70|80|90}, -4.26325641456060E-12 4 | {8|1|6;3|5|7;4|9|2}, -3.6E+02 5 | {5|2;7|1}, -9 6 | {6|4|2;3|5|3;2|3|4}, 40 7 | {0.2|1;0.35|10.8}, 1.81 8 | {0.2|1|-0.9;0.35|10.8|4;-3.15|5|}, "#VALUE!" 9 | {1|2;3|4}, -2 10 | {1|2|1;3|4|2;1|1|2}, -3 11 | {1|3|8|5;1|3|6|1;1|1|1|0;7|3|10|2}, 88 12 | {3|6|1;1|1|0;3|10|2}, 1 13 | {3|6;1|1}, -3 14 | {1|3|8|5;1|3|6|1}, "#VALUE!" 15 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/MMULT.data: -------------------------------------------------------------------------------- 1 | {1|2;3|4}, {1|2;3|4}, {7|10;15|22} 2 | {1|2|3;4|5|6;7|8|9}, {1|2|3;4|5|6;7|8|9}, {30|36|42;66|81|96;102|126|150} 3 | {1|2;3|4}, 2, "#VALUE!" // Mismatched dimensions 4 | {1|2;3|4}, {2}, "#VALUE!" // Mismatched dimensions 5 | {1.2;2.4}, {3.6|4.5}, {14.43|14.43;14.43|14.43} 6 | 2, {1|2;3|4}, "#VALUE!" // Mismatched dimensions 7 | {2}, {1|2;3|4}, "#VALUE!" // Mismatched dimensions 8 | {1|2;3|4}, {2|4}, "#VALUE!" 9 | {1|2;3|4}, {2;4}, {{10};{22}} 10 | {2|4}, {1|2;3|4}, {14|20} 11 | {2;4}, {1|2;3|4}, "#VALUE!" // Mismatched dimensions 12 | {1|2;3|4;5|6}, {1|2|3;4|5|6}, {9|12|15;19|26|33;29|40|51} 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/MOD.data: -------------------------------------------------------------------------------- 1 | 19, 17, 2 2 | 19, -13, -7 3 | 34, 17, 0 4 | 34, 0, "#DIV/0!" 5 | 3, 2, 1 6 | -3, 2, 1 7 | 3, -2, -1 8 | -3, -2, -1 9 | 2.5, 1.3, 1.2 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/MROUND.data: -------------------------------------------------------------------------------- 1 | 10, 3, 9 2 | -10, -3, -9 3 | 1.3, 0.2, 1.4 4 | 5, 0, 0 5 | 3.14159, 0.002, 3.142 6 | -3.14159, -.02, -3.14 7 | 31415.92654, 10, 31420 8 | 31415.92654, 1, 31416 9 | 5, -2, "#NUM!" 10 | "ABC", 1, "#VALUE!" 11 | 1.234, "ABC", "#VALUE!" 12 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/MULTINOMIAL.data: -------------------------------------------------------------------------------- 1 | 2, 3, 4, 1260 2 | 3, 1, 2, 5, 27720 3 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/ODD.data: -------------------------------------------------------------------------------- 1 | , 1 2 | 5.4, 7 3 | -5.4, -7 4 | 1.5, 3 5 | 0.1, 1 6 | 3, 3 7 | 2, 3 8 | -2, -3 9 | -1, -1 10 | "ABC", "#VALUE!" 11 | TRUE, 1 12 | FALSE, 1 13 | 0, 1 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/PRODUCT.data: -------------------------------------------------------------------------------- 1 | 5, 15, 30, 2250 2 | 5, 15, 30, 2, 4500 3 | 3, 6, 2, 8, 5, 1440 4 | 3, 4, 12 5 | 3, 4, 4.5, 54 6 | 3, 4, 4.5, -6.78, -366.12 7 | 3, 4, 4.5, -6.78, -2, 732.24 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/QUOTIENT.data: -------------------------------------------------------------------------------- 1 | 5, 2, 2 2 | 4.5, 3.1, 1 3 | -10, 3, -3 4 | 10, 2.2, 4 5 | 5.5, 2.667, 2 6 | -7, 2, -4 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/ROMAN.data: -------------------------------------------------------------------------------- 1 | 49, "XLIX" 2 | 50, "L" 3 | 2012, "MMXII" 4 | 999, "CMXCIX" 5 | 499, "CDXCIX" 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/ROUNDDOWN.data: -------------------------------------------------------------------------------- 1 | 662.79, 0, 662 2 | 662.79, 1, 662.7 3 | 54.1, -1, 50 4 | 55.1, -1, 50 5 | -23.67, 1, -23.6 6 | 3.2, 0, 3 7 | 3.2, 0.01, 3 8 | 76.9, 0, 76 9 | 3.14159, 3, 3.141 10 | -3.14159, 1, -3.1 11 | 31415.92654, -2, 31400 12 | 31415.92654, -1, 31410 13 | "ABC", 1, "#VALUE!" 14 | 1.234, "ABC", "#VALUE!" 15 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/ROUNDUP.data: -------------------------------------------------------------------------------- 1 | 662.79, 0, 663 2 | 662.79, 1, 662.8 3 | 54.1, -1, 60 4 | 55.1, -1, 60 5 | -23.62, 1, -23.7 6 | 3.2, 0, 4 7 | 3.2, 0.01, 4 8 | 76.9, 0, 77 9 | 3.14159, 3, 3.142 10 | -3.14159, 1, -3.2 11 | 31415.92654, -2, 31500 12 | 31415.92654, -1, 31420 13 | "ABC", 1, "#VALUE!" 14 | 1.234, "ABC", "#VALUE!" 15 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/SERIESSUM.data: -------------------------------------------------------------------------------- 1 | 5, 1, 1, {1|1|1|1|1}, 3905 2 | 2, 1, 2, {1|2|3|4|5}, 3186 3 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/SIGN.data: -------------------------------------------------------------------------------- 1 | -1.5, -1 2 | -1, -1 3 | -0.5, -1 4 | 0, 0 5 | 0.5, 1 6 | 1, 1 7 | 1.5, 1 8 | 2, 1 9 | 2.5, 1 10 | "ABC", "#VALUE!" 11 | TRUE, 1 12 | FALSE, 0 13 | "-3.5", -1 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/SQRTPI.data: -------------------------------------------------------------------------------- 1 | "ABC", "#VALUE!" 2 | -1.5, "#NUM!" 3 | -1, "#NUM!" 4 | -0.5, "#NUM!" 5 | 0, 0.000000000000000000 6 | 0.5, 1.253314137315500000 7 | 1, 1.772453850905520000 8 | 1.5, 2.170803763674800000 9 | 2, 2.506628274631000000 10 | 2.5, 2.802495608198960000 11 | 3, 3.069980123839470000 12 | 3.5, 3.315957521978270000 13 | 4, 3.544907701811030000 14 | 4.5, 3.759942411946500000 15 | 5, 3.963327297606010000 16 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/SUMSQ.data: -------------------------------------------------------------------------------- 1 | 3, 4, 25 2 | 5, 2, 1, 3, 39 3 | 5, 2, 1, 6, 66 4 | 1, 3, 10 5 | 1, 3, 2, 4, 30 6 | 3, 5, 7, 83 7 | 1, 2, 3, 14 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/MathTrig/TRUNC.data: -------------------------------------------------------------------------------- 1 | 3.14159, 2, 3.14 2 | 3.14159, 3, 3.141 3 | -3.14159, 2, -3.14 4 | -3.14159, 3, -3.141 5 | 31415.92654, 10, 31415.92654 6 | -31415.92654, 10, -31415.92654 7 | 31415.92654, 2, 31415.92 8 | 31415.92654, -2, 31400 9 | 31415.92654, -10, 0 10 | -31415.92654, -10, 0 11 | 12345.6789, -3, 12000 12 | 12345.6789, -2, 12300 13 | 12345.6789, -1, 12340 14 | 12345.6789, 0, 12345 15 | 12345.6789, 1, 12345.6 16 | 12345.6789, 2, 12345.67 17 | 12345.6789, 3, 12345.678 18 | "ABC", 2, "#VALUE!" 19 | 31415.92654, "ABC", "#VALUE!" 20 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/CHAR.data: -------------------------------------------------------------------------------- 1 | "ABC", "#VALUE!" 2 | -5, "#VALUE!" 3 | 65, "A" 4 | 123, "{" 5 | 126, "~" 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/CLEAN.data: -------------------------------------------------------------------------------- 1 | "HELLO ", "HELLO " 2 | " HELLO", "HELLO" 3 | "HELLO WORLD", "HELLO WORLD" 4 | TRUE, "TRUE" 5 | NULL, NULL 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/CODE.data: -------------------------------------------------------------------------------- 1 | , "#VALUE!" 2 | "", "#VALUE!" 3 | "ABC", 65 4 | 123, 49 5 | TRUE, 84 6 | "DEF", 68 7 | "PHPExcel", 80 8 | 1.5, 49 9 | "Mark Baker", 77 10 | "mark baker", 109 11 | "£125.00", 163 12 | "Бензин", 1234 -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/CONCATENATE.data: -------------------------------------------------------------------------------- 1 | "ABCDE", "FGHIJ", "ABCDEFGHIJ" 2 | 1, 2, 3, "123" 3 | "Boolean", "-", TRUE, "Boolean-TRUE" 4 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/DOLLAR.data: -------------------------------------------------------------------------------- 1 | 123.456, 2, '"$123.46"' 2 | 123.321, 2, '"$123.32"' 3 | 1234567, -3, '"$1,235,000"' 4 | 1234567, -5, '"$1,200,000"' 5 | "ABC", 2, "#NUM!" 6 | 123.456, "ABC", "#NUM!" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/FIND.data: -------------------------------------------------------------------------------- 1 | "E", "QWERTYUIOP", 3 2 | "D", "ABCDEFGHI", 4 3 | "E", TRUE, 4 4 | "E", FALSE, 5 5 | "A", "Mark Baker", "#VALUE!" 6 | "A", "MARK BAKER", 2 7 | "a", "Mark Baker", 2, 2 8 | "k", "Mark Baker", 2, 4 9 | "k", "Mark Baker", 5, 8 10 | "a", "Mark Baker", 3, 7 11 | "BITE", "BIT", "#VALUE!" 12 | "", "Mark Baker", 1 13 | "", "Mark Baker", 8, 8 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/FIXED.data: -------------------------------------------------------------------------------- 1 | 123456.789, 2, FALSE, '"123,456.79"' 2 | 123456.789, 1, TRUE, '"123456.8"' 3 | 123456.789, 2, TRUE, '"123456.79"' 4 | "ABC", 2, NULL, "#NUM!" 5 | 123.456, "ABC", NULL, "#NUM!" 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/LEFT.data: -------------------------------------------------------------------------------- 1 | , 1, "" 2 | "", 1, "" 3 | "QWERTYUIOP", -1, "#VALUE!" 4 | "ABCDEFGHI", 3, "ABC" 5 | TRUE, 2, "TR" 6 | FALSE, 2, "FA" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/LEN.data: -------------------------------------------------------------------------------- 1 | , 0 2 | "", 0 3 | "AbCdEfGhI", 9 4 | "MARK BAKER", 10 5 | TRUE, 4 6 | FALSE, 5 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/LOWER.data: -------------------------------------------------------------------------------- 1 | "AbCdEfGhI", "abcdefghi" 2 | "MARK BAKER", "mark baker" 3 | TRUE, "true" 4 | FALSE, "false" 5 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/MID.data: -------------------------------------------------------------------------------- 1 | , 1, 1, "" 2 | "", 1, 1, "" 3 | "QWERTYUIOP", -1, 1, "#VALUE!" 4 | "QWERTYUIOP", 5, -1, "#VALUE!" 5 | "QWERTYUIOP", 5, "" 6 | "QWERTYUIOP", 8, 20, "IOP" 7 | "ABCDEFGHI", 4, 3, "DEF" 8 | TRUE, 2, 1, "R" 9 | FALSE, 2, 2, "AL" 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/PROPER.data: -------------------------------------------------------------------------------- 1 | "MARK BAKER", "Mark Baker" 2 | TRUE, "True" 3 | FALSE, "False" 4 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/REPLACE.data: -------------------------------------------------------------------------------- 1 | "QWERTYUIOP", 3, 3, "DFG", "QWDFGYUIOP" 2 | "QWERTYUIOP", 5, 3, "DFG", "QWERDFGIOP" 3 | "QWERTYUIOP", 3, 0, "DFG", "QWDFGERTYUIOP" 4 | "QWERTYUIOP", 5, 0, "DFG", "QWERDFGTYUIOP" 5 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/RIGHT.data: -------------------------------------------------------------------------------- 1 | , 1, "" 2 | "", 1, "" 3 | "QWERTYUIOP", -1, "#VALUE!" 4 | "ABCDEFGHI", 3, "GHI" 5 | TRUE, 2, "UE" 6 | FALSE, 2, "SE" 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/SEARCH.data: -------------------------------------------------------------------------------- 1 | "E", "QWERTYUIOP", 3 2 | "D", "ABCDEFGHI", 4 3 | "E", TRUE, 4 4 | "E", FALSE, 5 5 | "A", "Mark Baker", 2 6 | "C", "Mark Baker", "#VALUE!" 7 | "A", "Mark Baker", 3, 7 8 | "K", "Mark Baker", 4 9 | "K", "Mark Baker", 5, 8 10 | "A", "Mark Baker", 2, 2 11 | "BITE", "BIT", "#VALUE!" 12 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/SUBSTITUTE.data: -------------------------------------------------------------------------------- 1 | "QWERTYUIOP", "ERT", "DFG", "QWDFGYUIOP" 2 | "Mark Baker", "a", "x", "Mxrk Bxker" 3 | "Mark Baker", "a", "x", 1, "Mxrk Baker" 4 | "Mark Baker", "x", "a", 1, "Mark Baker" 5 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/T.data: -------------------------------------------------------------------------------- 1 | 123456.789, NULL 2 | "123456.789", "123456.789" 3 | "Mark Baker", "Mark Baker" 4 | NULL, NULL 5 | TRUE, NULL 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/TEXT.data: -------------------------------------------------------------------------------- 1 | 123.456, '"$#,##0.00"', "$123.46" 2 | -123.456, '"$#,##0.00"', "$-123.46" 3 | 123.456, '"#,##0.00"', "123.46" 4 | 123.456, '"#,##0"', "123" 5 | 123.456, "00000", "00123" 6 | 123456.789, '"$#,##0.00"', '"$123,456.79"' 7 | 123456.789, '"#,##0.00"', '"123,456.79"' 8 | 123456.789, "0.00E+00", "1.23E05" 9 | -123456.789, "0.00E+00", "-1.23E05" 10 | 0.000012345, "0.00E+00", "1.23E-05" 11 | "19-Dec-1960", "yyyy-mm-dd", "1960-12-19" 12 | "1-Jan-2012", "yyyy-mm-dd", "2012-01-01" 13 | 1.75, "# ?/?", "1 3/4" 14 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/TRIM.data: -------------------------------------------------------------------------------- 1 | "HELLO ", "HELLO" 2 | " HELLO", "HELLO" 3 | " HELLO ", "HELLO" 4 | " HELLO", " HELLO" 5 | "HELLO WORLD", "HELLO WORLD" 6 | TRUE, "TRUE" 7 | NULL, NULL 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/UPPER.data: -------------------------------------------------------------------------------- 1 | "AbCdEfGhI", "ABCDEFGHI" 2 | "mark baker", "MARK BAKER" 3 | TRUE, "TRUE" 4 | FALSE, "FALSE" 5 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Calculation/TextData/VALUE.data: -------------------------------------------------------------------------------- 1 | "1000", "1000" 2 | "1 000", "1000" 3 | "$1 000", "1000" 4 | "£1 000", "#VALUE!" 5 | "1.1", "1.1" 6 | "1 000.1", "1000.1" 7 | "13 Monkeys", "#VALUE!" 8 | "1-Jan-2014", "41640" 9 | "12:34:56", "0.524259259259259" 10 | "2:46 AM", "0.11527777777778" 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Cell/DefaultValueBinder.data: -------------------------------------------------------------------------------- 1 | NULL, "null" 2 | , "null" 3 | "#NULL!", "e" 4 | FALSE, "b" 5 | TRUE, "b" 6 | "FALSE", "s" 7 | "TRUE", "s" 8 | "", "s" 9 | "ABC", "s" 10 | "123", "n" 11 | 123, "n" 12 | 0.123, "n" 13 | "-123", "n" 14 | "1.23E4", "n" 15 | "-1.23E4", "n" 16 | "1.23E-4", "n" 17 | "000123", "s" 18 | "=123", "f" 19 | "#DIV/0!", "e" 20 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellAbsoluteCoordinate.data: -------------------------------------------------------------------------------- 1 | "A1", "$A$1" 2 | "A12", "$A$12" 3 | "J1", "$J$1" 4 | "J20", "$J$20" 5 | "AI1", "$AI$1" 6 | "AI2012", "$AI$2012" 7 | "'Worksheet1'!AI256", "'Worksheet1'!$AI$256" 8 | "Worksheet1!AI256", "Worksheet1!$AI$256" 9 | "'Data Worksheet'!AI256", "'Data Worksheet'!$AI$256" 10 | "'Worksheet1'!$AI256", "'Worksheet1'!$AI$256" 11 | "'Worksheet1'!AI$256", "'Worksheet1'!$AI$256" 12 | "'Worksheet1'!$AI$256", "'Worksheet1'!$AI$256" 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellAbsoluteReference.data: -------------------------------------------------------------------------------- 1 | "A1", "$A$1" 2 | "A12", "$A$12" 3 | "J1", "$J$1" 4 | "J20", "$J$20" 5 | "AI1", "$AI$1" 6 | "AI2012", "$AI$2012" 7 | "'Worksheet1'!AI256", "'Worksheet1'!$AI$256" 8 | "Worksheet1!AI256", "Worksheet1!$AI$256" 9 | "'Data Worksheet'!AI256", "'Data Worksheet'!$AI$256" 10 | "AI", "$AI" 11 | 2012, "$2012" 12 | "Worksheet1!AI", "Worksheet1!$AI" 13 | "Worksheet1!256", "Worksheet1!$256" 14 | "'Worksheet1'!$AI256", "'Worksheet1'!$AI$256" 15 | "'Worksheet1'!AI$256", "'Worksheet1'!$AI$256" 16 | "'Worksheet1'!$AI$256", "'Worksheet1'!$AI$256" 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellBuildRange.data: -------------------------------------------------------------------------------- 1 | {"B4"|"E9"}, "B4:E9" 2 | {"B4"|"E9";"H2"|"O11"}, '"B4:E9,H2:O11"' 3 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellCoordinates.data: -------------------------------------------------------------------------------- 1 | "A1", {"A";1} 2 | "A12", {"A";12} 3 | "J1", {"J";1} 4 | "J20", {"J";20} 5 | "AI1", {"AI";1} 6 | "AI2012", {"AI";2012} 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellExtractAllCellReferencesInRange.data: -------------------------------------------------------------------------------- 1 | "B4:B6", {"B4";"B5";"B6"} 2 | '"B4:B6,D4:D6"', {"B4";"B5";"B6";"D4";"D5";"D6"} 3 | '"B4:B6 D4:D6"', {"B4";"B5";"B6";"D4";"D5";"D6"} 4 | "B4:D6", {"B4";"B5";"B6";"C4";"C5";"C6";"D4";"D5";"D6"} 5 | '"B4:D6,C5:E7"', {"B4";"B5";"B6";"C4";"C5";"C6";"C7";"D4";"D5";"D6";"D7";"E5";"E6";"E7"} 6 | '"B4:D6 C5:E7"', {"B4";"B5";"B6";"C4";"C5";"C6";"C7";"D4";"D5";"D6";"D7";"E5";"E6";"E7"} 7 | "B2:D4 C5:D5 E3:E5 D6:E6 F4:F6", {"B2";"B3";"B4";"C2";"C3";"C4";"C5";"D2";"D3";"D4";"D5";"D6";"E3";"E4";"E5";"E6";"F4";"F5";"F6"} 8 | "B2:D4 C3:E5 D4:F6", {"B2";"B3";"B4";"C2";"C3";"C4";"C5";"D2";"D3";"D4";"D5";"D6";"E3";"E4";"E5";"E6";"F4";"F5";"F6"} 9 | "B4:B6 B8", {"B4";"B5";"B6";"B8"} 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellGetRangeBoundaries.data: -------------------------------------------------------------------------------- 1 | "B4:E9", {"B"|4;"E"|9} 2 | "B4", {"B"|4;"B"|4} 3 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellRangeBoundaries.data: -------------------------------------------------------------------------------- 1 | "B4:E9", {2|4;5|9} 2 | "B4", {2|4;2|4} 3 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellRangeDimension.data: -------------------------------------------------------------------------------- 1 | "B4:E9", {4;6} 2 | "B4", {1;1} 3 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/CellSplitRange.data: -------------------------------------------------------------------------------- 1 | "B4:E9", {"B4"|"E9"} 2 | "B4", {"B4"} 3 | '"B4:E9,H2:O11"', {"B4"|"E9";"H2"|"O11"} 4 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/ColumnIndex.data: -------------------------------------------------------------------------------- 1 | 0, "A" 2 | 25, "Z" 3 | 26, "AA" 4 | 27, "AB" 5 | 51, "AZ" 6 | 52, "BA" 7 | 701, "ZZ" 8 | 702, "AAA" 9 | 1378, "BAA" 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/ColumnString.data: -------------------------------------------------------------------------------- 1 | "A", 1 2 | "Z", 26 3 | "AA", 27 4 | "AB", 28 5 | "AZ", 52 6 | "BA", 53 7 | "ZZ", 702 8 | "AAA", 703 9 | "BAA", 1379 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestInvalidUTF-16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestInvalidUTF-16.xml -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestInvalidUTF-16BE.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-16BE" standalone="yes"?> 2 | <!DOCTYPE root [ 3 | <!ENTITY x0 "DoS"> 4 | ]> 5 | 6 | <root> 7 | test: (&x0;) 8 | </root> -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestInvalidUTF-16LE.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-16LE" standalone="yes"?> 2 | <!DOCTYPE root [ 3 | <!ENTITY x0 "DoS"> 4 | ]> 5 | 6 | <root> 7 | test: (&x0;) 8 | </root> -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestInvalidUTF-8.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | 7 | test: (&x0;) 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestValidUTF-16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay3000bc/EnterpriseManagementSystem/dd1600e34009d8689a68cd48c9150894c9a91a91/vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestValidUTF-16.xml -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestValidUTF-16BE.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-16BE" standalone="yes"?> 2 | <root> 3 | test: Valid 4 | </root> -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestValidUTF-16LE.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-16LE" standalone="yes"?> 2 | <root> 3 | test: Valid 4 | </root> -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Reader/XEETestValidUTF-8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | test: Valid 4 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/CentimeterSizeToPixels.data: -------------------------------------------------------------------------------- 1 | 0.1, 3.7795275591 2 | 0.2, 7.5590551182 3 | 0.5, 18.8976377955 4 | 1.0, 37.795275591 5 | 2.0, 75.590551182 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/DateTimeExcelToPHP1900.data: -------------------------------------------------------------------------------- 1 | #Excel DateTimeStamp Result Comments 2 | 714, -2147472000 // PHP 32-bit Earliest Date 14-Dec-1901 3 | 1461, -2082931200 // 31-Dec-1903 4 | 1462, -2082844800 // Excel 1904 Calendar Base Date 01-Jan-1904 5 | 1463, -2082758400 // 02-Jan-1904 6 | 22269, -285120000 // 19-Dec-1960 7 | 25569, 0 // PHP Base Date 01-Jan-1970 8 | 30292, 408067200 // 07-Dec-1982 9 | 39611, 1213228800 // 12-Jun-2008 10 | 50424, 2147472000 // PHP 32-bit Latest Date 19-Jan-2038 11 | 1234.56789, -2102494934 // 18-May-1903 13:37:46 12 | 12345.6789, -1142494943 // 18-Oct-1933 16:17:37 13 | 0.5, 43200 // 12:00:00 14 | 0.75, 64800 // 18:00.00 15 | 0.12345, 10666 // 02:57:46 16 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/DateTimeExcelToPHP1904.data: -------------------------------------------------------------------------------- 1 | #Excel DateTimeStamp Result 2 | 1462, -1956528000 3 | 1463, -1956441600 4 | 22269, -158803200 5 | 25569, 126316800 6 | 30292, 534384000 7 | 39611, 1339545600 8 | 0.25, 21600 // 06:00:00 9 | 0.3333333333333333333, 28800 // 08:00.00 10 | 0.54321, 46933 // 02:57:46 11 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/DateTimeFormattedPHPToExcel1900.data: -------------------------------------------------------------------------------- 1 | #Year Month Day Hours Minutes Seconds Result Comments 2 | 1901, 12, 14, 714 // PHP 32-bit Earliest Date 14-Dec-1901 3 | 1903, 12, 31, 1461 // 31-Dec-1903 4 | 1904, 1, 1, 1462 // Excel 1904 Calendar Base Date 01-Jan-1904 5 | 1904, 1, 2, 1463 // 02-Jan-1904 6 | 1960, 12, 19, 22269 // 19-Dec-1960 7 | 1970, 1, 1, 25569 // PHP Base Date 01-Jan-1970 8 | 1982, 12, 7, 30292 // 07-Dec-1982 9 | 2008, 6, 12, 39611 // 12-Jun-2008 10 | 2038, 1, 19, 50424 // PHP 32-bit Latest Date 19-Jan-2038 11 | 1903, 5, 18, 13, 37, 46, 1234.56789 // 18-May-1903 13:37:46 12 | 1933, 10, 18, 16, 17, 37, 12345.6789 // 18-Oct-1933 16:17:37 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/DateTimePHPToExcel1900.data: -------------------------------------------------------------------------------- 1 | #Excel DateTimeStamp Result Comments 2 | -2147472000, 714 // PHP 32-bit Earliest Date 14-Dec-1901 3 | -2082931200, 1461 // 31-Dec-1903 4 | -2082844800, 1462 // Excel 1904 Calendar Base Date 01-Jan-1904 5 | -2082758400, 1463 // 02-Jan-1904 6 | -285120000, 22269 // 19-Dec-1960 7 | 0, 25569 // PHP Base Date 01-Jan-1970 8 | 408067200, 30292 // 07-Dec-1982 9 | 1213228800, 39611 // 12-Jun-2008 10 | 2147472000, 50424 // PHP 32-bit Latest Date 19-Jan-2038 11 | -2102494934, 1234.56789 // 18-May-1903 13:37:46 12 | -1142494943, 12345.6789 // 18-Oct-1933 16:17:37 13 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/DateTimePHPToExcel1904.data: -------------------------------------------------------------------------------- 1 | #Excel DateTimeStamp Result 2 | -1956528000, 1462 3 | -1956441600, 1463 4 | -158803200, 22269 5 | 126316800, 25569 6 | 534384000, 30292 7 | 1339545600, 39611 8 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/FontSizeToPixels.data: -------------------------------------------------------------------------------- 1 | 6, 8 2 | 7, 9 3 | 8, 10 4 | 9, 12 5 | 10, 13 6 | 11, 14 7 | 12, 16 8 | 14, 18 9 | 16, 21 10 | 18, 24 11 | 20, 26 12 | 22, 29 13 | 24, 32 14 | 36, 48 15 | 48, 64 16 | 60, 80 17 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/InchSizeToPixels.data: -------------------------------------------------------------------------------- 1 | 0.1, 9.6 2 | 0.2, 19.2 3 | 0.5, 48.0 4 | 1.0, 96.0 5 | 2.0, 192.0 6 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Shared/PasswordHashes.data: -------------------------------------------------------------------------------- 1 | "PHPExcel", "8053" 2 | "Mark Baker", "877D" 3 | "!+&=()~§±æþ", "C0EA" 4 | "μυστικό κωδικό πρόσβασης", "FFFF26DD" 5 | "গোপন পাসওয়ার্ড", "E858" 6 | "Секретный пароль", "EA5F" 7 | "秘密口令", "C07E" 8 | "leyndarmál lykilorð", "99E8" 9 | "", "CE4B" 10 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Style/ColorChangeBrightness.data: -------------------------------------------------------------------------------- 1 | "FFAABBCC", 0.1, "FFB2C1D1" // RGBA 2 | "FFAABBCC", -0.1, "FF99A8B7" // RGBA 3 | "AABBCC", 0.1, "B2C1D1" // RGB 4 | "AABBCC", -0.1, "99A8B7" // RGB 5 | "FF0000", 0.1, "FF1919" 6 | "FF0000", -0.1, "E50000" 7 | "FF8080", 0.1, "FF8C8C" 8 | "FF8080", -0.1, "E57373" 9 | "FF0000", 0.15, "FF2626" 10 | "FF0000", -0.15, "D80000" 11 | "FF8080", 0.15, "FF9393" 12 | "FF8080", -0.15, "D86C6C" 13 | "FFF008", 0.5, "FFF783" 14 | "FFF008", -0.5, "7F7804" 15 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Style/ColorGetBlue.data: -------------------------------------------------------------------------------- 1 | "FFAABBCC", "CC" // RGBA (hex) 2 | "FFAABBCC", FALSE, 204 // RGBA (decimal) 3 | "AABBCC", "CC" // RGB (hex) 4 | "AABBCC", FALSE, 204 // RGB (decimal) 5 | "FFFF00", "00" 6 | "FFFF00", FALSE, 0 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Style/ColorGetGreen.data: -------------------------------------------------------------------------------- 1 | "FFAABBCC", "BB" // RGBA (hex) 2 | "FFAABBCC", FALSE, 187 // RGBA (decimal) 3 | "AABBCC", "BB" // RGB (hex) 4 | "AABBCC", FALSE, 187 // RGB (decimal) 5 | "FF00FF", "00" 6 | "FF00FF", FALSE, 0 7 | -------------------------------------------------------------------------------- /vendor/phpoffice/phpexcel/unitTests/rawTestData/Style/ColorGetRed.data: -------------------------------------------------------------------------------- 1 | "FFAABBCC", "AA" // RGBA (hex) 2 | "FFAABBCC", FALSE, 170 // RGBA (decimal) 3 | "AABBCC", "AA" // RGB (hex) 4 | "AABBCC", FALSE, 170 // RGB (decimal) 5 | "00FFFF", "00" 6 | "00FFFF", FALSE, 0 7 | -------------------------------------------------------------------------------- /vendor/ticketpark/htmlphpexcel/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /vendor/ticketpark/htmlphpexcel/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ticketpark/htmlphpexcel", 3 | "type": "library", 4 | "description": "A php library based on PHPExcel to convert html tables to Excel files, including styling.", 5 | "keywords": ["html", "tables", "excel", "phpexcel"], 6 | "homepage": "https://github.com/Ticketpark/HtmlPhpExcel", 7 | "license": "MIT", 8 | "authors": [ 9 | {"name": "Manuel Reinhard", "email": "manu@sprain.ch"} 10 | ], 11 | "require": { 12 | "php": ">=5.3.2", 13 | "doctrine/common": "~2.4", 14 | "phpoffice/phpexcel": "~1.8" 15 | }, 16 | "autoload": { 17 | "psr-4": { "Ticketpark\\HtmlPhpExcel\\": "lib/HtmlPhpExcel" } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/ticketpark/htmlphpexcel/example/example.php: -------------------------------------------------------------------------------- 1 | process()->output(); 7 | -------------------------------------------------------------------------------- /vendor/ticketpark/htmlphpexcel/lib/HtmlPhpExcel/Exception/HtmlPhpExcelException.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | class HtmlPhpExcelException extends \Exception 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/ticketpark/htmlphpexcel/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ./Tests 6 | 7 | 8 | 9 | 10 | ./Tests 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/ticketpark/htmlphpexcel/tests/testfiles/test.html: -------------------------------------------------------------------------------- 1 |
--------------------------------------------------------------------------------