Copy disabled (too large)
Download .txt
Showing preview only (25,350K chars total). Download the full file to get everything.
Repository: kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System
Branch: master
Commit: 03d19285fd9f
Files: 1767
Total size: 54.1 MB
Directory structure:
gitextract_tlss02lk/
├── .github/
│ └── FUNDING.yml
├── .htaccess
├── README.md
├── application/
│ ├── .htaccess
│ ├── cache/
│ │ ├── .htaccess
│ │ └── index.html
│ ├── config/
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── memcached.php
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── profiler.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ └── user_agents.php
│ ├── controllers/
│ │ ├── Home.php
│ │ ├── Loader.php
│ │ ├── Registration.php
│ │ └── index.html
│ ├── core/
│ │ ├── ADMIN_Controller.php
│ │ ├── HEAD_Controller.php
│ │ ├── MY_Controller.php
│ │ ├── MY_Loader.php
│ │ ├── MY_Router.php
│ │ ├── USER_Controller.php
│ │ └── index.html
│ ├── helpers/
│ │ ├── except_letters_helper.php
│ │ ├── full_document_number_helper.php
│ │ ├── get_client_ip_address_helper.php
│ │ ├── geterror_helper.php
│ │ ├── index.html
│ │ ├── lang_url_helper.php
│ │ ├── pagination_helper.php
│ │ ├── thisyeardates_helper.php
│ │ └── uploader_helper.php
│ ├── hooks/
│ │ └── index.html
│ ├── index.html
│ ├── language/
│ │ ├── bulgarian/
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ └── all.js
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── public_lang.php
│ │ │ ├── titles_lang.php
│ │ │ ├── upload_lang.php
│ │ │ └── users_lang.php
│ │ ├── english/
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ └── all.js
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── public_lang.php
│ │ │ ├── titles_lang.php
│ │ │ ├── upload_lang.php
│ │ │ └── users_lang.php
│ │ ├── france/
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ └── all.js
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── public_lang.php
│ │ │ ├── titles_lang.php
│ │ │ ├── upload_lang.php
│ │ │ └── users_lang.php
│ │ └── index.html
│ ├── libraries/
│ │ ├── HtmlToPdf.php
│ │ ├── Language.php
│ │ ├── MailSend.php
│ │ ├── PHPExcel/
│ │ │ ├── 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/
│ │ │ │ │ ├── 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
│ │ │ │ ├── Calculation.php
│ │ │ │ ├── Cell/
│ │ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ │ ├── DataType.php
│ │ │ │ │ ├── DataValidation.php
│ │ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ │ ├── Hyperlink.php
│ │ │ │ │ └── IValueBinder.php
│ │ │ │ ├── Cell.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
│ │ │ │ ├── Chart.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/
│ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ └── Theme.php
│ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ ├── Excel5/
│ │ │ │ │ │ ├── Color/
│ │ │ │ │ │ │ ├── BIFF5.php
│ │ │ │ │ │ │ ├── BIFF8.php
│ │ │ │ │ │ │ └── BuiltIn.php
│ │ │ │ │ │ ├── Color.php
│ │ │ │ │ │ ├── ErrorCode.php
│ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ ├── MD5.php
│ │ │ │ │ │ ├── RC4.php
│ │ │ │ │ │ └── Style/
│ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ └── FillPattern.php
│ │ │ │ │ ├── Excel5.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Gnumeric.php
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── IReadFilter.php
│ │ │ │ │ ├── IReader.php
│ │ │ │ │ ├── OOCalc.php
│ │ │ │ │ └── SYLK.php
│ │ │ │ ├── ReferenceHelper.php
│ │ │ │ ├── RichText/
│ │ │ │ │ ├── ITextElement.php
│ │ │ │ │ ├── Run.php
│ │ │ │ │ └── TextElement.php
│ │ │ │ ├── RichText.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Shared/
│ │ │ │ │ ├── CodePage.php
│ │ │ │ │ ├── Date.php
│ │ │ │ │ ├── Drawing.php
│ │ │ │ │ ├── Escher/
│ │ │ │ │ │ ├── DgContainer/
│ │ │ │ │ │ │ ├── SpgrContainer/
│ │ │ │ │ │ │ │ └── SpContainer.php
│ │ │ │ │ │ │ └── SpgrContainer.php
│ │ │ │ │ │ ├── DgContainer.php
│ │ │ │ │ │ ├── DggContainer/
│ │ │ │ │ │ │ ├── BstoreContainer/
│ │ │ │ │ │ │ │ ├── BSE/
│ │ │ │ │ │ │ │ │ └── Blip.php
│ │ │ │ │ │ │ │ └── BSE.php
│ │ │ │ │ │ │ └── BstoreContainer.php
│ │ │ │ │ │ └── DggContainer.php
│ │ │ │ │ ├── Escher.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/
│ │ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ │ ├── PPS/
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ └── Root.php
│ │ │ │ │ │ └── PPS.php
│ │ │ │ │ ├── OLE.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/
│ │ │ │ │ ├── Alignment.php
│ │ │ │ │ ├── Border.php
│ │ │ │ │ ├── Borders.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Conditional.php
│ │ │ │ │ ├── Fill.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── NumberFormat.php
│ │ │ │ │ ├── Protection.php
│ │ │ │ │ └── Supervisor.php
│ │ │ │ ├── Style.php
│ │ │ │ ├── Worksheet/
│ │ │ │ │ ├── AutoFilter/
│ │ │ │ │ │ ├── Column/
│ │ │ │ │ │ │ └── Rule.php
│ │ │ │ │ │ └── Column.php
│ │ │ │ │ ├── AutoFilter.php
│ │ │ │ │ ├── BaseDrawing.php
│ │ │ │ │ ├── CellIterator.php
│ │ │ │ │ ├── Column.php
│ │ │ │ │ ├── ColumnCellIterator.php
│ │ │ │ │ ├── ColumnDimension.php
│ │ │ │ │ ├── ColumnIterator.php
│ │ │ │ │ ├── Dimension.php
│ │ │ │ │ ├── Drawing/
│ │ │ │ │ │ └── Shadow.php
│ │ │ │ │ ├── Drawing.php
│ │ │ │ │ ├── HeaderFooter.php
│ │ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ │ ├── MemoryDrawing.php
│ │ │ │ │ ├── PageMargins.php
│ │ │ │ │ ├── PageSetup.php
│ │ │ │ │ ├── Protection.php
│ │ │ │ │ ├── Row.php
│ │ │ │ │ ├── RowCellIterator.php
│ │ │ │ │ ├── RowDimension.php
│ │ │ │ │ ├── RowIterator.php
│ │ │ │ │ └── SheetView.php
│ │ │ │ ├── Worksheet.php
│ │ │ │ ├── WorksheetIterator.php
│ │ │ │ ├── Writer/
│ │ │ │ │ ├── Abstract.php
│ │ │ │ │ ├── CSV.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
│ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ ├── Excel5/
│ │ │ │ │ │ ├── BIFFwriter.php
│ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ ├── Parser.php
│ │ │ │ │ │ ├── Workbook.php
│ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ └── Xf.php
│ │ │ │ │ ├── Excel5.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── IWriter.php
│ │ │ │ │ ├── OpenDocument/
│ │ │ │ │ │ ├── Cell/
│ │ │ │ │ │ │ └── Comment.php
│ │ │ │ │ │ ├── Content.php
│ │ │ │ │ │ ├── Meta.php
│ │ │ │ │ │ ├── MetaInf.php
│ │ │ │ │ │ ├── Mimetype.php
│ │ │ │ │ │ ├── Settings.php
│ │ │ │ │ │ ├── Styles.php
│ │ │ │ │ │ ├── Thumbnails.php
│ │ │ │ │ │ └── WriterPart.php
│ │ │ │ │ ├── OpenDocument.php
│ │ │ │ │ ├── PDF/
│ │ │ │ │ │ ├── Core.php
│ │ │ │ │ │ ├── DomPDF.php
│ │ │ │ │ │ ├── mPDF.php
│ │ │ │ │ │ └── tcPDF.php
│ │ │ │ │ └── PDF.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
│ │ │ └── PHPExcel.php
│ │ ├── PHPMailer/
│ │ │ ├── LICENSE
│ │ │ ├── PHPMailerAutoload.php
│ │ │ ├── VERSION
│ │ │ ├── class.phpmailer.php
│ │ │ ├── class.phpmaileroauth.php
│ │ │ ├── class.phpmaileroauthgoogle.php
│ │ │ ├── class.pop3.php
│ │ │ ├── class.smtp.php
│ │ │ ├── composer.json
│ │ │ ├── examples/
│ │ │ │ ├── DKIM.phps
│ │ │ │ ├── code_generator.phps
│ │ │ │ ├── contactform.phps
│ │ │ │ ├── contents.html
│ │ │ │ ├── contentsutf8.html
│ │ │ │ ├── exceptions.phps
│ │ │ │ ├── gmail.phps
│ │ │ │ ├── gmail_xoauth.phps
│ │ │ │ ├── index.html
│ │ │ │ ├── mail.phps
│ │ │ │ ├── mailing_list.phps
│ │ │ │ ├── pop_before_smtp.phps
│ │ │ │ ├── scripts/
│ │ │ │ │ ├── XRegExp.js
│ │ │ │ │ ├── shAutoloader.js
│ │ │ │ │ ├── shBrushPhp.js
│ │ │ │ │ ├── shCore.js
│ │ │ │ │ └── shLegacy.js
│ │ │ │ ├── send_file_upload.phps
│ │ │ │ ├── send_multiple_file_upload.phps
│ │ │ │ ├── sendmail.phps
│ │ │ │ ├── signed-mail.phps
│ │ │ │ ├── smtp.phps
│ │ │ │ ├── smtp_check.phps
│ │ │ │ ├── smtp_no_auth.phps
│ │ │ │ ├── ssl_options.phps
│ │ │ │ └── styles/
│ │ │ │ ├── shCore.css
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ ├── shCoreDjango.css
│ │ │ │ ├── shCoreEclipse.css
│ │ │ │ ├── shCoreEmacs.css
│ │ │ │ ├── shCoreFadeToGrey.css
│ │ │ │ ├── shCoreMDUltra.css
│ │ │ │ ├── shCoreMidnight.css
│ │ │ │ ├── shCoreRDark.css
│ │ │ │ ├── shThemeAppleScript.css
│ │ │ │ ├── shThemeDefault.css
│ │ │ │ ├── shThemeDjango.css
│ │ │ │ ├── shThemeEclipse.css
│ │ │ │ ├── shThemeEmacs.css
│ │ │ │ ├── shThemeFadeToGrey.css
│ │ │ │ ├── shThemeMDUltra.css
│ │ │ │ ├── shThemeMidnight.css
│ │ │ │ ├── shThemeRDark.css
│ │ │ │ └── shThemeVisualStudio.css
│ │ │ ├── extras/
│ │ │ │ ├── EasyPeasyICS.php
│ │ │ │ ├── README.md
│ │ │ │ ├── htmlfilter.php
│ │ │ │ └── ntlm_sasl_client.php
│ │ │ ├── get_oauth_token.php
│ │ │ └── language/
│ │ │ ├── phpmailer.lang-am.php
│ │ │ ├── phpmailer.lang-ar.php
│ │ │ ├── phpmailer.lang-az.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-hr.php
│ │ │ ├── phpmailer.lang-hu.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-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-rs.php
│ │ │ ├── phpmailer.lang-ru.php
│ │ │ ├── phpmailer.lang-sk.php
│ │ │ ├── phpmailer.lang-sl.php
│ │ │ ├── phpmailer.lang-sv.php
│ │ │ ├── phpmailer.lang-tr.php
│ │ │ ├── phpmailer.lang-uk.php
│ │ │ ├── phpmailer.lang-vi.php
│ │ │ ├── phpmailer.lang-zh.php
│ │ │ └── phpmailer.lang-zh_cn.php
│ │ ├── Permissions.php
│ │ ├── Plans.php
│ │ ├── dompdf/
│ │ │ ├── .travis.yml
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE.LGPL
│ │ │ ├── README.md
│ │ │ ├── VERSION
│ │ │ ├── autoload.inc.php
│ │ │ ├── composer.json
│ │ │ ├── lib/
│ │ │ │ ├── Cpdf.php
│ │ │ │ ├── fonts/
│ │ │ │ │ ├── DejaVuSans-Bold.ufm
│ │ │ │ │ ├── DejaVuSans-Bold.ufm.php
│ │ │ │ │ ├── DejaVuSans-BoldOblique.ufm
│ │ │ │ │ ├── DejaVuSans-Oblique.ufm
│ │ │ │ │ ├── DejaVuSans.ufm
│ │ │ │ │ ├── DejaVuSans.ufm.php
│ │ │ │ │ ├── DejaVuSansMono-Bold.ufm
│ │ │ │ │ ├── DejaVuSansMono-BoldOblique.ufm
│ │ │ │ │ ├── DejaVuSansMono-Oblique.ufm
│ │ │ │ │ ├── DejaVuSansMono.ufm
│ │ │ │ │ ├── DejaVuSerif-Bold.ufm
│ │ │ │ │ ├── DejaVuSerif-BoldItalic.ufm
│ │ │ │ │ ├── DejaVuSerif-Italic.ufm
│ │ │ │ │ ├── DejaVuSerif.ufm
│ │ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm
│ │ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm.php
│ │ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm
│ │ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm.php
│ │ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm
│ │ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm.php
│ │ │ │ │ ├── dompdf_font_family_cache.dist.php
│ │ │ │ │ ├── dompdf_font_family_cache.php
│ │ │ │ │ └── mustRead.html
│ │ │ │ ├── html5lib/
│ │ │ │ │ ├── Data.php
│ │ │ │ │ ├── InputStream.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Tokenizer.php
│ │ │ │ │ ├── TreeBuilder.php
│ │ │ │ │ └── named-character-references.ser
│ │ │ │ ├── php-css-parser/
│ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── composer.json
│ │ │ │ │ └── src/
│ │ │ │ │ ├── CSSList/
│ │ │ │ │ │ ├── AtRuleBlockList.php
│ │ │ │ │ │ ├── CSSBlockList.php
│ │ │ │ │ │ ├── CSSList.php
│ │ │ │ │ │ ├── Document.php
│ │ │ │ │ │ └── KeyFrame.php
│ │ │ │ │ ├── Comment/
│ │ │ │ │ │ ├── Comment.php
│ │ │ │ │ │ └── Commentable.php
│ │ │ │ │ ├── OutputFormat.php
│ │ │ │ │ ├── OutputFormatter.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Parsing/
│ │ │ │ │ │ ├── OutputException.php
│ │ │ │ │ │ ├── ParserState.php
│ │ │ │ │ │ ├── SourceException.php
│ │ │ │ │ │ ├── UnexpectedEOFException.php
│ │ │ │ │ │ └── UnexpectedTokenException.php
│ │ │ │ │ ├── Property/
│ │ │ │ │ │ ├── AtRule.php
│ │ │ │ │ │ ├── CSSNamespace.php
│ │ │ │ │ │ ├── Charset.php
│ │ │ │ │ │ ├── Import.php
│ │ │ │ │ │ ├── KeyframeSelector.php
│ │ │ │ │ │ └── Selector.php
│ │ │ │ │ ├── Renderable.php
│ │ │ │ │ ├── Rule/
│ │ │ │ │ │ └── Rule.php
│ │ │ │ │ ├── RuleSet/
│ │ │ │ │ │ ├── AtRuleSet.php
│ │ │ │ │ │ ├── DeclarationBlock.php
│ │ │ │ │ │ └── RuleSet.php
│ │ │ │ │ ├── Settings.php
│ │ │ │ │ └── Value/
│ │ │ │ │ ├── CSSFunction.php
│ │ │ │ │ ├── CSSString.php
│ │ │ │ │ ├── CalcFunction.php
│ │ │ │ │ ├── CalcRuleValueList.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── LineName.php
│ │ │ │ │ ├── PrimitiveValue.php
│ │ │ │ │ ├── RuleValueList.php
│ │ │ │ │ ├── Size.php
│ │ │ │ │ ├── URL.php
│ │ │ │ │ ├── Value.php
│ │ │ │ │ └── ValueList.php
│ │ │ │ ├── php-font-lib/
│ │ │ │ │ ├── .htaccess
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── bower.json
│ │ │ │ │ ├── composer.json
│ │ │ │ │ ├── index.php
│ │ │ │ │ └── src/
│ │ │ │ │ └── FontLib/
│ │ │ │ │ ├── AdobeFontMetrics.php
│ │ │ │ │ ├── Autoloader.php
│ │ │ │ │ ├── BinaryStream.php
│ │ │ │ │ ├── EOT/
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Header.php
│ │ │ │ │ ├── EncodingMap.php
│ │ │ │ │ ├── Exception/
│ │ │ │ │ │ └── FontNotFoundException.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── Glyph/
│ │ │ │ │ │ ├── Outline.php
│ │ │ │ │ │ ├── OutlineComponent.php
│ │ │ │ │ │ ├── OutlineComposite.php
│ │ │ │ │ │ └── OutlineSimple.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ ├── OpenType/
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ │ ├── Table/
│ │ │ │ │ │ ├── DirectoryEntry.php
│ │ │ │ │ │ ├── Table.php
│ │ │ │ │ │ └── Type/
│ │ │ │ │ │ ├── cmap.php
│ │ │ │ │ │ ├── glyf.php
│ │ │ │ │ │ ├── head.php
│ │ │ │ │ │ ├── hhea.php
│ │ │ │ │ │ ├── hmtx.php
│ │ │ │ │ │ ├── kern.php
│ │ │ │ │ │ ├── loca.php
│ │ │ │ │ │ ├── maxp.php
│ │ │ │ │ │ ├── name.php
│ │ │ │ │ │ ├── nameRecord.php
│ │ │ │ │ │ ├── os2.php
│ │ │ │ │ │ └── post.php
│ │ │ │ │ ├── TrueType/
│ │ │ │ │ │ ├── Collection.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ ├── Header.php
│ │ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ │ └── WOFF/
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ ├── php-svg-lib/
│ │ │ │ │ ├── COPYING
│ │ │ │ │ ├── COPYING.GPL
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── composer.json
│ │ │ │ │ └── src/
│ │ │ │ │ ├── Svg/
│ │ │ │ │ │ ├── DefaultStyle.php
│ │ │ │ │ │ ├── Document.php
│ │ │ │ │ │ ├── Gradient/
│ │ │ │ │ │ │ └── Stop.php
│ │ │ │ │ │ ├── Style.php
│ │ │ │ │ │ ├── Surface/
│ │ │ │ │ │ │ ├── CPdf.php
│ │ │ │ │ │ │ ├── SurfaceCpdf.php
│ │ │ │ │ │ │ ├── SurfaceGmagick.php
│ │ │ │ │ │ │ ├── SurfaceInterface.php
│ │ │ │ │ │ │ └── SurfacePDFLib.php
│ │ │ │ │ │ └── Tag/
│ │ │ │ │ │ ├── AbstractTag.php
│ │ │ │ │ │ ├── Anchor.php
│ │ │ │ │ │ ├── Circle.php
│ │ │ │ │ │ ├── ClipPath.php
│ │ │ │ │ │ ├── Ellipse.php
│ │ │ │ │ │ ├── Group.php
│ │ │ │ │ │ ├── Image.php
│ │ │ │ │ │ ├── Line.php
│ │ │ │ │ │ ├── LinearGradient.php
│ │ │ │ │ │ ├── Path.php
│ │ │ │ │ │ ├── Polygon.php
│ │ │ │ │ │ ├── Polyline.php
│ │ │ │ │ │ ├── RadialGradient.php
│ │ │ │ │ │ ├── Rect.php
│ │ │ │ │ │ ├── Shape.php
│ │ │ │ │ │ ├── Stop.php
│ │ │ │ │ │ ├── StyleTag.php
│ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ └── UseTag.php
│ │ │ │ │ └── autoload.php
│ │ │ │ └── res/
│ │ │ │ └── html.css
│ │ │ ├── phpcs.xml
│ │ │ ├── phpunit.xml.dist
│ │ │ └── src/
│ │ │ ├── Adapter/
│ │ │ │ ├── CPDF.php
│ │ │ │ ├── GD.php
│ │ │ │ └── PDFLib.php
│ │ │ ├── Autoloader.php
│ │ │ ├── Canvas.php
│ │ │ ├── CanvasFactory.php
│ │ │ ├── Cellmap.php
│ │ │ ├── Css/
│ │ │ │ ├── AttributeTranslator.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Style.php
│ │ │ │ └── Stylesheet.php
│ │ │ ├── Dompdf.php
│ │ │ ├── Exception/
│ │ │ │ └── ImageException.php
│ │ │ ├── Exception.php
│ │ │ ├── FontMetrics.php
│ │ │ ├── Frame/
│ │ │ │ ├── Factory.php
│ │ │ │ ├── FrameList.php
│ │ │ │ ├── FrameListIterator.php
│ │ │ │ ├── FrameTree.php
│ │ │ │ ├── FrameTreeIterator.php
│ │ │ │ └── FrameTreeList.php
│ │ │ ├── Frame.php
│ │ │ ├── FrameDecorator/
│ │ │ │ ├── AbstractFrameDecorator.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── ListBulletImage.php
│ │ │ │ ├── NullFrameDecorator.php
│ │ │ │ ├── Page.php
│ │ │ │ ├── Table.php
│ │ │ │ ├── TableCell.php
│ │ │ │ ├── TableRow.php
│ │ │ │ ├── TableRowGroup.php
│ │ │ │ └── Text.php
│ │ │ ├── FrameReflower/
│ │ │ │ ├── AbstractFrameReflower.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── NullFrameReflower.php
│ │ │ │ ├── Page.php
│ │ │ │ ├── Table.php
│ │ │ │ ├── TableCell.php
│ │ │ │ ├── TableRow.php
│ │ │ │ ├── TableRowGroup.php
│ │ │ │ └── Text.php
│ │ │ ├── Helpers.php
│ │ │ ├── Image/
│ │ │ │ └── Cache.php
│ │ │ ├── JavascriptEmbedder.php
│ │ │ ├── LineBox.php
│ │ │ ├── Options.php
│ │ │ ├── PhpEvaluator.php
│ │ │ ├── Positioner/
│ │ │ │ ├── Absolute.php
│ │ │ │ ├── AbstractPositioner.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Fixed.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── NullPositioner.php
│ │ │ │ ├── TableCell.php
│ │ │ │ └── TableRow.php
│ │ │ ├── Renderer/
│ │ │ │ ├── AbstractRenderer.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── TableCell.php
│ │ │ │ ├── TableRowGroup.php
│ │ │ │ └── Text.php
│ │ │ └── Renderer.php
│ │ ├── exporters/
│ │ │ ├── ExcelExport.php
│ │ │ └── XmlExport.php
│ │ ├── importers/
│ │ │ └── UniversalXmlImport.php
│ │ └── index.html
│ ├── models/
│ │ ├── PublicModel.php
│ │ └── index.html
│ ├── modules/
│ │ ├── admin/
│ │ │ ├── controllers/
│ │ │ │ ├── home/
│ │ │ │ │ ├── Home.php
│ │ │ │ │ └── Login.php
│ │ │ │ └── plans/
│ │ │ │ └── Requests.php
│ │ │ ├── models/
│ │ │ │ ├── GeneralAdminModel.php
│ │ │ │ ├── HomeModel.php
│ │ │ │ ├── LanguagesModel.php
│ │ │ │ └── RequestsModel.php
│ │ │ └── views/
│ │ │ ├── home/
│ │ │ │ ├── index.php
│ │ │ │ └── login.php
│ │ │ ├── parts/
│ │ │ │ ├── general/
│ │ │ │ │ ├── footer.php
│ │ │ │ │ └── header.php
│ │ │ │ └── login/
│ │ │ │ ├── footer.php
│ │ │ │ └── header.php
│ │ │ └── plans/
│ │ │ ├── individual_plan_requests.php
│ │ │ └── requests.php
│ │ └── users/
│ │ ├── controllers/
│ │ │ ├── clients/
│ │ │ │ └── Clients.php
│ │ │ ├── home/
│ │ │ │ └── Home.php
│ │ │ ├── import_export/
│ │ │ │ └── ImportExport.php
│ │ │ ├── invoices/
│ │ │ │ ├── Invoices.php
│ │ │ │ ├── Invoiceview.php
│ │ │ │ └── Newinvoice.php
│ │ │ ├── items/
│ │ │ │ └── Items.php
│ │ │ ├── managefirms/
│ │ │ │ └── Managefirms.php
│ │ │ ├── plans/
│ │ │ │ └── PlansUsers.php
│ │ │ ├── protocols/
│ │ │ │ ├── Protocols.php
│ │ │ │ └── Protocolview.php
│ │ │ ├── reports/
│ │ │ │ └── Reports.php
│ │ │ ├── settings/
│ │ │ │ ├── Admin.php
│ │ │ │ ├── Employees.php
│ │ │ │ ├── GlobalSettings.php
│ │ │ │ ├── Invoices.php
│ │ │ │ ├── Protocols.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Stores.php
│ │ │ │ └── Warranty.php
│ │ │ ├── store/
│ │ │ │ ├── Movementview.php
│ │ │ │ └── Store.php
│ │ │ └── warranty/
│ │ │ ├── Events.php
│ │ │ ├── Warranty.php
│ │ │ └── Warrantyview.php
│ │ ├── models/
│ │ │ ├── ClientsModel.php
│ │ │ ├── HomeModel.php
│ │ │ ├── ImportExportModel.php
│ │ │ ├── InvoicesModel.php
│ │ │ ├── ItemsModel.php
│ │ │ ├── ManagefirmsModel.php
│ │ │ ├── NewInvoiceModel.php
│ │ │ ├── PlansModel.php
│ │ │ ├── ProtocolsModel.php
│ │ │ ├── ReportsModel.php
│ │ │ ├── SettingsModel.php
│ │ │ ├── StoreModel.php
│ │ │ └── WarrantyCardModel.php
│ │ └── views/
│ │ ├── clients/
│ │ │ ├── addclient.php
│ │ │ ├── index.php
│ │ │ └── viewclient.php
│ │ ├── home/
│ │ │ ├── index.php
│ │ │ ├── noSearchResultsHtml.php
│ │ │ └── searchResultsHtml.php
│ │ ├── import_export/
│ │ │ └── index.php
│ │ ├── invoices/
│ │ │ ├── index.php
│ │ │ ├── itemTableTr.php
│ │ │ ├── listSelectorHtml.php
│ │ │ ├── modals/
│ │ │ │ ├── add_payment_method.php
│ │ │ │ ├── add_quantity_type.php
│ │ │ │ └── selector.php
│ │ │ ├── newinvoice.php
│ │ │ ├── templates/
│ │ │ │ ├── creative.php
│ │ │ │ └── toner-save.php
│ │ │ └── view.php
│ │ ├── items/
│ │ │ ├── additem.php
│ │ │ ├── index.php
│ │ │ └── viewitem.php
│ │ ├── managefirms/
│ │ │ ├── edit.php
│ │ │ └── index.php
│ │ ├── parts/
│ │ │ ├── footer.php
│ │ │ └── header.php
│ │ ├── plans/
│ │ │ ├── index.php
│ │ │ ├── period.php
│ │ │ └── request.php
│ │ ├── protocols/
│ │ │ ├── addprotocol.php
│ │ │ ├── index.php
│ │ │ ├── itemTableTr.php
│ │ │ └── templates/
│ │ │ └── default.php
│ │ ├── reports/
│ │ │ ├── index.php
│ │ │ └── reportNumInvoices.php
│ │ ├── settings/
│ │ │ ├── addEmployee.php
│ │ │ ├── admin.php
│ │ │ ├── employeeRights.php
│ │ │ ├── employees.php
│ │ │ ├── global.php
│ │ │ ├── index.php
│ │ │ ├── invoices.php
│ │ │ ├── protocols.php
│ │ │ ├── stores.php
│ │ │ └── warranty.php
│ │ ├── store/
│ │ │ ├── addmovement.php
│ │ │ ├── index.php
│ │ │ ├── itemTableTr.php
│ │ │ ├── preview.php
│ │ │ ├── stocks.php
│ │ │ └── templates/
│ │ │ └── default.php
│ │ └── warranty/
│ │ ├── add_event.php
│ │ ├── addwarranty.php
│ │ ├── events.php
│ │ ├── index.php
│ │ ├── itemTableTr.php
│ │ └── templates/
│ │ └── default.php
│ ├── third_party/
│ │ ├── MX/
│ │ │ ├── Base.php
│ │ │ ├── Ci.php
│ │ │ ├── Config.php
│ │ │ ├── Controller.php
│ │ │ ├── Lang.php
│ │ │ ├── Loader.php
│ │ │ ├── Modules.php
│ │ │ └── Router.php
│ │ └── index.html
│ └── views/
│ ├── errors/
│ │ ├── cli/
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ ├── html/
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ └── index.html
│ ├── home/
│ │ └── index.php
│ ├── index.html
│ ├── invoices_parts/
│ │ ├── footer.php
│ │ └── invoice_accept.php
│ ├── parts/
│ │ ├── footer.php
│ │ ├── header.php
│ │ └── invaccept/
│ │ ├── footer.php
│ │ └── header.php
│ └── registration/
│ ├── choosetype.php
│ ├── forgotten.php
│ ├── index.php
│ └── login.php
├── assets/
│ ├── admin/
│ │ ├── css/
│ │ │ ├── general.css
│ │ │ └── login.css
│ │ └── js/
│ │ └── general.js
│ ├── bootstrap/
│ │ └── js/
│ │ └── npm.js
│ ├── bootstrap-datepicker-1.6.4-dist/
│ │ └── css/
│ │ ├── bootstrap-datepicker.css
│ │ ├── bootstrap-datepicker.standalone.css
│ │ ├── bootstrap-datepicker3.css
│ │ └── bootstrap-datepicker3.standalone.css
│ ├── bootstrap-select-1.12.2/
│ │ ├── .github/
│ │ │ └── ISSUE_TEMPLATE.md
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── composer.json
│ │ ├── dist/
│ │ │ ├── css/
│ │ │ │ └── bootstrap-select.css
│ │ │ └── js/
│ │ │ ├── bootstrap-select.js
│ │ │ └── i18n/
│ │ │ ├── defaults-ar_AR.js
│ │ │ ├── defaults-bg_BG.js
│ │ │ ├── defaults-cro_CRO.js
│ │ │ ├── defaults-cs_CZ.js
│ │ │ ├── defaults-da_DK.js
│ │ │ ├── defaults-de_DE.js
│ │ │ ├── defaults-en_US.js
│ │ │ ├── defaults-es_CL.js
│ │ │ ├── defaults-es_ES.js
│ │ │ ├── defaults-eu.js
│ │ │ ├── defaults-fa_IR.js
│ │ │ ├── defaults-fi_FI.js
│ │ │ ├── defaults-fr_FR.js
│ │ │ ├── defaults-hu_HU.js
│ │ │ ├── defaults-id_ID.js
│ │ │ ├── defaults-it_IT.js
│ │ │ ├── defaults-ko_KR.js
│ │ │ ├── defaults-lt_LT.js
│ │ │ ├── defaults-nb_NO.js
│ │ │ ├── defaults-nl_NL.js
│ │ │ ├── defaults-pl_PL.js
│ │ │ ├── defaults-pt_BR.js
│ │ │ ├── defaults-pt_PT.js
│ │ │ ├── defaults-ro_RO.js
│ │ │ ├── defaults-ru_RU.js
│ │ │ ├── defaults-sk_SK.js
│ │ │ ├── defaults-sl_SI.js
│ │ │ ├── defaults-sv_SE.js
│ │ │ ├── defaults-tr_TR.js
│ │ │ ├── defaults-ua_UA.js
│ │ │ ├── defaults-zh_CN.js
│ │ │ └── defaults-zh_TW.js
│ │ ├── docs/
│ │ │ ├── custom_theme/
│ │ │ │ ├── base.html
│ │ │ │ ├── css/
│ │ │ │ │ └── base.css
│ │ │ │ ├── js/
│ │ │ │ │ └── base.js
│ │ │ │ ├── nav.html
│ │ │ │ └── toc.html
│ │ │ ├── docs/
│ │ │ │ ├── css/
│ │ │ │ │ └── custom.css
│ │ │ │ ├── dist/
│ │ │ │ │ ├── css/
│ │ │ │ │ │ └── bootstrap-select.css
│ │ │ │ │ └── js/
│ │ │ │ │ ├── bootstrap-select.js
│ │ │ │ │ └── i18n/
│ │ │ │ │ ├── defaults-ar_AR.js
│ │ │ │ │ ├── defaults-bg_BG.js
│ │ │ │ │ ├── defaults-cro_CRO.js
│ │ │ │ │ ├── defaults-cs_CZ.js
│ │ │ │ │ ├── defaults-da_DK.js
│ │ │ │ │ ├── defaults-de_DE.js
│ │ │ │ │ ├── defaults-en_US.js
│ │ │ │ │ ├── defaults-es_CL.js
│ │ │ │ │ ├── defaults-es_ES.js
│ │ │ │ │ ├── defaults-eu.js
│ │ │ │ │ ├── defaults-fa_IR.js
│ │ │ │ │ ├── defaults-fi_FI.js
│ │ │ │ │ ├── defaults-fr_FR.js
│ │ │ │ │ ├── defaults-hu_HU.js
│ │ │ │ │ ├── defaults-id_ID.js
│ │ │ │ │ ├── defaults-it_IT.js
│ │ │ │ │ ├── defaults-ko_KR.js
│ │ │ │ │ ├── defaults-lt_LT.js
│ │ │ │ │ ├── defaults-nb_NO.js
│ │ │ │ │ ├── defaults-nl_NL.js
│ │ │ │ │ ├── defaults-pl_PL.js
│ │ │ │ │ ├── defaults-pt_BR.js
│ │ │ │ │ ├── defaults-pt_PT.js
│ │ │ │ │ ├── defaults-ro_RO.js
│ │ │ │ │ ├── defaults-ru_RU.js
│ │ │ │ │ ├── defaults-sk_SK.js
│ │ │ │ │ ├── defaults-sl_SI.js
│ │ │ │ │ ├── defaults-sv_SE.js
│ │ │ │ │ ├── defaults-tr_TR.js
│ │ │ │ │ ├── defaults-ua_UA.js
│ │ │ │ │ ├── defaults-zh_CN.js
│ │ │ │ │ └── defaults-zh_TW.js
│ │ │ │ ├── examples.md
│ │ │ │ ├── index.md
│ │ │ │ ├── methods.md
│ │ │ │ ├── options.md
│ │ │ │ └── playground/
│ │ │ │ ├── index.html
│ │ │ │ ├── plnkrOpener.js
│ │ │ │ └── test.html
│ │ │ └── mkdocs.yml
│ │ ├── js/
│ │ │ ├── .jshintrc
│ │ │ ├── bootstrap-select.js
│ │ │ └── i18n/
│ │ │ ├── defaults-ar_AR.js
│ │ │ ├── defaults-bg_BG.js
│ │ │ ├── defaults-cro_CRO.js
│ │ │ ├── defaults-cs_CZ.js
│ │ │ ├── defaults-da_DK.js
│ │ │ ├── defaults-de_DE.js
│ │ │ ├── defaults-en_US.js
│ │ │ ├── defaults-es_CL.js
│ │ │ ├── defaults-es_ES.js
│ │ │ ├── defaults-eu.js
│ │ │ ├── defaults-fa_IR.js
│ │ │ ├── defaults-fi_FI.js
│ │ │ ├── defaults-fr_FR.js
│ │ │ ├── defaults-hu_HU.js
│ │ │ ├── defaults-id_ID.js
│ │ │ ├── defaults-it_IT.js
│ │ │ ├── defaults-ko_KR.js
│ │ │ ├── defaults-lt_LT.js
│ │ │ ├── defaults-nb_NO.js
│ │ │ ├── defaults-nl_NL.js
│ │ │ ├── defaults-pl_PL.js
│ │ │ ├── defaults-pt_BR.js
│ │ │ ├── defaults-pt_PT.js
│ │ │ ├── defaults-ro_RO.js
│ │ │ ├── defaults-ru_RU.js
│ │ │ ├── defaults-sk_SK.js
│ │ │ ├── defaults-sl_SI.js
│ │ │ ├── defaults-sv_SE.js
│ │ │ ├── defaults-tr_TR.js
│ │ │ ├── defaults-ua_UA.js
│ │ │ ├── defaults-zh_CN.js
│ │ │ └── defaults-zh_TW.js
│ │ ├── less/
│ │ │ ├── bootstrap-select.less
│ │ │ └── variables.less
│ │ ├── nuget/
│ │ │ ├── MyGet.ps1
│ │ │ └── bootstrap-select.nuspec
│ │ ├── package.json
│ │ ├── sass/
│ │ │ ├── bootstrap-select.scss
│ │ │ └── variables.scss
│ │ └── test.html
│ ├── ckeditor/
│ │ ├── CHANGES.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── adapters/
│ │ │ └── jquery.js
│ │ ├── build-config.js
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang/
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de-ch.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en.js
│ │ │ ├── eo.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── gu.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── ku.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── mn.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── no.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── tt.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── plugins/
│ │ │ ├── a11yhelp/
│ │ │ │ └── dialogs/
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang/
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── about/
│ │ │ │ └── dialogs/
│ │ │ │ └── about.js
│ │ │ ├── clipboard/
│ │ │ │ └── dialogs/
│ │ │ │ └── paste.js
│ │ │ ├── codemirror/
│ │ │ │ ├── lang/
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── bn.js
│ │ │ │ │ ├── bs.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-au.js
│ │ │ │ │ ├── en-ca.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fo.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── is.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ka.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── mn.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── theme/
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ └── zenburn.css
│ │ │ ├── colordialog/
│ │ │ │ └── dialogs/
│ │ │ │ └── colordialog.js
│ │ │ ├── dialog/
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── div/
│ │ │ │ └── dialogs/
│ │ │ │ └── div.js
│ │ │ ├── find/
│ │ │ │ └── dialogs/
│ │ │ │ └── find.js
│ │ │ ├── flash/
│ │ │ │ └── dialogs/
│ │ │ │ └── flash.js
│ │ │ ├── forms/
│ │ │ │ └── dialogs/
│ │ │ │ ├── button.js
│ │ │ │ ├── checkbox.js
│ │ │ │ ├── form.js
│ │ │ │ ├── hiddenfield.js
│ │ │ │ ├── radio.js
│ │ │ │ ├── select.js
│ │ │ │ ├── textarea.js
│ │ │ │ └── textfield.js
│ │ │ ├── iframe/
│ │ │ │ └── dialogs/
│ │ │ │ └── iframe.js
│ │ │ ├── image/
│ │ │ │ └── dialogs/
│ │ │ │ └── image.js
│ │ │ ├── link/
│ │ │ │ └── dialogs/
│ │ │ │ ├── anchor.js
│ │ │ │ └── link.js
│ │ │ ├── liststyle/
│ │ │ │ └── dialogs/
│ │ │ │ └── liststyle.js
│ │ │ ├── pastefromword/
│ │ │ │ └── filter/
│ │ │ │ └── default.js
│ │ │ ├── preview/
│ │ │ │ └── preview.html
│ │ │ ├── scayt/
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ └── dialogs/
│ │ │ │ ├── options.js
│ │ │ │ └── toolbar.css
│ │ │ ├── smiley/
│ │ │ │ └── dialogs/
│ │ │ │ └── smiley.js
│ │ │ ├── specialchar/
│ │ │ │ └── dialogs/
│ │ │ │ ├── lang/
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de-ch.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ └── specialchar.js
│ │ │ ├── table/
│ │ │ │ └── dialogs/
│ │ │ │ └── table.js
│ │ │ ├── tabletools/
│ │ │ │ └── dialogs/
│ │ │ │ └── tableCell.js
│ │ │ ├── templates/
│ │ │ │ ├── dialogs/
│ │ │ │ │ ├── templates.css
│ │ │ │ │ └── templates.js
│ │ │ │ └── templates/
│ │ │ │ └── default.js
│ │ │ └── wsc/
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs/
│ │ │ ├── ciframe.html
│ │ │ ├── tmpFrameset.html
│ │ │ ├── wsc.css
│ │ │ ├── wsc.js
│ │ │ └── wsc_ie.js
│ │ ├── samples/
│ │ │ ├── css/
│ │ │ │ └── samples.css
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ ├── sample.js
│ │ │ │ └── sf.js
│ │ │ ├── old/
│ │ │ │ ├── ajax.html
│ │ │ │ ├── api.html
│ │ │ │ ├── appendto.html
│ │ │ │ ├── assets/
│ │ │ │ │ ├── outputxhtml/
│ │ │ │ │ │ └── outputxhtml.css
│ │ │ │ │ ├── posteddata.php
│ │ │ │ │ └── uilanguages/
│ │ │ │ │ └── languages.js
│ │ │ │ ├── datafiltering.html
│ │ │ │ ├── dialog/
│ │ │ │ │ ├── assets/
│ │ │ │ │ │ └── my_dialog.js
│ │ │ │ │ └── dialog.html
│ │ │ │ ├── divreplace.html
│ │ │ │ ├── enterkey/
│ │ │ │ │ └── enterkey.html
│ │ │ │ ├── htmlwriter/
│ │ │ │ │ ├── assets/
│ │ │ │ │ │ └── outputforflash/
│ │ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ │ ├── outputforflash.swf
│ │ │ │ │ │ └── swfobject.js
│ │ │ │ │ ├── outputforflash.html
│ │ │ │ │ └── outputhtml.html
│ │ │ │ ├── index.html
│ │ │ │ ├── inlineall.html
│ │ │ │ ├── inlinebycode.html
│ │ │ │ ├── inlinetextarea.html
│ │ │ │ ├── jquery.html
│ │ │ │ ├── magicline/
│ │ │ │ │ └── magicline.html
│ │ │ │ ├── readonly.html
│ │ │ │ ├── replacebyclass.html
│ │ │ │ ├── replacebycode.html
│ │ │ │ ├── sample.css
│ │ │ │ ├── sample.js
│ │ │ │ ├── sample_posteddata.php
│ │ │ │ ├── tabindex.html
│ │ │ │ ├── toolbar/
│ │ │ │ │ └── toolbar.html
│ │ │ │ ├── uicolor.html
│ │ │ │ ├── uilanguages.html
│ │ │ │ ├── wysiwygarea/
│ │ │ │ │ └── fullpage.html
│ │ │ │ └── xhtmlstyle.html
│ │ │ └── toolbarconfigurator/
│ │ │ ├── css/
│ │ │ │ └── fontello.css
│ │ │ ├── font/
│ │ │ │ ├── LICENSE.txt
│ │ │ │ └── config.json
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ ├── abstracttoolbarmodifier.js
│ │ │ │ ├── fulltoolbareditor.js
│ │ │ │ ├── toolbarmodifier.js
│ │ │ │ └── toolbartextmodifier.js
│ │ │ └── lib/
│ │ │ └── codemirror/
│ │ │ ├── LICENSE
│ │ │ ├── codemirror.css
│ │ │ ├── codemirror.js
│ │ │ ├── javascript.js
│ │ │ ├── neo.css
│ │ │ ├── show-hint.css
│ │ │ └── show-hint.js
│ │ ├── skins/
│ │ │ ├── moono/
│ │ │ │ ├── dialog.css
│ │ │ │ ├── dialog_ie.css
│ │ │ │ ├── dialog_ie7.css
│ │ │ │ ├── dialog_ie8.css
│ │ │ │ ├── dialog_iequirks.css
│ │ │ │ ├── editor.css
│ │ │ │ ├── editor_gecko.css
│ │ │ │ ├── editor_ie.css
│ │ │ │ ├── editor_ie7.css
│ │ │ │ ├── editor_ie8.css
│ │ │ │ ├── editor_iequirks.css
│ │ │ │ └── readme.md
│ │ │ └── moonocolor/
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_iequirks.css
│ │ │ └── readme.md
│ │ └── styles.js
│ ├── font-awesome/
│ │ └── fonts/
│ │ └── FontAwesome.otf
│ ├── font-awesome-4.7.0/
│ │ ├── HELP-US-OUT.txt
│ │ ├── css/
│ │ │ └── font-awesome.css
│ │ ├── fonts/
│ │ │ └── FontAwesome.otf
│ │ ├── less/
│ │ │ ├── animated.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── core.less
│ │ │ ├── fixed-width.less
│ │ │ ├── font-awesome.less
│ │ │ ├── icons.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── mixins.less
│ │ │ ├── path.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── screen-reader.less
│ │ │ ├── stacked.less
│ │ │ └── variables.less
│ │ └── scss/
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _screen-reader.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
│ ├── highcharts/
│ │ ├── css/
│ │ │ └── highcharts.css
│ │ ├── highcharts-3d.js
│ │ ├── highcharts-3d.src.js
│ │ ├── highcharts-more.js
│ │ ├── highcharts-more.src.js
│ │ ├── highcharts.js
│ │ ├── highcharts.src.js
│ │ ├── js/
│ │ │ ├── highcharts-3d.js
│ │ │ ├── highcharts-3d.src.js
│ │ │ ├── highcharts-more.js
│ │ │ ├── highcharts-more.src.js
│ │ │ ├── highcharts.js
│ │ │ ├── highcharts.src.js
│ │ │ ├── modules/
│ │ │ │ ├── accessibility.js
│ │ │ │ ├── accessibility.src.js
│ │ │ │ ├── annotations.js
│ │ │ │ ├── annotations.src.js
│ │ │ │ ├── boost-canvas.js
│ │ │ │ ├── boost-canvas.src.js
│ │ │ │ ├── boost.js
│ │ │ │ ├── boost.src.js
│ │ │ │ ├── broken-axis.js
│ │ │ │ ├── broken-axis.src.js
│ │ │ │ ├── data.js
│ │ │ │ ├── data.src.js
│ │ │ │ ├── drilldown.js
│ │ │ │ ├── drilldown.src.js
│ │ │ │ ├── export-data.js
│ │ │ │ ├── export-data.src.js
│ │ │ │ ├── exporting.js
│ │ │ │ ├── exporting.src.js
│ │ │ │ ├── funnel.js
│ │ │ │ ├── funnel.src.js
│ │ │ │ ├── gantt.js
│ │ │ │ ├── gantt.src.js
│ │ │ │ ├── grid-axis.js
│ │ │ │ ├── grid-axis.src.js
│ │ │ │ ├── heatmap.js
│ │ │ │ ├── heatmap.src.js
│ │ │ │ ├── no-data-to-display.js
│ │ │ │ ├── no-data-to-display.src.js
│ │ │ │ ├── offline-exporting.js
│ │ │ │ ├── offline-exporting.src.js
│ │ │ │ ├── overlapping-datalabels.js
│ │ │ │ ├── overlapping-datalabels.src.js
│ │ │ │ ├── series-label.js
│ │ │ │ ├── series-label.src.js
│ │ │ │ ├── solid-gauge.js
│ │ │ │ ├── solid-gauge.src.js
│ │ │ │ ├── static-scale.js
│ │ │ │ ├── static-scale.src.js
│ │ │ │ ├── stock.js
│ │ │ │ ├── stock.src.js
│ │ │ │ ├── treemap.js
│ │ │ │ ├── treemap.src.js
│ │ │ │ ├── xrange-series.js
│ │ │ │ └── xrange-series.src.js
│ │ │ └── themes/
│ │ │ ├── dark-blue.js
│ │ │ ├── dark-green.js
│ │ │ ├── dark-unica.js
│ │ │ ├── gray.js
│ │ │ ├── grid-light.js
│ │ │ ├── grid.js
│ │ │ ├── sand-signika.js
│ │ │ └── skies.js
│ │ ├── lib/
│ │ │ ├── canvg.js
│ │ │ ├── canvg.src.js
│ │ │ ├── jspdf.js
│ │ │ ├── jspdf.src.js
│ │ │ ├── rgbcolor.js
│ │ │ ├── rgbcolor.src.js
│ │ │ ├── svg2pdf.js
│ │ │ └── svg2pdf.src.js
│ │ ├── modules/
│ │ │ ├── accessibility.js
│ │ │ ├── accessibility.src.js
│ │ │ ├── annotations.js
│ │ │ ├── annotations.src.js
│ │ │ ├── boost-canvas.js
│ │ │ ├── boost-canvas.src.js
│ │ │ ├── boost.js
│ │ │ ├── boost.src.js
│ │ │ ├── broken-axis.js
│ │ │ ├── broken-axis.src.js
│ │ │ ├── data.js
│ │ │ ├── data.src.js
│ │ │ ├── drilldown.js
│ │ │ ├── drilldown.src.js
│ │ │ ├── export-data.js
│ │ │ ├── export-data.src.js
│ │ │ ├── exporting.js
│ │ │ ├── exporting.src.js
│ │ │ ├── funnel.js
│ │ │ ├── funnel.src.js
│ │ │ ├── gantt.js
│ │ │ ├── gantt.src.js
│ │ │ ├── grid-axis.js
│ │ │ ├── grid-axis.src.js
│ │ │ ├── heatmap.js
│ │ │ ├── heatmap.src.js
│ │ │ ├── no-data-to-display.js
│ │ │ ├── no-data-to-display.src.js
│ │ │ ├── offline-exporting.js
│ │ │ ├── offline-exporting.src.js
│ │ │ ├── overlapping-datalabels.js
│ │ │ ├── overlapping-datalabels.src.js
│ │ │ ├── series-label.js
│ │ │ ├── series-label.src.js
│ │ │ ├── solid-gauge.js
│ │ │ ├── solid-gauge.src.js
│ │ │ ├── static-scale.js
│ │ │ ├── static-scale.src.js
│ │ │ ├── stock.js
│ │ │ ├── stock.src.js
│ │ │ ├── treemap.js
│ │ │ ├── treemap.src.js
│ │ │ ├── xrange-series.js
│ │ │ └── xrange-series.src.js
│ │ ├── readme.txt
│ │ └── themes/
│ │ ├── dark-blue.js
│ │ ├── dark-green.js
│ │ ├── dark-unica.js
│ │ ├── gray.js
│ │ ├── grid-light.js
│ │ ├── grid.js
│ │ ├── sand-signika.js
│ │ └── skies.js
│ ├── jquery/
│ │ └── jquery-ui-1.12.1.custom/
│ │ ├── AUTHORS.txt
│ │ ├── LICENSE.txt
│ │ ├── external/
│ │ │ └── jquery/
│ │ │ └── jquery.js
│ │ ├── index.html
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.js
│ │ ├── jquery-ui.structure.css
│ │ ├── jquery-ui.theme.css
│ │ └── package.json
│ ├── plugins/
│ │ └── jquery.eqheight.js
│ ├── psd/
│ │ ├── customers-label.psd
│ │ ├── fbCover.psd
│ │ ├── fbLogo.psd
│ │ ├── first-mac.psd
│ │ ├── home_steps.psd
│ │ ├── pm-subpages.psd
│ │ ├── pmInvoice-Logo.psd
│ │ ├── responsive.psd
│ │ └── support-image.psd
│ ├── public/
│ │ ├── css/
│ │ │ ├── general.css
│ │ │ ├── stabilizator_bg.css
│ │ │ ├── stabilizator_en.css
│ │ │ └── stabilizator_fr.css
│ │ └── js/
│ │ └── general.js
│ ├── tagsinput/
│ │ ├── bootstrap-tagsinput.css
│ │ └── bootstrap-tagsinput.js
│ └── users/
│ ├── css/
│ │ ├── bill-of-lading-templates.css
│ │ ├── general.css
│ │ ├── invoices-templates.css
│ │ ├── protocols-templates.css
│ │ └── warranty-cards-templates.css
│ └── js/
│ └── general.js
├── database.sql
├── design/
│ ├── public/
│ │ ├── card_icons.psd
│ │ └── first-mac.psd
│ └── user/
│ ├── CMS.psd
│ └── sprite-icons.psd
├── index.php
├── pdfs.log
└── system/
├── .htaccess
├── core/
│ ├── Benchmark.php
│ ├── CodeIgniter.php
│ ├── Common.php
│ ├── Config.php
│ ├── Controller.php
│ ├── Exceptions.php
│ ├── Hooks.php
│ ├── Input.php
│ ├── Lang.php
│ ├── Loader.php
│ ├── Log.php
│ ├── Model.php
│ ├── Output.php
│ ├── Router.php
│ ├── Security.php
│ ├── URI.php
│ ├── Utf8.php
│ ├── compat/
│ │ ├── hash.php
│ │ ├── index.html
│ │ ├── mbstring.php
│ │ ├── password.php
│ │ └── standard.php
│ └── index.html
├── database/
│ ├── DB.php
│ ├── DB_cache.php
│ ├── DB_driver.php
│ ├── DB_forge.php
│ ├── DB_query_builder.php
│ ├── DB_result.php
│ ├── DB_utility.php
│ ├── drivers/
│ │ ├── cubrid/
│ │ │ ├── cubrid_driver.php
│ │ │ ├── cubrid_forge.php
│ │ │ ├── cubrid_result.php
│ │ │ ├── cubrid_utility.php
│ │ │ └── index.html
│ │ ├── ibase/
│ │ │ ├── ibase_driver.php
│ │ │ ├── ibase_forge.php
│ │ │ ├── ibase_result.php
│ │ │ ├── ibase_utility.php
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── mssql/
│ │ │ ├── index.html
│ │ │ ├── mssql_driver.php
│ │ │ ├── mssql_forge.php
│ │ │ ├── mssql_result.php
│ │ │ └── mssql_utility.php
│ │ ├── mysql/
│ │ │ ├── index.html
│ │ │ ├── mysql_driver.php
│ │ │ ├── mysql_forge.php
│ │ │ ├── mysql_result.php
│ │ │ └── mysql_utility.php
│ │ ├── mysqli/
│ │ │ ├── index.html
│ │ │ ├── mysqli_driver.php
│ │ │ ├── mysqli_forge.php
│ │ │ ├── mysqli_result.php
│ │ │ └── mysqli_utility.php
│ │ ├── oci8/
│ │ │ ├── index.html
│ │ │ ├── oci8_driver.php
│ │ │ ├── oci8_forge.php
│ │ │ ├── oci8_result.php
│ │ │ └── oci8_utility.php
│ │ ├── odbc/
│ │ │ ├── index.html
│ │ │ ├── odbc_driver.php
│ │ │ ├── odbc_forge.php
│ │ │ ├── odbc_result.php
│ │ │ └── odbc_utility.php
│ │ ├── pdo/
│ │ │ ├── index.html
│ │ │ ├── pdo_driver.php
│ │ │ ├── pdo_forge.php
│ │ │ ├── pdo_result.php
│ │ │ ├── pdo_utility.php
│ │ │ └── subdrivers/
│ │ │ ├── index.html
│ │ │ ├── pdo_4d_driver.php
│ │ │ ├── pdo_4d_forge.php
│ │ │ ├── pdo_cubrid_driver.php
│ │ │ ├── pdo_cubrid_forge.php
│ │ │ ├── pdo_dblib_driver.php
│ │ │ ├── pdo_dblib_forge.php
│ │ │ ├── pdo_firebird_driver.php
│ │ │ ├── pdo_firebird_forge.php
│ │ │ ├── pdo_ibm_driver.php
│ │ │ ├── pdo_ibm_forge.php
│ │ │ ├── pdo_informix_driver.php
│ │ │ ├── pdo_informix_forge.php
│ │ │ ├── pdo_mysql_driver.php
│ │ │ ├── pdo_mysql_forge.php
│ │ │ ├── pdo_oci_driver.php
│ │ │ ├── pdo_oci_forge.php
│ │ │ ├── pdo_odbc_driver.php
│ │ │ ├── pdo_odbc_forge.php
│ │ │ ├── pdo_pgsql_driver.php
│ │ │ ├── pdo_pgsql_forge.php
│ │ │ ├── pdo_sqlite_driver.php
│ │ │ ├── pdo_sqlite_forge.php
│ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ └── pdo_sqlsrv_forge.php
│ │ ├── postgre/
│ │ │ ├── index.html
│ │ │ ├── postgre_driver.php
│ │ │ ├── postgre_forge.php
│ │ │ ├── postgre_result.php
│ │ │ └── postgre_utility.php
│ │ ├── sqlite/
│ │ │ ├── index.html
│ │ │ ├── sqlite_driver.php
│ │ │ ├── sqlite_forge.php
│ │ │ ├── sqlite_result.php
│ │ │ └── sqlite_utility.php
│ │ ├── sqlite3/
│ │ │ ├── index.html
│ │ │ ├── sqlite3_driver.php
│ │ │ ├── sqlite3_forge.php
│ │ │ ├── sqlite3_result.php
│ │ │ └── sqlite3_utility.php
│ │ └── sqlsrv/
│ │ ├── index.html
│ │ ├── sqlsrv_driver.php
│ │ ├── sqlsrv_forge.php
│ │ ├── sqlsrv_result.php
│ │ └── sqlsrv_utility.php
│ └── index.html
├── fonts/
│ └── index.html
├── helpers/
│ ├── array_helper.php
│ ├── captcha_helper.php
│ ├── cookie_helper.php
│ ├── date_helper.php
│ ├── directory_helper.php
│ ├── download_helper.php
│ ├── email_helper.php
│ ├── file_helper.php
│ ├── form_helper.php
│ ├── html_helper.php
│ ├── index.html
│ ├── inflector_helper.php
│ ├── language_helper.php
│ ├── number_helper.php
│ ├── path_helper.php
│ ├── security_helper.php
│ ├── smiley_helper.php
│ ├── string_helper.php
│ ├── text_helper.php
│ ├── typography_helper.php
│ ├── url_helper.php
│ └── xml_helper.php
├── index.html
├── language/
│ ├── english/
│ │ ├── calendar_lang.php
│ │ ├── date_lang.php
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── ftp_lang.php
│ │ ├── imglib_lang.php
│ │ ├── index.html
│ │ ├── migration_lang.php
│ │ ├── number_lang.php
│ │ ├── pagination_lang.php
│ │ ├── profiler_lang.php
│ │ ├── unit_test_lang.php
│ │ └── upload_lang.php
│ └── index.html
└── libraries/
├── Cache/
│ ├── Cache.php
│ ├── drivers/
│ │ ├── Cache_apc.php
│ │ ├── Cache_dummy.php
│ │ ├── Cache_file.php
│ │ ├── Cache_memcached.php
│ │ ├── Cache_redis.php
│ │ ├── Cache_wincache.php
│ │ └── index.html
│ └── index.html
├── Calendar.php
├── Cart.php
├── Driver.php
├── Email.php
├── Encrypt.php
├── Encryption.php
├── Form_validation.php
├── Ftp.php
├── Image_lib.php
├── Javascript/
│ ├── Jquery.php
│ └── index.html
├── Javascript.php
├── Migration.php
├── Pagination.php
├── Parser.php
├── Profiler.php
├── Session/
│ ├── CI_Session_driver_interface.php
│ ├── OldSessionWrapper.php
│ ├── PHP8SessionWrapper.php
│ ├── Session.php
│ ├── SessionHandlerInterface.php
│ ├── SessionUpdateTimestampHandlerInterface.php
│ ├── Session_driver.php
│ ├── drivers/
│ │ ├── Session_database_driver.php
│ │ ├── Session_files_driver.php
│ │ ├── Session_memcached_driver.php
│ │ ├── Session_redis_driver.php
│ │ └── index.html
│ └── index.html
├── Table.php
├── Trackback.php
├── Typography.php
├── Unit_test.php
├── Upload.php
├── User_agent.php
├── Xmlrpc.php
├── Xmlrpcs.php
├── Zip.php
└── index.html
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms
github: kirilkirkov
================================================
FILE: .htaccess
================================================
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin *
</IfModule>
================================================
FILE: README.md
================================================
# Electronic Invoicing and Warehouse Management System
## Overview
A robust and versatile system for managing electronic invoices and warehouse operations. Built using CodeIgniter 3.1.13 and Bootstrap 3.3.7, this self-hosted solution allows for unlimited free invoicing, PDF downloads, and comprehensive management of clients, items, and employees.
### Key Features
- **Unlimited Electronic Invoices:** Create, manage, and download invoices as PDFs.
- **Multi-Company Support:** Manage multiple companies within a single account.
- **Client and Item Management:** Maintain detailed records of clients and items with pricing.
- **Protocol and Warranty Creation:** Generate and export protocols and warranties to PDF.
- **Invoice Status Tracking:** Easily monitor paid and unpaid invoices.
- **Multi-Language Support:** Available in English, French, and Bulgarian, with customizable translations.
- **Warehouse Operations:** Track warehouse movements, manage stock quantities, and generate bills of goods.
- **Employee Permissions:** Assign specific permissions to different employees.
- **Reports and Statistics:** Generate comprehensive reports and export invoices as XML or Excel files.
- **Responsive Design:** Optimized for mobile devices, tablets, and high-resolution monitors.
- **Customizable Settings:** Adjust settings for rounding prices, toner-saving PDF options, and more.
### Current Versions
- **CodeIgniter:** 3.1.13
- **Bootstrap:** 3.3.7
## Installation
1. Import `database.sql` to your MySQL database.
2. Set the database, username, and password in `application/config/database.php`.
If routing does not work automatically, set the base URL in `application/config/config.php`:
```php
$config['base_url'] = defined('BASE_URL') ? BASE_URL : 'https://your-website.com/';
```
## Usage
1. Visit the homepage and register a new account.
2. Log in with your new credentials to start issuing unlimited invoices, protocols, and warranties.
### Administration
- Access the admin panel at `/admin` (e.g., `https://yoursite.com/admin`).
- Default credentials:
- **Username:** admin
- **Password:** admin
## Download as WordPress Plugin
<a href="https://wordpress.org/plugins/kirilkirkov-pdf-invoice-manager/">Available for integration with WordPress as a plugin.</a>
## Screenshots
- **PDF Invoice:** 
- **Invoices List:** 
- **Create Invoice Page:** 
- **Statistics:** 
## Donate
If this project helps you save time in development, consider buying me a cup of coffee to support its ongoing development. Thank you!
[](https://www.paypal.com/donate/?hosted_button_id=PF5ES4K748ZEY)
================================================
FILE: application/.htaccess
================================================
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
================================================
FILE: application/cache/.htaccess
================================================
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
================================================
FILE: application/cache/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/config/autoload.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| AUTO-LOADER
| -------------------------------------------------------------------
| This file specifies which systems should be loaded by default.
|
| In order to keep the framework as light-weight as possible only the
| absolute minimal resources are loaded by default. For example,
| the database is not connected to automatically since no assumption
| is made regarding whether you intend to use it. This file lets
| you globally define which systems you would like loaded with every
| request.
|
| -------------------------------------------------------------------
| Instructions
| -------------------------------------------------------------------
|
| These are the things you can load automatically:
|
| 1. Packages
| 2. Libraries
| 3. Drivers
| 4. Helper files
| 5. Custom config files
| 6. Language files
| 7. Models
|
*/
/*
| -------------------------------------------------------------------
| Auto-load Packages
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
|
*/
$autoload['packages'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in system/libraries/ or your
| application/libraries/ directory, with the addition of the
| 'database' library, which is somewhat of a special case.
|
| Prototype:
|
| $autoload['libraries'] = array('database', 'email', 'session');
|
| You can also supply an alternative library name to be assigned
| in the controller:
|
| $autoload['libraries'] = array('user_agent' => 'ua');
*/
$autoload['libraries'] = array(
'database',
'language',
'session'
);
/*
| -------------------------------------------------------------------
| Auto-load Drivers
| -------------------------------------------------------------------
| These classes are located in system/libraries/ or in your
| application/libraries/ directory, but are also placed inside their
| own subdirectory and they extend the CI_Driver_Library class. They
| offer multiple interchangeable driver options.
|
| Prototype:
|
| $autoload['drivers'] = array('cache');
|
| You can also supply an alternative property name to be assigned in
| the controller:
|
| $autoload['drivers'] = array('cache' => 'cch');
|
*/
$autoload['drivers'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Helper Files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['helper'] = array('url', 'file');
*/
$autoload['helper'] = array(
'url',
'language',
'lang_url',
'text',
'geterror',
'full_document_number',
'thisyeardates'
);
/*
| -------------------------------------------------------------------
| Auto-load Config files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['config'] = array('config1', 'config2');
|
| NOTE: This item is intended for use ONLY if you have created custom
| config files. Otherwise, leave it blank.
|
*/
$autoload['config'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Language files
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['language'] = array('lang1', 'lang2');
|
| NOTE: Do not include the "_lang" part of your file. For example
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
*/
$autoload['language'] = array();
/*
| -------------------------------------------------------------------
| Auto-load Models
| -------------------------------------------------------------------
| Prototype:
|
| $autoload['model'] = array('first_model', 'second_model');
|
| You can also supply an alternative model name to be assigned
| in the controller:
|
| $autoload['model'] = array('first_model' => 'first');
*/
$autoload['model'] = array();
================================================
FILE: application/config/config.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH a trailing slash:
|
| http://example.com/
|
| WARNING: You MUST set this value!
|
| If it is not set, then CodeIgniter will try guess the protocol and path
| your installation, but due to security concerns the hostname will be set
| to $_SERVER['SERVER_ADDR'] if available, or localhost otherwise.
| The auto-detection mechanism exists only for convenience during
| development and MUST NOT be used in production!
|
| If you need to allow multiple domains, remember that this file is still
| a PHP script and you can easily do that on your own.
|
*/
// add your base url here into the ELSE statement - ''.
$config['base_url'] = defined('BASE_URL') ? BASE_URL : '';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = 'index.php';
/*
|--------------------------------------------------------------------------
| MD5 Salt For Users Passwords
|--------------------------------------------------------------------------
|
*/
$config['salt'] = 'uiumi';
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of 'REQUEST_URI' works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'REQUEST_URI' Uses $_SERVER['REQUEST_URI']
| 'QUERY_STRING' Uses $_SERVER['QUERY_STRING']
| 'PATH_INFO' Uses $_SERVER['PATH_INFO']
|
| WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!
*/
$config['uri_protocol'] = 'REQUEST_URI';
/*
|--------------------------------------------------------------------------
| Allowed images for upload
|--------------------------------------------------------------------------
|
*/
$config['allowed_img_types'] = 'gif|jpg|png|jpeg|JPG|PNG|JPEG';
/*
|--------------------------------------------------------------------------
| URL suffix
|--------------------------------------------------------------------------
|
| This option allows you to add a suffix to all URLs generated by CodeIgniter.
| For more information please see the user guide:
|
| https://codeigniter.com/user_guide/general/urls.html
*/
$config['url_suffix'] = '';
/*
|--------------------------------------------------------------------------
| Default Language
|--------------------------------------------------------------------------
|
| This determines which set of language files should be used. Make sure
| there is an available translation if you intend to use something other
| than english.
|
*/
$config['language'] = 'english';
$config['language_abbr'] = 'en';
$config['currency'] = 'EUR';
$config['currencyKey'] = 'EUR';
/*
|--------------------------------------------------------------------------
| Default Character Set
|--------------------------------------------------------------------------
|
| This determines which character set is used by default in various methods
| that require a character set to be provided.
|
| See http://php.net/htmlspecialchars for a list of supported charsets.
|
*/
$config['charset'] = 'UTF-8';
/*
|--------------------------------------------------------------------------
| Enable/Disable System Hooks
|--------------------------------------------------------------------------
|
| If you would like to use the 'hooks' feature you must enable it by
| setting this variable to TRUE (boolean). See the user guide for details.
|
*/
$config['enable_hooks'] = FALSE;
/*
|--------------------------------------------------------------------------
| Class Extension Prefix
|--------------------------------------------------------------------------
|
| This item allows you to set the filename/classname prefix when extending
| native libraries. For more information please see the user guide:
|
| https://codeigniter.com/user_guide/general/core_classes.html
| https://codeigniter.com/user_guide/general/creating_libraries.html
|
*/
$config['subclass_prefix'] = 'MY_';
/*
|--------------------------------------------------------------------------
| Composer auto-loading
|--------------------------------------------------------------------------
|
| Enabling this setting will tell CodeIgniter to look for a Composer
| package auto-loader script in application/vendor/autoload.php.
|
| $config['composer_autoload'] = TRUE;
|
| Or if you have your vendor/ directory located somewhere else, you
| can opt to set a specific path as well:
|
| $config['composer_autoload'] = '/path/to/vendor/autoload.php';
|
| For more information about Composer, please visit http://getcomposer.org/
|
| Note: This will NOT disable or override the CodeIgniter-specific
| autoloading (application/config/autoload.php)
*/
$config['composer_autoload'] = FALSE;
/*
|--------------------------------------------------------------------------
| Allowed URL Characters
|--------------------------------------------------------------------------
|
| This lets you specify which characters are permitted within your URLs.
| When someone tries to submit a URL with disallowed characters they will
| get a warning message.
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
|
| Leave blank to allow all characters -- but only if you are insane.
|
| The configured value is actually a regular expression character group
| and it will be executed as: ! preg_match('/^[<permitted_uri_chars>]+$/i
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
*/
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
/*
|--------------------------------------------------------------------------
| Enable Query Strings
|--------------------------------------------------------------------------
|
| By default CodeIgniter uses search-engine friendly segment based URLs:
| example.com/who/what/where/
|
| You can optionally enable standard query string based URLs:
| example.com?who=me&what=something&where=here
|
| Options are: TRUE or FALSE (boolean)
|
| The other items let you set the query string 'words' that will
| invoke your controllers and its functions:
| example.com/index.php?c=controller&m=function
|
| Please note that some of the helpers won't work as expected when
| this feature is enabled, since CodeIgniter is designed primarily to
| use segment based URLs.
|
*/
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd';
/*
|--------------------------------------------------------------------------
| Allow $_GET array
|--------------------------------------------------------------------------
|
| By default CodeIgniter enables access to the $_GET array. If for some
| reason you would like to disable it, set 'allow_get_array' to FALSE.
|
| WARNING: This feature is DEPRECATED and currently available only
| for backwards compatibility purposes!
|
*/
$config['allow_get_array'] = TRUE;
/*
|--------------------------------------------------------------------------
| Error Logging Threshold
|--------------------------------------------------------------------------
|
| You can enable error logging by setting a threshold over zero. The
| threshold determines what gets logged. Threshold options are:
|
| 0 = Disables logging, Error logging TURNED OFF
| 1 = Error Messages (including PHP errors)
| 2 = Debug Messages
| 3 = Informational Messages
| 4 = All Messages
|
| You can also pass an array with threshold levels to show individual error types
|
| array(2) = Debug Messages, without Error Messages
|
| For a live site you'll usually only enable Errors (1) to be logged otherwise
| your log files will fill up very fast.
|
*/
$config['log_threshold'] = 1;
/*
|--------------------------------------------------------------------------
| Error Logging Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| application/logs/ directory. Use a full server path with trailing slash.
|
*/
$config['log_path'] = '';
/*
|--------------------------------------------------------------------------
| Log File Extension
|--------------------------------------------------------------------------
|
| The default filename extension for log files. The default 'php' allows for
| protecting the log files via basic scripting, when they are to be stored
| under a publicly accessible directory.
|
| Note: Leaving it blank will default to 'php'.
|
*/
$config['log_file_extension'] = '';
/*
|--------------------------------------------------------------------------
| Log File Permissions
|--------------------------------------------------------------------------
|
| The file system permissions to be applied on newly created log files.
|
| IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal
| integer notation (i.e. 0700, 0644, etc.)
*/
$config['log_file_permissions'] = 0644;
/*
|--------------------------------------------------------------------------
| Date Format for Logs
|--------------------------------------------------------------------------
|
| Each item that is logged has an associated date. You can use PHP date
| codes to set your own date formatting
|
*/
$config['log_date_format'] = 'Y-m-d H:i:s';
/*
|--------------------------------------------------------------------------
| Error Views Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| application/views/errors/ directory. Use a full server path with trailing slash.
|
*/
$config['error_views_path'] = '';
/*
|--------------------------------------------------------------------------
| Cache Directory Path
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
| application/cache/ directory. Use a full server path with trailing slash.
|
*/
$config['cache_path'] = '';
/*
|--------------------------------------------------------------------------
| Cache Include Query String
|--------------------------------------------------------------------------
|
| Whether to take the URL query string into consideration when generating
| output cache files. Valid options are:
|
| FALSE = Disabled
| TRUE = Enabled, take all query parameters into account.
| Please be aware that this may result in numerous cache
| files generated for the same page over and over again.
| array('q') = Enabled, but only take into account the specified list
| of query parameters.
|
*/
$config['cache_query_string'] = FALSE;
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| If you use the Encryption class, you must set an encryption key.
| See the user guide for more info.
|
| https://codeigniter.com/user_guide/libraries/encryption.html
|
*/
$config['encryption_key'] = '';
/*
|--------------------------------------------------------------------------
| Session Variables
|--------------------------------------------------------------------------
|
| 'sess_driver'
|
| The storage driver to use: files, database, redis, memcached
|
| 'sess_cookie_name'
|
| The session cookie name, must contain only [0-9a-z_-] characters
|
| 'sess_expiration'
|
| The number of SECONDS you want the session to last.
| Setting to 0 (zero) means expire when the browser is closed.
|
| 'sess_save_path'
|
| The location to save sessions to, driver dependent.
|
| For the 'files' driver, it's a path to a writable directory.
| WARNING: Only absolute paths are supported!
|
| For the 'database' driver, it's a table name.
| Please read up the manual for the format with other session drivers.
|
| IMPORTANT: You are REQUIRED to set a valid save path!
|
| 'sess_match_ip'
|
| Whether to match the user's IP address when reading the session data.
|
| WARNING: If you're using the database driver, don't forget to update
| your session table's PRIMARY KEY when changing this setting.
|
| 'sess_time_to_update'
|
| How many seconds between CI regenerating the session ID.
|
| 'sess_regenerate_destroy'
|
| Whether to destroy session data associated with the old session ID
| when auto-regenerating the session ID. When set to FALSE, the data
| will be later deleted by the garbage collector.
|
| Other session cookie settings are shared with the rest of the application,
| except for 'cookie_prefix' and 'cookie_httponly', which are ignored here.
|
*/
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'tyson';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = '/tmp';
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
/*
|--------------------------------------------------------------------------
| Cookie Related Variables
|--------------------------------------------------------------------------
|
| 'cookie_prefix' = Set a cookie name prefix if you need to avoid collisions
| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
| 'cookie_path' = Typically will be a forward slash
| 'cookie_secure' = Cookie will only be set if a secure HTTPS connection exists.
| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript)
|
| Note: These settings (with the exception of 'cookie_prefix' and
| 'cookie_httponly') will also affect sessions.
|
*/
$config['cookie_prefix'] = '';
$config['cookie_domain'] = '';
$config['cookie_path'] = '/';
$config['cookie_secure'] = FALSE;
$config['cookie_httponly'] = FALSE;
/*
|--------------------------------------------------------------------------
| Standardize newlines
|--------------------------------------------------------------------------
|
| Determines whether to standardize newline characters in input data,
| meaning to replace \r\n, \r, \n occurrences with the PHP_EOL value.
|
| WARNING: This feature is DEPRECATED and currently available only
| for backwards compatibility purposes!
|
*/
$config['standardize_newlines'] = FALSE;
/*
|--------------------------------------------------------------------------
| Global XSS Filtering
|--------------------------------------------------------------------------
|
| Determines whether the XSS filter is always active when GET, POST or
| COOKIE data is encountered
|
| WARNING: This feature is DEPRECATED and currently available only
| for backwards compatibility purposes!
|
*/
$config['global_xss_filtering'] = FALSE;
/*
|--------------------------------------------------------------------------
| Cross Site Request Forgery
|--------------------------------------------------------------------------
| Enables a CSRF cookie token to be set. When set to TRUE, token will be
| checked on a submitted form. If you are accepting user data, it is strongly
| recommended CSRF protection be enabled.
|
| 'csrf_token_name' = The token name
| 'csrf_cookie_name' = The cookie name
| 'csrf_expire' = The number in seconds the token should expire.
| 'csrf_regenerate' = Regenerate token on every submission
| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks
*/
$config['csrf_protection'] = TRUE;
$config['csrf_token_name'] = 'csrf_test_name';
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$config['csrf_expire'] = 7200;
$config['csrf_regenerate'] = FALSE;
$config['csrf_exclude_uris'] = array();
/*
|--------------------------------------------------------------------------
| Output Compression
|--------------------------------------------------------------------------
|
| Enables Gzip output compression for faster page loads. When enabled,
| the output class will test whether your server supports Gzip.
| Even if it does, however, not all browsers support compression
| so enable only if you are reasonably sure your visitors can handle it.
|
| Only used if zlib.output_compression is turned off in your php.ini.
| Please do not use it together with httpd-level output compression.
|
| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
| means you are prematurely outputting something to your browser. It could
| even be a line of whitespace at the end of one of your scripts. For
| compression to work, nothing can be sent before the output buffer is called
| by the output class. Do not 'echo' any values with compression enabled.
|
*/
$config['compress_output'] = FALSE;
/*
|--------------------------------------------------------------------------
| Master Time Reference
|--------------------------------------------------------------------------
|
| Options are 'local' or any PHP supported timezone. This preference tells
| the system whether to use your server's local time as the master 'now'
| reference, or convert it to the configured one timezone. See the 'date
| helper' page of the user guide for information regarding date handling.
|
*/
$config['time_reference'] = 'local';
/*
|--------------------------------------------------------------------------
| Rewrite PHP Short Tags
|--------------------------------------------------------------------------
|
| If your PHP installation does not have short tag support enabled CI
| can rewrite the tags on-the-fly, enabling you to utilize that syntax
| in your view files. Options are TRUE or FALSE (boolean)
|
| Note: You need to have eval() enabled for this to work.
|
*/
$config['rewrite_short_tags'] = FALSE;
/*
|--------------------------------------------------------------------------
| Reverse Proxy IPs
|--------------------------------------------------------------------------
|
| If your server is behind a reverse proxy, you must whitelist the proxy
| IP addresses from which CodeIgniter should trust headers such as
| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify
| the visitor's IP address.
|
| You can use both an array or a comma-separated list of proxy addresses,
| as well as specifying whole subnets. Here are a few examples:
|
| Comma-separated: '10.0.1.200,192.168.5.0/24'
| Array: array('10.0.1.200', '192.168.5.0/24')
*/
$config['proxy_ips'] = '';
/*
* Array with available permissions
*/
$config['permissions'] = array(
'perm_add_invoice' => 1,
'perm_edit_invoice' => 1,
'perm_delete_invoice' => 1,
'perm_change_inv_status' => 1,
'perm_add_clients' => 1,
'perm_edit_clients' => 1,
'perm_delete_clients' => 1,
'perm_add_items' => 1,
'perm_edit_items' => 1,
'perm_delete_items' => 1,
'perm_can_manage_rights' => 1,
'perm_delete_employees' => 1,
'perm_edit_employees' => 1,
'perm_add_employees' => 1,
'perm_can_manage_firms' => 1,
'perm_add_movement' => 1,
'perm_view_movement_page' => 1,
'perm_view_store_stocks' => 1,
'perm_view_warranty_page' => 1,
'perm_add_warranty' => 1,
'perm_view_warranty_events' => 1,
'perm_add_warranty_events' => 1,
'perm_view_protocols_page' => 1,
'perm_add_protocol' => 1,
'perm_view_plans_page' => 1
);
$config['templates'] = array(
'creative',
'toner-save'
);
/*
* used for links (routes)
*/
$config['inv_readable_types'] = array(
'tax_inv' => 'invoice',
'prof' => 'pro-forma',
'debit' => 'debit-note',
'credit' => 'credit-note'
);
/*
* invoices statuses
*/
$config['inv_statuses'] = array(
'issued',
'draft',
'sended',
'canceled',
'accepted',
'refused'
);
/*
* plans
*/
$config['plans'] = array(
'BASIC' => array(
'PRICE' => 5,
'NUM_INVOICES' => 20,
'NUM_FIRMS' => 1
),
'ADVANCED' => array(
'PRICE' => 15,
'NUM_INVOICES' => 200,
'NUM_FIRMS' => 3
),
'PRO' => array(
'PRICE' => 50, // per year
'NUM_INVOICES' => 3000,
'NUM_FIRMS' => 10
)
);
================================================
FILE: application/config/constants.php
================================================
<?php
if (isset($_SERVER['SERVER_PORT']))
{
/*
|--------------------------------------------------------------------------
| Base URL
|--------------------------------------------------------------------------
*/
define('BASE_URL',
(!empty($_SERVER['SERVER_PORT'])?$_SERVER['SERVER_PORT']==443?'https':'http':FALSE).
"://".(!empty($_SERVER['SERVER_NAME'])?$_SERVER['SERVER_NAME']:FALSE).str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']));
/*
|--------------------------------------------------------------------------
| Current URL
|--------------------------------------------------------------------------
*/
define('CURRENT_URL', (!empty($_SERVER['SERVER_PORT'])?$_SERVER['SERVER_PORT']==443?'https':'http':FALSE)."://".(!empty($_SERVER['SERVER_NAME'])?$_SERVER['SERVER_NAME']:FALSE).str_replace('//', '/', $_SERVER['REQUEST_URI']));
}
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Display Debug backtrace
|--------------------------------------------------------------------------
|
| If set to TRUE, a backtrace will be displayed along with php errors. If
| error_reporting is disabled, the backtrace will not display, regardless
| of this setting
|
*/
defined('SHOW_DEBUG_BACKTRACE') OR define('SHOW_DEBUG_BACKTRACE', TRUE);
/*
|--------------------------------------------------------------------------
| File and Directory Modes
|--------------------------------------------------------------------------
|
| These prefs are used when checking and setting modes when working
| with the file system. The defaults are fine on servers with proper
| security, but you may wish (or even need) to change the values in
| certain environments (Apache running a separate process for each
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
| always be used to set the mode correctly.
|
*/
defined('FILE_READ_MODE') OR define('FILE_READ_MODE', 0644);
defined('FILE_WRITE_MODE') OR define('FILE_WRITE_MODE', 0666);
defined('DIR_READ_MODE') OR define('DIR_READ_MODE', 0755);
defined('DIR_WRITE_MODE') OR define('DIR_WRITE_MODE', 0755);
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
defined('FOPEN_READ') OR define('FOPEN_READ', 'rb');
defined('FOPEN_READ_WRITE') OR define('FOPEN_READ_WRITE', 'r+b');
defined('FOPEN_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
defined('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE') OR define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
defined('FOPEN_WRITE_CREATE') OR define('FOPEN_WRITE_CREATE', 'ab');
defined('FOPEN_READ_WRITE_CREATE') OR define('FOPEN_READ_WRITE_CREATE', 'a+b');
defined('FOPEN_WRITE_CREATE_STRICT') OR define('FOPEN_WRITE_CREATE_STRICT', 'xb');
defined('FOPEN_READ_WRITE_CREATE_STRICT') OR define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
/*
|--------------------------------------------------------------------------
| Exit Status Codes
|--------------------------------------------------------------------------
|
| Used to indicate the conditions under which the script is exit()ing.
| While there is no universal standard for error codes, there are some
| broad conventions. Three such conventions are mentioned below, for
| those who wish to make use of them. The CodeIgniter defaults were
| chosen for the least overlap with these conventions, while still
| leaving room for others to be defined in future versions and user
| applications.
|
| The three main conventions used for determining exit status codes
| are as follows:
|
| Standard C/C++ Library (stdlibc):
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
| (This link also contains other GNU-specific conventions)
| BSD sysexits.h:
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
| Bash scripting:
| http://tldp.org/LDP/abs/html/exitcodes.html
|
*/
defined('EXIT_SUCCESS') OR define('EXIT_SUCCESS', 0); // no errors
defined('EXIT_ERROR') OR define('EXIT_ERROR', 1); // generic error
defined('EXIT_CONFIG') OR define('EXIT_CONFIG', 3); // configuration error
defined('EXIT_UNKNOWN_FILE') OR define('EXIT_UNKNOWN_FILE', 4); // file not found
defined('EXIT_UNKNOWN_CLASS') OR define('EXIT_UNKNOWN_CLASS', 5); // unknown class
defined('EXIT_UNKNOWN_METHOD') OR define('EXIT_UNKNOWN_METHOD', 6); // unknown class member
defined('EXIT_USER_INPUT') OR define('EXIT_USER_INPUT', 7); // invalid user input
defined('EXIT_DATABASE') OR define('EXIT_DATABASE', 8); // database error
defined('EXIT__AUTO_MIN') OR define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code
defined('EXIT__AUTO_MAX') OR define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code
/*
* Mine CONSTANTS
*/
define('COMPANIES_IMAGES_DIR', 'companiesimages');
define('BLOG_IMAGES_DIR', 'blogimages');
define('FEATURES_IMAGES_DIR', 'featuresimages');
================================================
FILE: application/config/database.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| ['dsn'] The full DSN string describe a connection to the database.
| ['hostname'] The hostname of your database server.
| ['username'] The username used to connect to the database
| ['password'] The password used to connect to the database
| ['database'] The name of the database you want to connect to
| ['dbdriver'] The database driver. e.g.: mysqli.
| Currently supported:
| cubrid, ibase, mssql, mysql, mysqli, oci8,
| odbc, pdo, postgre, sqlite, sqlite3, sqlsrv
| ['dbprefix'] You can add an optional prefix, which will be added
| to the table name when using the Query Builder class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
| ['cachedir'] The path to the folder where cache files should be stored
| ['char_set'] The character set used in communicating with the database
| ['dbcollat'] The character collation used in communicating with the database
| NOTE: For MySQL and MySQLi databases, this setting is only used
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
| (and in table creation queries made with DB Forge).
| There is an incompatibility in PHP with mysql_real_escape_string() which
| can make your site vulnerable to SQL injection if you are using a
| multi-byte character set and are running versions lower than these.
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
| ['encrypt'] Whether or not to use an encrypted connection.
|
| 'mysql' (deprecated), 'sqlsrv' and 'pdo/sqlsrv' drivers accept TRUE/FALSE
| 'mysqli' and 'pdo/mysql' drivers accept an array with the following options:
|
| 'ssl_key' - Path to the private key file
| 'ssl_cert' - Path to the public key certificate file
| 'ssl_ca' - Path to the certificate authority file
| 'ssl_capath' - Path to a directory containing trusted CA certificats in PEM format
| 'ssl_cipher' - List of *allowed* ciphers to be used for the encryption, separated by colons (':')
| 'ssl_verify' - TRUE/FALSE; Whether verify the server certificate or not ('mysqli' only)
|
| ['compress'] Whether or not to use client compression (MySQL only)
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
| ['ssl_options'] Used to set various SSL options that can be used when making SSL connections.
| ['failover'] array - A array with 0 or more data for connections if the main should fail.
| ['save_queries'] TRUE/FALSE - Whether to "save" all executed queries.
| NOTE: Disabling this will also effectively disable both
| $this->db->last_query() and profiling of DB queries.
| When you run a query, with this setting set to TRUE (default),
| CodeIgniter will store the SQL statement for debugging purposes.
| However, this may cause high memory usage, especially if you run
| a lot of SQL queries ... disable this to avoid that problem.
|
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
|
| The $query_builder variables lets you determine whether or not to load
| the query builder class.
*/
$active_group = 'default';
$query_builder = TRUE;
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost',
'username' => 'root',
'password' => 'toor',
'database' => 'test',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
================================================
FILE: application/config/doctypes.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$_doctypes = array(
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
'xhtml-basic11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
'html5' => '<!DOCTYPE html>',
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
'mathml1' => '<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">',
'mathml2' => '<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/mathml2.dtd">',
'svg10' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">',
'svg11' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">',
'svg11-basic' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">',
'svg11-tiny' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">',
'xhtml-math-svg-xh' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
'xhtml-math-svg-sh' => '<!DOCTYPE svg:svg PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
'xhtml-rdfa-1' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">',
'xhtml-rdfa-2' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">'
);
================================================
FILE: application/config/foreign_chars.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| Foreign Characters
| -------------------------------------------------------------------
| This file contains an array of foreign characters for transliteration
| conversion used by the Text helper
|
*/
$foreign_characters = array(
'/ä|æ|ǽ/' => 'ae',
'/ö|œ/' => 'oe',
'/ü/' => 'ue',
'/Ä/' => 'Ae',
'/Ü/' => 'Ue',
'/Ö/' => 'Oe',
'/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ|Α|Ά|Ả|Ạ|Ầ|Ẫ|Ẩ|Ậ|Ằ|Ắ|Ẵ|Ẳ|Ặ|А/' => 'A',
'/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª|α|ά|ả|ạ|ầ|ấ|ẫ|ẩ|ậ|ằ|ắ|ẵ|ẳ|ặ|а/' => 'a',
'/Б/' => 'B',
'/б/' => 'b',
'/Ç|Ć|Ĉ|Ċ|Č/' => 'C',
'/ç|ć|ĉ|ċ|č/' => 'c',
'/Д/' => 'D',
'/д/' => 'd',
'/Ð|Ď|Đ|Δ/' => 'Dj',
'/ð|ď|đ|δ/' => 'dj',
'/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě|Ε|Έ|Ẽ|Ẻ|Ẹ|Ề|Ế|Ễ|Ể|Ệ|Е|Э/' => 'E',
'/è|é|ê|ë|ē|ĕ|ė|ę|ě|έ|ε|ẽ|ẻ|ẹ|ề|ế|ễ|ể|ệ|е|э/' => 'e',
'/Ф/' => 'F',
'/ф/' => 'f',
'/Ĝ|Ğ|Ġ|Ģ|Γ|Г|Ґ/' => 'G',
'/ĝ|ğ|ġ|ģ|γ|г|ґ/' => 'g',
'/Ĥ|Ħ/' => 'H',
'/ĥ|ħ/' => 'h',
'/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ|Η|Ή|Ί|Ι|Ϊ|Ỉ|Ị|И|Ы/' => 'I',
'/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı|η|ή|ί|ι|ϊ|ỉ|ị|и|ы|ї/' => 'i',
'/Ĵ/' => 'J',
'/ĵ/' => 'j',
'/Ķ|Κ|К/' => 'K',
'/ķ|κ|к/' => 'k',
'/Ĺ|Ļ|Ľ|Ŀ|Ł|Λ|Л/' => 'L',
'/ĺ|ļ|ľ|ŀ|ł|λ|л/' => 'l',
'/М/' => 'M',
'/м/' => 'm',
'/Ñ|Ń|Ņ|Ň|Ν|Н/' => 'N',
'/ñ|ń|ņ|ň|ʼn|ν|н/' => 'n',
'/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ|Ο|Ό|Ω|Ώ|Ỏ|Ọ|Ồ|Ố|Ỗ|Ổ|Ộ|Ờ|Ớ|Ỡ|Ở|Ợ|О/' => 'O',
'/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º|ο|ό|ω|ώ|ỏ|ọ|ồ|ố|ỗ|ổ|ộ|ờ|ớ|ỡ|ở|ợ|о/' => 'o',
'/П/' => 'P',
'/п/' => 'p',
'/Ŕ|Ŗ|Ř|Ρ|Р/' => 'R',
'/ŕ|ŗ|ř|ρ|р/' => 'r',
'/Ś|Ŝ|Ş|Ș|Š|Σ|С/' => 'S',
'/ś|ŝ|ş|ș|š|ſ|σ|ς|с/' => 's',
'/Ț|Ţ|Ť|Ŧ|τ|Т/' => 'T',
'/ț|ţ|ť|ŧ|т/' => 't',
'/Þ|þ/' => 'th',
'/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ|Ũ|Ủ|Ụ|Ừ|Ứ|Ữ|Ử|Ự|У/' => 'U',
'/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ|υ|ύ|ϋ|ủ|ụ|ừ|ứ|ữ|ử|ự|у/' => 'u',
'/Ý|Ÿ|Ŷ|Υ|Ύ|Ϋ|Ỳ|Ỹ|Ỷ|Ỵ|Й/' => 'Y',
'/ý|ÿ|ŷ|ỳ|ỹ|ỷ|ỵ|й/' => 'y',
'/В/' => 'V',
'/в/' => 'v',
'/Ŵ/' => 'W',
'/ŵ/' => 'w',
'/Ź|Ż|Ž|Ζ|З/' => 'Z',
'/ź|ż|ž|ζ|з/' => 'z',
'/Æ|Ǽ/' => 'AE',
'/ß/' => 'ss',
'/IJ/' => 'IJ',
'/ij/' => 'ij',
'/Œ/' => 'OE',
'/ƒ/' => 'f',
'/ξ/' => 'ks',
'/π/' => 'p',
'/β/' => 'v',
'/μ/' => 'm',
'/ψ/' => 'ps',
'/Ё/' => 'Yo',
'/ё/' => 'yo',
'/Є/' => 'Ye',
'/є/' => 'ye',
'/Ї/' => 'Yi',
'/Ж/' => 'Zh',
'/ж/' => 'zh',
'/Х/' => 'Kh',
'/х/' => 'kh',
'/Ц/' => 'Ts',
'/ц/' => 'ts',
'/Ч/' => 'Ch',
'/ч/' => 'ch',
'/Ш/' => 'Sh',
'/ш/' => 'sh',
'/Щ/' => 'Shch',
'/щ/' => 'shch',
'/Ъ|ъ|Ь|ь/' => '',
'/Ю/' => 'Yu',
'/ю/' => 'yu',
'/Я/' => 'Ya',
'/я/' => 'ya'
);
================================================
FILE: application/config/hooks.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Hooks
| -------------------------------------------------------------------------
| This file lets you define "hooks" to extend CI without hacking the core
| files. Please see the user guide for info:
|
| https://codeigniter.com/user_guide/general/hooks.html
|
*/
================================================
FILE: application/config/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/config/memcached.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Memcached settings
| -------------------------------------------------------------------------
| Your Memcached servers can be specified below.
|
| See: https://codeigniter.com/user_guide/libraries/caching.html#memcached
|
*/
$config = array(
'default' => array(
'hostname' => '127.0.0.1',
'port' => '11211',
'weight' => '1',
),
);
================================================
FILE: application/config/migration.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Enable/Disable Migrations
|--------------------------------------------------------------------------
|
| Migrations are disabled by default for security reasons.
| You should enable migrations whenever you intend to do a schema migration
| and disable it back when you're done.
|
*/
$config['migration_enabled'] = FALSE;
/*
|--------------------------------------------------------------------------
| Migration Type
|--------------------------------------------------------------------------
|
| Migration file names may be based on a sequential identifier or on
| a timestamp. Options are:
|
| 'sequential' = Sequential migration naming (001_add_blog.php)
| 'timestamp' = Timestamp migration naming (20121031104401_add_blog.php)
| Use timestamp format YYYYMMDDHHIISS.
|
| Note: If this configuration value is missing the Migration library
| defaults to 'sequential' for backward compatibility with CI2.
|
*/
$config['migration_type'] = 'timestamp';
/*
|--------------------------------------------------------------------------
| Migrations table
|--------------------------------------------------------------------------
|
| This is the name of the table that will store the current migrations state.
| When migrations runs it will store in a database table which migration
| level the system is at. It then compares the migration level in this
| table to the $config['migration_version'] if they are not the same it
| will migrate up. This must be set.
|
*/
$config['migration_table'] = 'migrations';
/*
|--------------------------------------------------------------------------
| Auto Migrate To Latest
|--------------------------------------------------------------------------
|
| If this is set to TRUE when you load the migrations class and have
| $config['migration_enabled'] set to TRUE the system will auto migrate
| to your latest migration (whatever $config['migration_version'] is
| set to). This way you do not have to call migrations anywhere else
| in your code to have the latest migration.
|
*/
$config['migration_auto_latest'] = FALSE;
/*
|--------------------------------------------------------------------------
| Migrations version
|--------------------------------------------------------------------------
|
| This is used to set migration version that the file system should be on.
| If you run $this->migration->current() this is the version that schema will
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 0;
/*
|--------------------------------------------------------------------------
| Migrations Path
|--------------------------------------------------------------------------
|
| Path to your migrations folder.
| Typically, it will be within your application path.
| Also, writing permission is required within the migrations path.
|
*/
$config['migration_path'] = APPPATH.'migrations/';
================================================
FILE: application/config/mimes.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| MIME TYPES
| -------------------------------------------------------------------
| This file contains an array of mime types. It is used by the
| Upload class to help identify allowed file types.
|
*/
return array(
'hqx' => array('application/mac-binhex40', 'application/mac-binhex', 'application/x-binhex40', 'application/x-mac-binhex40'),
'cpt' => 'application/mac-compactpro',
'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel', 'text/plain'),
'bin' => array('application/macbinary', 'application/mac-binary', 'application/octet-stream', 'application/x-binary', 'application/x-macbinary'),
'dms' => 'application/octet-stream',
'lha' => 'application/octet-stream',
'lzh' => 'application/octet-stream',
'exe' => array('application/octet-stream', 'application/x-msdownload'),
'class' => 'application/octet-stream',
'psd' => array('application/x-photoshop', 'image/vnd.adobe.photoshop'),
'so' => 'application/octet-stream',
'sea' => 'application/octet-stream',
'dll' => 'application/octet-stream',
'oda' => 'application/oda',
'pdf' => array('application/pdf', 'application/force-download', 'application/x-download', 'binary/octet-stream'),
'ai' => array('application/pdf', 'application/postscript'),
'eps' => 'application/postscript',
'ps' => 'application/postscript',
'smi' => 'application/smil',
'smil' => 'application/smil',
'mif' => 'application/vnd.mif',
'xls' => array('application/vnd.ms-excel', 'application/msexcel', 'application/x-msexcel', 'application/x-ms-excel', 'application/x-excel', 'application/x-dos_ms_excel', 'application/xls', 'application/x-xls', 'application/excel', 'application/download', 'application/vnd.ms-office', 'application/msword'),
'ppt' => array('application/powerpoint', 'application/vnd.ms-powerpoint', 'application/vnd.ms-office', 'application/msword'),
'pptx' => array('application/vnd.openxmlformats-officedocument.presentationml.presentation', 'application/x-zip', 'application/zip'),
'wbxml' => 'application/wbxml',
'wmlc' => 'application/wmlc',
'dcr' => 'application/x-director',
'dir' => 'application/x-director',
'dxr' => 'application/x-director',
'dvi' => 'application/x-dvi',
'gtar' => 'application/x-gtar',
'gz' => 'application/x-gzip',
'gzip' => 'application/x-gzip',
'php' => array('application/x-httpd-php', 'application/php', 'application/x-php', 'text/php', 'text/x-php', 'application/x-httpd-php-source'),
'php4' => 'application/x-httpd-php',
'php3' => 'application/x-httpd-php',
'phtml' => 'application/x-httpd-php',
'phps' => 'application/x-httpd-php-source',
'js' => array('application/x-javascript', 'text/plain'),
'swf' => 'application/x-shockwave-flash',
'sit' => 'application/x-stuffit',
'tar' => 'application/x-tar',
'tgz' => array('application/x-tar', 'application/x-gzip-compressed'),
'z' => 'application/x-compress',
'xhtml' => 'application/xhtml+xml',
'xht' => 'application/xhtml+xml',
'zip' => array('application/x-zip', 'application/zip', 'application/x-zip-compressed', 'application/s-compressed', 'multipart/x-zip'),
'rar' => array('application/x-rar', 'application/rar', 'application/x-rar-compressed'),
'mid' => 'audio/midi',
'midi' => 'audio/midi',
'mpga' => 'audio/mpeg',
'mp2' => 'audio/mpeg',
'mp3' => array('audio/mpeg', 'audio/mpg', 'audio/mpeg3', 'audio/mp3'),
'aif' => array('audio/x-aiff', 'audio/aiff'),
'aiff' => array('audio/x-aiff', 'audio/aiff'),
'aifc' => 'audio/x-aiff',
'ram' => 'audio/x-pn-realaudio',
'rm' => 'audio/x-pn-realaudio',
'rpm' => 'audio/x-pn-realaudio-plugin',
'ra' => 'audio/x-realaudio',
'rv' => 'video/vnd.rn-realvideo',
'wav' => array('audio/x-wav', 'audio/wave', 'audio/wav'),
'bmp' => array('image/bmp', 'image/x-bmp', 'image/x-bitmap', 'image/x-xbitmap', 'image/x-win-bitmap', 'image/x-windows-bmp', 'image/ms-bmp', 'image/x-ms-bmp', 'application/bmp', 'application/x-bmp', 'application/x-win-bitmap'),
'gif' => 'image/gif',
'jpeg' => array('image/jpeg', 'image/pjpeg'),
'jpg' => array('image/jpeg', 'image/pjpeg'),
'jpe' => array('image/jpeg', 'image/pjpeg'),
'jp2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'j2k' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'jpf' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'jpg2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'jpx' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'jpm' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'mj2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'mjp2' => array('image/jp2', 'video/mj2', 'image/jpx', 'image/jpm'),
'png' => array('image/png', 'image/x-png'),
'tiff' => 'image/tiff',
'tif' => 'image/tiff',
'css' => array('text/css', 'text/plain'),
'html' => array('text/html', 'text/plain'),
'htm' => array('text/html', 'text/plain'),
'shtml' => array('text/html', 'text/plain'),
'txt' => 'text/plain',
'text' => 'text/plain',
'log' => array('text/plain', 'text/x-log'),
'rtx' => 'text/richtext',
'rtf' => 'text/rtf',
'xml' => array('application/xml', 'text/xml', 'text/plain'),
'xsl' => array('application/xml', 'text/xsl', 'text/xml'),
'mpeg' => 'video/mpeg',
'mpg' => 'video/mpeg',
'mpe' => 'video/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
'avi' => array('video/x-msvideo', 'video/msvideo', 'video/avi', 'application/x-troff-msvideo'),
'movie' => 'video/x-sgi-movie',
'doc' => array('application/msword', 'application/vnd.ms-office'),
'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword', 'application/x-zip'),
'dot' => array('application/msword', 'application/vnd.ms-office'),
'dotx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip', 'application/msword'),
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/vnd.ms-excel', 'application/msword', 'application/x-zip'),
'word' => array('application/msword', 'application/octet-stream'),
'xl' => 'application/excel',
'eml' => 'message/rfc822',
'json' => array('application/json', 'text/json'),
'pem' => array('application/x-x509-user-cert', 'application/x-pem-file', 'application/octet-stream'),
'p10' => array('application/x-pkcs10', 'application/pkcs10'),
'p12' => 'application/x-pkcs12',
'p7a' => 'application/x-pkcs7-signature',
'p7c' => array('application/pkcs7-mime', 'application/x-pkcs7-mime'),
'p7m' => array('application/pkcs7-mime', 'application/x-pkcs7-mime'),
'p7r' => 'application/x-pkcs7-certreqresp',
'p7s' => 'application/pkcs7-signature',
'crt' => array('application/x-x509-ca-cert', 'application/x-x509-user-cert', 'application/pkix-cert'),
'crl' => array('application/pkix-crl', 'application/pkcs-crl'),
'der' => 'application/x-x509-ca-cert',
'kdb' => 'application/octet-stream',
'pgp' => 'application/pgp',
'gpg' => 'application/gpg-keys',
'sst' => 'application/octet-stream',
'csr' => 'application/octet-stream',
'rsa' => 'application/x-pkcs7',
'cer' => array('application/pkix-cert', 'application/x-x509-ca-cert'),
'3g2' => 'video/3gpp2',
'3gp' => array('video/3gp', 'video/3gpp'),
'mp4' => 'video/mp4',
'm4a' => 'audio/x-m4a',
'f4v' => array('video/mp4', 'video/x-f4v'),
'flv' => 'video/x-flv',
'webm' => 'video/webm',
'aac' => 'audio/x-acc',
'm4u' => 'application/vnd.mpegurl',
'm3u' => 'text/plain',
'xspf' => 'application/xspf+xml',
'vlc' => 'application/videolan',
'wmv' => array('video/x-ms-wmv', 'video/x-ms-asf'),
'au' => 'audio/x-au',
'ac3' => 'audio/ac3',
'flac' => 'audio/x-flac',
'ogg' => array('audio/ogg', 'video/ogg', 'application/ogg'),
'kmz' => array('application/vnd.google-earth.kmz', 'application/zip', 'application/x-zip'),
'kml' => array('application/vnd.google-earth.kml+xml', 'application/xml', 'text/xml'),
'ics' => 'text/calendar',
'ical' => 'text/calendar',
'zsh' => 'text/x-scriptzsh',
'7zip' => array('application/x-compressed', 'application/x-zip-compressed', 'application/zip', 'multipart/x-zip'),
'cdr' => array('application/cdr', 'application/coreldraw', 'application/x-cdr', 'application/x-coreldraw', 'image/cdr', 'image/x-cdr', 'zz-application/zz-winassoc-cdr'),
'wma' => array('audio/x-ms-wma', 'video/x-ms-asf'),
'jar' => array('application/java-archive', 'application/x-java-application', 'application/x-jar', 'application/x-compressed'),
'svg' => array('image/svg+xml', 'application/xml', 'text/xml'),
'vcf' => 'text/x-vcard',
'srt' => array('text/srt', 'text/plain'),
'vtt' => array('text/vtt', 'text/plain'),
'ico' => array('image/x-icon', 'image/x-ico', 'image/vnd.microsoft.icon'),
'odc' => 'application/vnd.oasis.opendocument.chart',
'otc' => 'application/vnd.oasis.opendocument.chart-template',
'odf' => 'application/vnd.oasis.opendocument.formula',
'otf' => 'application/vnd.oasis.opendocument.formula-template',
'odg' => 'application/vnd.oasis.opendocument.graphics',
'otg' => 'application/vnd.oasis.opendocument.graphics-template',
'odi' => 'application/vnd.oasis.opendocument.image',
'oti' => 'application/vnd.oasis.opendocument.image-template',
'odp' => 'application/vnd.oasis.opendocument.presentation',
'otp' => 'application/vnd.oasis.opendocument.presentation-template',
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
'odt' => 'application/vnd.oasis.opendocument.text',
'odm' => 'application/vnd.oasis.opendocument.text-master',
'ott' => 'application/vnd.oasis.opendocument.text-template',
'oth' => 'application/vnd.oasis.opendocument.text-web'
);
================================================
FILE: application/config/profiler.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| Profiler Sections
| -------------------------------------------------------------------------
| This file lets you determine whether or not various sections of Profiler
| data are displayed when the Profiler is enabled.
| Please see the user guide for info:
|
| https://codeigniter.com/user_guide/general/profiling.html
|
*/
================================================
FILE: application/config/routes.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| https://codeigniter.com/user_guide/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There are three reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router which controller/method to use if those
| provided in the URL cannot be matched to a valid route.
|
| $route['translate_uri_dashes'] = FALSE;
|
| This is not exactly a route, but allows you to automatically route
| controller and method names that contain dashes. '-' isn't a valid
| class or method name character, so it requires translation.
| When you set this option to TRUE, it will replace ALL dashes in the
| controller and method URI segments.
|
| Examples: my-controller/index -> my_controller/index
| my-controller/my-method -> my_controller/my_method
*/
$route['(\w{2})?/?loadlanguage/(:any)'] = "Loader/jsFile/$2";
$route['default_controller'] = 'home';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
/* ADMIN PANEL ROUTES */
$route['admin'] = "admin/home/login";
$route['admin/logout'] = "admin/home/login/logout";
$route['admin/plans/requests'] = "admin/plans/requests";
$route['admin/plans/requests/(:num)'] = "admin/plans/requests/index/$1";
$route['admin/plans/individual/request'] = "admin/plans/requests/custom";
$route['admin/plans/individual/request/(:num)'] = "admin/plans/requests/custom/$1";
/* ADMIN PANEL ROUTES */
$route['bankpayment'] = "users/plans/PlansUsers/cardPayment";
/* AJAX CALLED */
/* USERS PANEL ROUTES */
$route['(\w{2})?/?user'] = "users/home";
$route['(\w{2})?/?user/logout'] = "home/logout";
$route['(\w{2})?/?user/managefirms'] = "users/managefirms/managefirms";
$route['(\w{2})?/?user/managefirms/edit/(:num)'] = "users/managefirms/managefirms/editCompany/$2";
$route['(\w{2})?/?user/managefirms/edit/(:num)/(:num)'] = "users/managefirms/managefirms/editCompany/$2/$3";
$route['(\w{2})?/?user/usecompany/(:num)'] = "users/home/home/useCompany/$2";
$route['(\w{2})?/?user/managefirms/delete-translation/(:num)/(:num)'] = "users/managefirms/managefirms/deleteTranslation/$2/$3";
$route['(\w{2})?/?user/managefirms/delete-company/(:num)'] = "users/managefirms/managefirms/deleteCompany/$2";
$route['(\w{2})?/?user/managefirms/make-default/(:num)'] = "users/managefirms/managefirms/makeDefaultFirm/$2";
$route['(\w{2})?/?user/managefirms/make-default-translation/(:num)/(:num)'] = "users/managefirms/managefirms/makeDefaultTranslation/$2/$3";
$route['(\w{2})?/?user/new/invoice'] = "users/invoices/newinvoice";
$route['(\w{2})?/?user/settings/invoices'] = "users/settings/invoices";
$route['(\w{2})?/?user/defaultcurrency'] = 'users/settings/invoices/defaultcurrency'; // ajax called
$route['(\w{2})?/?user/settings/invoices/delete/default/(:num)'] = 'users/settings/invoices/deletedefaultcurrency/$2';
$route['(\w{2})?/?user/settings/invoices/delete/currency/(:num)'] = 'users/settings/invoices/deletecurrency/$2';
$route['(\w{2})?/?user/addnewquantitytype'] = 'users/invoices/newinvoice/addnewquantitytype'; // ajax called
$route['(\w{2})?/?user/settings'] = "users/settings/settings";
$route['(\w{2})?/?user/settings/invoices/delete/quantitytype/(:num)'] = 'users/settings/invoices/deletequantitytype/$2';
$route['user/addnewpaymentmethod'] = 'users/invoices/newinvoice/addnewpaymentmethod'; // ajax called
$route['(\w{2})?/?user/settings/invoices/delete/paymentmethod/(:num)'] = 'users/settings/invoices/deletepaymentmethod/$2';
$route['(\w{2})?/?user/settings/invoices/delete/novatreason/(:num)'] = 'users/settings/invoices/deletenovatreason/$2';
$route['(\w{2})?/?user/modalselector'] = 'users/invoices/newinvoice/modalselector'; // ajax called
$route['(\w{2})?/?user/invoices'] = "users/invoices/invoices";
$route['(\w{2})?/?user/invoices/(:num)'] = "users/invoices/invoices/index/$2";
$route['(\w{2})?/?user/(invoice|pro-forma|debit-note|credit-note)/edit/(:num)'] = "users/invoices/newinvoice/index/$2/$3";
$route['(\w{2})?/?user/clients'] = "users/clients/clients";
$route['(\w{2})?/?user/clients/(:num)'] = "users/clients/clients/index/$2";
$route['(\w{2})?/?user/client/delete/(:num)'] = "users/clients/clients/deleteclient/$2";
$route['(\w{2})?/?user/client/edit/(:num)'] = "users/clients/clients/addclient/$2";
$route['(\w{2})?/?user/client/add'] = "users/clients/clients/addclient";
$route['(\w{2})?/?user/items'] = "users/items/items";
$route['(\w{2})?/?user/items/(:num)'] = "users/items/items/index/$2";
$route['(\w{2})?/?user/item/delete/(:num)'] = "users/items/items/deleteitem/$2";
$route['(\w{2})?/?user/item/edit/(:num)'] = "users/items/items/additem/$2";
$route['(\w{2})?/?user/item/add'] = "users/items/items/additem";
$route['(\w{2})?/?user/settings/employees'] = "users/settings/employees";
$route['(\w{2})?/?user/settings/employees/(:num)'] = "users/settings/employees/index/$2";
$route['(\w{2})?/?user/settings/employees/add'] = "users/settings/employees/addnew";
$route['(\w{2})?/?user/settings/employees/add/(:num)'] = "users/settings/employees/addnew/$2";
$route['(\w{2})?/?user/settings/employees/delete/(:num)'] = "users/settings/employees/deleteemployee/$2";
$route['(\w{2})?/?user/settings/employees/rights/(:num)'] = "users/settings/employees/managerights/$2";
$route['(\w{2})?/?user/admin'] = "users/settings/admin";
$route['(\w{2})?/?user/(invoice|pro-forma|debit-note|credit-note)/view/(:num)'] = "users/invoices/invoiceview/index/$2/$3";
$route['(\w{2})?/?user/(invoice|pro-forma|debit-note|credit-note)/print/(original|copy)/(:num)'] = "users/invoices/invoiceview/viewInvoiceAsPdf/$2/$3/$4";
$route['(\w{2})?/?user/invoice/delete/(:num)'] = "users/invoices/invoices/deleteInvoice/$2";
$route['(\w{2})?/?user/reports'] = "users/reports/reports";
$route['(\w{2})?/?user/settings/global'] = "users/settings/GlobalSettings";
$route['(\w{2})?/?user/changeinvoicestatus'] = 'users/invoices/invoices/changeinvoicepaymentstatus'; // ajax called
$route['(\w{2})?/?user/findresults'] = 'users/home/home/findresults'; // ajax called
$route['(\w{2})?/?user/client/view/(:num)'] = "users/clients/clients/viewclient/$2";
$route['(\w{2})?/?user/item/view/(:num)'] = "users/items/items/viewitem/$2";
$route['(\w{2})?/?user/import-export'] = "users/import_export/ImportExport";
$route['(\w{2})?/?user/store'] = "users/store/Store";
$route['(\w{2})?/?user/store/(:num)'] = "users/store/store/index/$2";
$route['(\w{2})?/?user/settings/stores'] = "users/settings/stores";
$route['(\w{2})?/?user/settings/stores/delete/store/(:num)'] = "users/settings/stores/deletestore/$2";
$route['(\w{2})?/?user/store/add-movement'] = "users/store/Store/addmovement";
$route['(\w{2})?/?user/movement/view/(:num)'] = "users/store/movementview/index/$2";
$route['(\w{2})?/?user/store-order/print/(:num)'] = "users/store/movementview/viewMovementAsPdf/$2";
$route['(\w{2})?/?user/store/stocks'] = "users/store/Store/stocks";
$route['(\w{2})?/?user/store/stocks/(:num)'] = "users/store/Store/stocks/$2";
$route['(\w{2})?/?user/warranties'] = "users/warranty/warranty";
$route['(\w{2})?/?user/warranties/(:num)'] = "users/warranty/warranty/index/$2";
$route['(\w{2})?/?user/warranties/add-warranty'] = "users/warranty/warranty/addwarranty";
$route['(\w{2})?/?user/warranty/print/(:num)'] = "users/warranty/warrantyview/viewWarrantyAsPdf/$2";
$route['(\w{2})?/?user/warranty/edit/(:num)'] = "users/warranty/warranty/addwarranty/$2";
$route['(\w{2})?/?user/settings/warranty'] = "users/settings/warranty";
$route['(\w{2})?/?user/settings/warranty/delete/condition/(:num)'] = "users/settings/warranty/deleteCondition/$2";
$route['(\w{2})?/?user/warranty/events/(:num)'] = "users/warranty/events/index/$2";
$route['(\w{2})?/?user/warranty/events/(:num)/add-event'] = "users/warranty/events/addevent/$2";
$route['(\w{2})?/?user/protocols'] = "users/protocols/protocols";
$route['(\w{2})?/?user/protocols/(:num)'] = "users/protocols/protocols/index/$2";
$route['(\w{2})?/?user/settings/protocols'] = "users/settings/protocols";
$route['(\w{2})?/?user/protocols/add-protocol'] = "users/protocols/protocols/addprotocol";
$route['(\w{2})?/?user/protocol/print/(:num)'] = "users/protocols/protocolview/viewProtocolAsPdf/$2";
$route['(\w{2})?/?user/protocol/edit/(:num)'] = "users/protocols/protocols/addprotocol/$2";
$route['(\w{2})?/?user/settings/protocols/delete/provider-transmit/(:num)'] = "users/settings/protocols/deleteProviderTransmitText/$2";
$route['(\w{2})?/?user/settings/protocols/delete/contract/(:num)'] = "users/settings/protocols/deleteContract/$2";
$route['(\w{2})?/?user/plans'] = "users/plans/PlansUsers";
$route['(\w{2})?/?user/plan/(:any)'] = "users/plans/PlansUsers/chooseperiod/$2";
$route['(\w{2})?/?user/myplan/request'] = "users/plans/PlansUsers/planrequest";
$route['pdffooter'] = 'home/getinvoicefooter';
/* USERS PANEL ROUTES */
$route['^(\w{2})$'] = $route['default_controller'];
$route['(\w{2})?/?login'] = "registration/login";
$route['(\w{2})?/?password-forgotten'] = "registration/forgotten";
$route['(\w{2})?/?choose-type-of-login'] = 'registration/choosetype';
$route['accept/invoice/(:any)'] = 'home/publicAcceptInvoice/$1';
$route['^(\w{2})/(:any)$'] = '$2';
================================================
FILE: application/config/smileys.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| SMILEYS
| -------------------------------------------------------------------
| This file contains an array of smileys for use with the emoticon helper.
| Individual images can be used to replace multiple smileys. For example:
| :-) and :) use the same image replacement.
|
| Please see user guide for more info:
| https://codeigniter.com/user_guide/helpers/smiley_helper.html
|
*/
$smileys = array(
// smiley image name width height alt
':-)' => array('grin.gif', '19', '19', 'grin'),
':lol:' => array('lol.gif', '19', '19', 'LOL'),
':cheese:' => array('cheese.gif', '19', '19', 'cheese'),
':)' => array('smile.gif', '19', '19', 'smile'),
';-)' => array('wink.gif', '19', '19', 'wink'),
';)' => array('wink.gif', '19', '19', 'wink'),
':smirk:' => array('smirk.gif', '19', '19', 'smirk'),
':roll:' => array('rolleyes.gif', '19', '19', 'rolleyes'),
':-S' => array('confused.gif', '19', '19', 'confused'),
':wow:' => array('surprise.gif', '19', '19', 'surprised'),
':bug:' => array('bigsurprise.gif', '19', '19', 'big surprise'),
':-P' => array('tongue_laugh.gif', '19', '19', 'tongue laugh'),
'%-P' => array('tongue_rolleye.gif', '19', '19', 'tongue rolleye'),
';-P' => array('tongue_wink.gif', '19', '19', 'tongue wink'),
':P' => array('raspberry.gif', '19', '19', 'raspberry'),
':blank:' => array('blank.gif', '19', '19', 'blank stare'),
':long:' => array('longface.gif', '19', '19', 'long face'),
':ohh:' => array('ohh.gif', '19', '19', 'ohh'),
':grrr:' => array('grrr.gif', '19', '19', 'grrr'),
':gulp:' => array('gulp.gif', '19', '19', 'gulp'),
'8-/' => array('ohoh.gif', '19', '19', 'oh oh'),
':down:' => array('downer.gif', '19', '19', 'downer'),
':red:' => array('embarrassed.gif', '19', '19', 'red face'),
':sick:' => array('sick.gif', '19', '19', 'sick'),
':shut:' => array('shuteye.gif', '19', '19', 'shut eye'),
':-/' => array('hmm.gif', '19', '19', 'hmmm'),
'>:(' => array('mad.gif', '19', '19', 'mad'),
':mad:' => array('mad.gif', '19', '19', 'mad'),
'>:-(' => array('angry.gif', '19', '19', 'angry'),
':angry:' => array('angry.gif', '19', '19', 'angry'),
':zip:' => array('zip.gif', '19', '19', 'zipper'),
':kiss:' => array('kiss.gif', '19', '19', 'kiss'),
':ahhh:' => array('shock.gif', '19', '19', 'shock'),
':coolsmile:' => array('shade_smile.gif', '19', '19', 'cool smile'),
':coolsmirk:' => array('shade_smirk.gif', '19', '19', 'cool smirk'),
':coolgrin:' => array('shade_grin.gif', '19', '19', 'cool grin'),
':coolhmm:' => array('shade_hmm.gif', '19', '19', 'cool hmm'),
':coolmad:' => array('shade_mad.gif', '19', '19', 'cool mad'),
':coolcheese:' => array('shade_cheese.gif', '19', '19', 'cool cheese'),
':vampire:' => array('vampire.gif', '19', '19', 'vampire'),
':snake:' => array('snake.gif', '19', '19', 'snake'),
':exclaim:' => array('exclaim.gif', '19', '19', 'exclaim'),
':question:' => array('question.gif', '19', '19', 'question')
);
================================================
FILE: application/config/user_agents.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| USER AGENT TYPES
| -------------------------------------------------------------------
| This file contains four arrays of user agent data. It is used by the
| User Agent Class to help identify browser, platform, robot, and
| mobile device data. The array keys are used to identify the device
| and the array values are used to set the actual name of the item.
*/
$platforms = array(
'windows nt 10.0' => 'Windows 10',
'windows nt 6.3' => 'Windows 8.1',
'windows nt 6.2' => 'Windows 8',
'windows nt 6.1' => 'Windows 7',
'windows nt 6.0' => 'Windows Vista',
'windows nt 5.2' => 'Windows 2003',
'windows nt 5.1' => 'Windows XP',
'windows nt 5.0' => 'Windows 2000',
'windows nt 4.0' => 'Windows NT 4.0',
'winnt4.0' => 'Windows NT 4.0',
'winnt 4.0' => 'Windows NT',
'winnt' => 'Windows NT',
'windows 98' => 'Windows 98',
'win98' => 'Windows 98',
'windows 95' => 'Windows 95',
'win95' => 'Windows 95',
'windows phone' => 'Windows Phone',
'windows' => 'Unknown Windows OS',
'android' => 'Android',
'blackberry' => 'BlackBerry',
'iphone' => 'iOS',
'ipad' => 'iOS',
'ipod' => 'iOS',
'os x' => 'Mac OS X',
'ppc mac' => 'Power PC Mac',
'freebsd' => 'FreeBSD',
'ppc' => 'Macintosh',
'linux' => 'Linux',
'debian' => 'Debian',
'sunos' => 'Sun Solaris',
'beos' => 'BeOS',
'apachebench' => 'ApacheBench',
'aix' => 'AIX',
'irix' => 'Irix',
'osf' => 'DEC OSF',
'hp-ux' => 'HP-UX',
'netbsd' => 'NetBSD',
'bsdi' => 'BSDi',
'openbsd' => 'OpenBSD',
'gnu' => 'GNU/Linux',
'unix' => 'Unknown Unix OS',
'symbian' => 'Symbian OS'
);
// The order of this array should NOT be changed. Many browsers return
// multiple browser types so we want to identify the sub-type first.
$browsers = array(
'OPR' => 'Opera',
'Flock' => 'Flock',
'Edge' => 'Spartan',
'Chrome' => 'Chrome',
// Opera 10+ always reports Opera/9.80 and appends Version/<real version> to the user agent string
'Opera.*?Version' => 'Opera',
'Opera' => 'Opera',
'MSIE' => 'Internet Explorer',
'Internet Explorer' => 'Internet Explorer',
'Trident.* rv' => 'Internet Explorer',
'Shiira' => 'Shiira',
'Firefox' => 'Firefox',
'Chimera' => 'Chimera',
'Phoenix' => 'Phoenix',
'Firebird' => 'Firebird',
'Camino' => 'Camino',
'Netscape' => 'Netscape',
'OmniWeb' => 'OmniWeb',
'Safari' => 'Safari',
'Mozilla' => 'Mozilla',
'Konqueror' => 'Konqueror',
'icab' => 'iCab',
'Lynx' => 'Lynx',
'Links' => 'Links',
'hotjava' => 'HotJava',
'amaya' => 'Amaya',
'IBrowse' => 'IBrowse',
'Maxthon' => 'Maxthon',
'Ubuntu' => 'Ubuntu Web Browser'
);
$mobiles = array(
// legacy array, old values commented out
'mobileexplorer' => 'Mobile Explorer',
// 'openwave' => 'Open Wave',
// 'opera mini' => 'Opera Mini',
// 'operamini' => 'Opera Mini',
// 'elaine' => 'Palm',
'palmsource' => 'Palm',
// 'digital paths' => 'Palm',
// 'avantgo' => 'Avantgo',
// 'xiino' => 'Xiino',
'palmscape' => 'Palmscape',
// 'nokia' => 'Nokia',
// 'ericsson' => 'Ericsson',
// 'blackberry' => 'BlackBerry',
// 'motorola' => 'Motorola'
// Phones and Manufacturers
'motorola' => 'Motorola',
'nokia' => 'Nokia',
'palm' => 'Palm',
'iphone' => 'Apple iPhone',
'ipad' => 'iPad',
'ipod' => 'Apple iPod Touch',
'sony' => 'Sony Ericsson',
'ericsson' => 'Sony Ericsson',
'blackberry' => 'BlackBerry',
'cocoon' => 'O2 Cocoon',
'blazer' => 'Treo',
'lg' => 'LG',
'amoi' => 'Amoi',
'xda' => 'XDA',
'mda' => 'MDA',
'vario' => 'Vario',
'htc' => 'HTC',
'samsung' => 'Samsung',
'sharp' => 'Sharp',
'sie-' => 'Siemens',
'alcatel' => 'Alcatel',
'benq' => 'BenQ',
'ipaq' => 'HP iPaq',
'mot-' => 'Motorola',
'playstation portable' => 'PlayStation Portable',
'playstation 3' => 'PlayStation 3',
'playstation vita' => 'PlayStation Vita',
'hiptop' => 'Danger Hiptop',
'nec-' => 'NEC',
'panasonic' => 'Panasonic',
'philips' => 'Philips',
'sagem' => 'Sagem',
'sanyo' => 'Sanyo',
'spv' => 'SPV',
'zte' => 'ZTE',
'sendo' => 'Sendo',
'nintendo dsi' => 'Nintendo DSi',
'nintendo ds' => 'Nintendo DS',
'nintendo 3ds' => 'Nintendo 3DS',
'wii' => 'Nintendo Wii',
'open web' => 'Open Web',
'openweb' => 'OpenWeb',
// Operating Systems
'android' => 'Android',
'symbian' => 'Symbian',
'SymbianOS' => 'SymbianOS',
'elaine' => 'Palm',
'series60' => 'Symbian S60',
'windows ce' => 'Windows CE',
// Browsers
'obigo' => 'Obigo',
'netfront' => 'Netfront Browser',
'openwave' => 'Openwave Browser',
'mobilexplorer' => 'Mobile Explorer',
'operamini' => 'Opera Mini',
'opera mini' => 'Opera Mini',
'opera mobi' => 'Opera Mobile',
'fennec' => 'Firefox Mobile',
// Other
'digital paths' => 'Digital Paths',
'avantgo' => 'AvantGo',
'xiino' => 'Xiino',
'novarra' => 'Novarra Transcoder',
'vodafone' => 'Vodafone',
'docomo' => 'NTT DoCoMo',
'o2' => 'O2',
// Fallback
'mobile' => 'Generic Mobile',
'wireless' => 'Generic Mobile',
'j2me' => 'Generic Mobile',
'midp' => 'Generic Mobile',
'cldc' => 'Generic Mobile',
'up.link' => 'Generic Mobile',
'up.browser' => 'Generic Mobile',
'smartphone' => 'Generic Mobile',
'cellphone' => 'Generic Mobile'
);
// There are hundreds of bots but these are the most common.
$robots = array(
'googlebot' => 'Googlebot',
'msnbot' => 'MSNBot',
'baiduspider' => 'Baiduspider',
'bingbot' => 'Bing',
'slurp' => 'Inktomi Slurp',
'yahoo' => 'Yahoo',
'ask jeeves' => 'Ask Jeeves',
'fastcrawler' => 'FastCrawler',
'infoseek' => 'InfoSeek Robot 1.0',
'lycos' => 'Lycos',
'yandex' => 'YandexBot',
'mediapartners-google' => 'MediaPartners Google',
'CRAZYWEBCRAWLER' => 'Crazy Webcrawler',
'adsbot-google' => 'AdsBot Google',
'feedfetcher-google' => 'Feedfetcher Google',
'curious george' => 'Curious George',
'ia_archiver' => 'Alexa Crawler',
'MJ12bot' => 'Majestic-12',
'Uptimebot' => 'Uptimebot'
);
================================================
FILE: application/controllers/Home.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends MY_Controller
{
private $blogLimit = 5;
public function __construct()
{
parent::__construct();
}
public function index()
{
$data = array();
$head = array();
$head['title'] = lang('title_home');
$head['description'] = lang('description_home');
$this->render('home/index', $head, $data);
}
public function logout()
{
unset($_SESSION['user_login']);
unset($_SESSION['selected_company']);
redirect(lang_url());
}
/*
* Called from HtmlToPdf library to load footer for invoices
* wkhtmltopdf cant call files for footer/header :(
*/
public function getInvoiceFooter()
{
if (!isset($_GET['num'])) {
log_message('error', 'Call footer for wkhtmltopdf without GET[num] variable - ' . print_r($_SESSION['user_login'], true));
exit;
}
$data = array();
$data['num'] = $_GET['num'];
$data['type'] = $_GET['type'];
$data['pageTranslate'] = urldecode($_GET['pageTranslate']);
$this->load->view('invoices_parts/footer.php', $data);
}
public function publicAcceptInvoice($uniqid)
{
$data = array();
$arr = explode('u', $uniqid);
if (!isset($arr[0]) || !is_numeric($arr[0])) {
show_404();
}
$userId = $arr[0];
$row = $this->PublicModel->getInvoiceForAccept($userId, $uniqid);
if (empty($row)) {
log_message('error', 'Try to accept not available invoice with uniqid - ' . $uniqid);
show_404();
}
$invoice = modules::run('users/invoices/invoiceview/getInvoiceByNumber', $row['inv_type'], $row['inv_number']);
if ($invoice == null) {
show_404();
}
if (isset($_POST['action']) && ($_POST['action'] == 'accepted' || $_POST['action'] == 'refused')) {
modules::run('users/invoices/invoices/changeInvoiceStatus', $invoice['id'], $_POST['action']);
if ($_POST['action'] == 'accepted') {
$action = 'accepted';
$info = '';
} else {
$action = 'refused';
$info = $_POST['refuse_reason'];
}
$this->PublicModel->setInvoiceLog($invoice['id'], $action, $info);
redirect(base_url('accept/invoice/' . $invoice['uniqid']));
}
$template = $this->PublicModel->getOneValueStore('opt_invTemplate', $userId);
$templates = $this->config->item('templates');
if (!in_array($template, $templates)) {
$template = $templates[0];
}
$templatesDir = 'application/modules/users/views/invoices/templates/';
$templateFile = $templatesDir . $template . '.php';
if (!is_file($templateFile)) {
show_error(lang('no_template_file'));
}
$data['templateFile'] = $templateFile;
$data['invoice'] = $invoice;
$data['origin'] = 'original';
$this->load->view('parts/invaccept/header');
$this->load->view('invoices_parts/invoice_accept', $data);
$this->load->view('parts/invaccept/footer');
}
}
================================================
FILE: application/controllers/Loader.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/* Set internal character encoding to UTF-8 */
mb_internal_encoding("UTF-8");
class Loader extends MY_Controller
{
public function __construct()
{
parent::__construct();
$this->load->helper('file');
}
/*
* Load language javascript file
*/
public function jsFile($file = null)
{
$contents = file_get_contents(APPPATH . 'language' . DIRECTORY_SEPARATOR . MY_LANGUAGE_FULL_NAME . DIRECTORY_SEPARATOR . 'js' . DIRECTORY_SEPARATOR . $file);
if (!$contents) {
header('HTTP/1.1 404 Not Found');
return;
}
echo $contents;
}
}
================================================
FILE: application/controllers/Registration.php
================================================
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Registration extends MY_Controller
{
public function index()
{
$data = array();
$head = array();
if (isset($_POST['email'])) {
if (!filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) {
$this->session->set_flashdata('resultRegister', 'Invalid email');
redirect(lang_url('registration'));
}
$takenEmail = $this->PublicModel->checkUserFreeEmail($_POST['email']);
if($takenEmail !== true) {
$this->session->set_flashdata('resultRegister', $takenEmail);
redirect(lang_url('registration'));
}
$result = $this->PublicModel->registerUser($_POST);
if ($result === true) {
// $returned_email = $this->registerUser();
// $this->setUserLogin($returned_email, 1);
redirect(lang_url('login'));
} else {
$this->session->set_flashdata('resultRegister', $result);
redirect(lang_url('registration'));
}
}
$head['title'] = lang('title_register');
$head['description'] = lang('description_register');
$this->render('registration/index', $head, $data);
}
public function login()
{
$data = array();
$head = array();
if (isset($_POST['email'])) {
$this->loginCheck();
}
$head['title'] = lang('title_login');
$head['description'] = lang('description_login');
$this->render('registration/login', $head, $data);
}
private function loginCheck()
{
$result = $this->PublicModel->loginCheck($_POST);
if ($result !== false) {
if ($result == 3) {
$_SESSION['savedPost'] = $_POST;
redirect(lang_url('choose-type-of-login'));
} else {
$this->setUserLogin($_POST['email'], $result);
}
} else {
$this->session->set_flashdata('email', $_POST['email']);
$this->session->set_flashdata('loginErrors', lang('usr_or_pass_invalid'));
redirect(lang_url('login'));
}
}
}
================================================
FILE: application/controllers/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/core/ADMIN_Controller.php
================================================
<?php
/*
* @Author: Kiril Kirkov
* Gitgub: https://github.com/kirilkirkov
*/
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
class ADMIN_Controller extends HEAD_Controller
{
protected $history;
public function __construct()
{
parent::__construct();
$this->load->helper(array('pagination', 'uploader', 'except_letters'));
$this->load->model(array('GeneralAdminModel'));
$this->login_check();
$this->history = $this->config->item('admin_history');
}
protected function render($view, $head, $data = null)
{
$this->load->view('parts/general/header', $head);
$this->load->view($view, $data);
$this->load->view('parts/general/footer');
}
/*
* If we dont have logged session and try to open
* different page from just /admin/ (login)..
*/
private function login_check()
{
if (!$this->session->userdata('logged_in') && $this->uri->segment(2) != null) {
redirect('admin');
}
$this->username = $this->session->userdata('logged_in');
$this->user_id = @$_SESSION['logged_user_info']['id'];
}
protected function saveHistory($activity)
{
if ($this->history === true) {
$this->GeneralAdminModel->setHistory($activity, $this->username, $this->user_id);
}
}
}
================================================
FILE: application/core/HEAD_Controller.php
================================================
<?php
class HEAD_Controller extends MX_Controller
{
public function __construct()
{
parent::__construct();
$this->output->enable_profiler(ENVIRONMENT == 'development');
}
}
================================================
FILE: application/core/MY_Controller.php
================================================
<?php
class MY_Controller extends HEAD_Controller
{
public function __construct()
{
parent::__construct();
}
public function render($view, $head, $data = null)
{
$this->load->view('parts/header', $head);
$this->load->view($view, $data);
$this->load->view('parts/footer');
}
public function setUserLogin($email, $type)
{
$userInfo = $this->PublicModel->getUserInfoFromEmail($email, $type);
if (!empty($userInfo)) {
if ($type == 2) {
$email = $userInfo['employee']['email'];
} else {
$email = $userInfo['user']['email'];
}
$_SESSION['user_login'] = array(
'email' => $email,
'type' => $type
);
redirect(lang_url('user'));
} else {
log_message('error', ':Error: - Cant set user login for email: ' . $email);
redirect(base_url());
}
}
}
================================================
FILE: application/core/MY_Loader.php
================================================
<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
/* load the MX_Loader class */
require APPPATH."third_party/MX/Loader.php";
class MY_Loader extends MX_Loader {}
================================================
FILE: application/core/MY_Router.php
================================================
<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
/* load the MX_Router class */
require APPPATH."third_party/MX/Router.php";
class MY_Router extends MX_Router {}
================================================
FILE: application/core/USER_Controller.php
================================================
<?php
class USER_Controller extends HEAD_Controller
{
private $firms;
protected $firmInfo;
public $userInfo;
public $planUnits;
public function __construct()
{
parent::__construct();
$this->loginCheck();
$this->load->helper(array(
'uploader',
'pagination'
));
$this->load->library(array(
'MailSend',
'Plans'
));
$this->planUnits = $this->plans->getMyCurrentPlanUnits();
$this->firmCkecker();
}
public function render($view, $head, $data = null)
{
$vars = array();
$vars = $this->loadValueStores();
$vars['myFirms'] = $this->firms;
$vars['canUseFirms'] = $this->canUseFirms;
$vars['firmInfo'] = $this->firmInfo;
$this->load->vars($vars);
$head['planUnits'] = $this->planUnits;
$this->load->view('parts/header', $head);
$this->load->view($view, $data);
$this->load->view('parts/footer');
}
/*
* If session type == 2 is employee
* and return info for him
*/
private function loginCheck()
{
if (!isset($_SESSION['user_login'])) {
redirect(lang_url('login'));
} else {
$userInfo = $this->PublicModel->getUserInfoFromEmail($_SESSION['user_login']['email'], $_SESSION['user_login']['type']);
if (!empty($userInfo) && $userInfo['user'] != null) {
$this->userInfo = $userInfo;
/*
* DEFINE USER AND EMPLOYEE CONSTANTS
*/
define('USER_ID', $userInfo['user']['id']);
if (isset($userInfo['employee'])) {
define('EMPLOYEE_ID', $userInfo['employee']['id']);
}
$this->loadPermissions();
} else {
log_message('error', ':Error: - User try to login, he have session but cant get user info from email: ' . $_SESSION['user_login']);
redirect(base_url());
}
}
}
private function loadPermissions()
{
$permissions = null;
if (defined('EMPLOYEE_ID')) {
$this->load->model('SettingsModel');
$permissions = $this->SettingsModel->getPermissions();
}
$this->load->library('permissions', $permissions);
}
/*
* Check user or employee selected firm
* Check rights to access selected firm
*/
private function firmCkecker()
{
$this->load->model('HomeModel');
$defaultFirmForUser = $this->HomeModel->getDefaultCompany();
$firmsForUser = $this->HomeModel->getFirms();
if (isset($_SESSION['selected_company'])) {
$isValidFirmForUser = $this->HomeModel->checkCompanyIsValidForUser($_SESSION['selected_company']['id']);
if (!empty($isValidFirmForUser)) {
$selectedFirmId = $_SESSION['selected_company']['id'];
$this->firmInfo = $isValidFirmForUser;
} else {
$selectedFirmId = $defaultFirmForUser['id'];
$this->firmInfo = $defaultFirmForUser;
unset($_SESSION['selected_company']);
}
} else {
$selectedFirmId = $defaultFirmForUser['id'];
$this->firmInfo = $defaultFirmForUser;
}
if (!defined('EMPLOYEE_ID')) {
$firmId = $selectedFirmId;
$canUseFirms = array();
foreach ($firmsForUser as $frm) {
array_push($canUseFirms, $frm['id']);
}
} else {
$employeeFirms = $canUseFirms = $this->HomeModel->getEmployeeAvailableFirms();
if (!empty($employeeFirms)) {
if (in_array($selectedFirmId, $employeeFirms)) {
$firmId = $selectedFirmId;
} else {
$firmId = $employeeFirms[0];
}
} else {
show_error(lang('you_cant_view_any_firms'));
}
}
define('SELECTED_COMPANY_ID', $firmId);
$this->firms = $firmsForUser;
$this->canUseFirms = $canUseFirms;
if (empty($firmsForUser) && (uri_string() != 'user' && uri_string() != $this->language->getUrlAbbrevation() . '/user')) {
redirect(lang_url('user'));
}
$this->checkExceededLimitOfCompanies();
}
/*
* if we have added companies
* check how many companies we can use
* for selected plan
*/
private function checkExceededLimitOfCompanies()
{
if (!empty($this->firms)) {
$planUnits = $this->planUnits;
if (count($this->firms) > $planUnits['num_firms']) {
// pages that are allowed to view
if (uri_string() != 'user/managefirms' &&
uri_string() != $this->language->getUrlAbbrevation() . '/user/managefirms' &&
$this->uri->segment(2) != 'plans' &&
$this->uri->segment(2) != 'plan' &&
$this->uri->segment(2) != 'myplan') {
redirect(lang_url('user/managefirms'));
}
}
}
}
public function saveHistory()
{
//INSERT DELAYED
}
protected function validateCompanyDetails($checkBulstat = true)
{
$errors = array();
if (mb_strlen(trim($_POST['firm_name'])) == 0) {
$errors[] = lang('empty_firm_name');
}
if ($checkBulstat === true) {
if (mb_strlen(trim($_POST['firm_bulstat'])) == 0) {
$errors[] = lang('empty_firm_bulstat');
} else {
$result = $this->checkBulstatIsFree();
if ($result == false) {
$errors[] = lang('bulstat_is_taken');
}
}
}
if (mb_strlen(trim($_POST['firm_reg_address'])) == 0) {
$errors[] = lang('empty_firm_reg_address');
}
if (mb_strlen(trim($_POST['firm_city'])) == 0) {
$errors[] = lang('empty_firm_city');
}
if (mb_strlen(trim($_POST['firm_mol'])) == 0) {
$errors[] = lang('empty_firm_mol');
}
if (empty($errors)) {
return true;
}
$this->session->set_flashdata('firm_name', $_POST['firm_name']);
$this->session->set_flashdata('firm_bulstat', @$_POST['firm_bulstat']);
$this->session->set_flashdata('firm_reg_address', $_POST['firm_reg_address']);
$this->session->set_flashdata('firm_city', $_POST['firm_city']);
$this->session->set_flashdata('firm_mol', $_POST['firm_mol']);
return $errors;
}
protected function addCompanyFolders($companyId)
{
if (!mkdir('./attachments/' . COMPANIES_IMAGES_DIR . '/' . $companyId, 0777)) {
log_message('error', 'Error create company folder: ./attachments/' . COMPANIES_IMAGES_DIR . '/' . $companyId);
}
}
private function checkBulstatIsFree()
{
$result = $this->HomeModel->checkBulstatIsFree($_POST['firm_bulstat']);
return $result;
}
private function loadValueStores()
{
$result = $this->PublicModel->getValueStores();
if (empty($result)) {
show_error(lang('error_load_options'));
}
return $result;
}
}
================================================
FILE: application/core/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/helpers/except_letters_helper.php
================================================
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
function except_letters($str)
{
return mb_ereg_replace('[^a-zA-Zа-яА-Я0-9\s]', '', $str);
}
================================================
FILE: application/helpers/full_document_number_helper.php
================================================
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
function full_document_number($inv, $length = 10, $padding = '0')
{
return str_pad(intval($inv), intval($length), $padding, STR_PAD_LEFT);
}
================================================
FILE: application/helpers/get_client_ip_address_helper.php
================================================
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
function get_client_ip_address()
{
$ipaddress = '';
if (isset($_SERVER['HTTP_CLIENT_IP']))
$ipaddress = $_SERVER['HTTP_CLIENT_IP'];
else if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
else if (isset($_SERVER['HTTP_X_FORWARDED']))
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
else if (isset($_SERVER['HTTP_FORWARDED_FOR']))
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
else if (isset($_SERVER['HTTP_FORWARDED']))
$ipaddress = $_SERVER['HTTP_FORWARDED'];
else if (isset($_SERVER['REMOTE_ADDR']))
$ipaddress = $_SERVER['REMOTE_ADDR'];
else
$ipaddress = 'UNKNOWN';
return $ipaddress;
}
================================================
FILE: application/helpers/geterror_helper.php
================================================
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/*
* Return error message
*/
function geterror($input)
{
if (is_array($input)) {
$output = implode('<br>', $input);
} else {
$output = $input;
}
?>
<div class="alert-errors">
<?= $output ?>
<a href="javascript:void(0);" class="close-alert">
<i class="fa fa-times" aria-hidden="true"></i>
</a>
</div>
<?php
}
================================================
FILE: application/helpers/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/helpers/lang_url_helper.php
================================================
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/*
* Constant LANG_URL is comming from class Language
* This function returns the full url with selected language
* Can be used for links.. like navigation or others..
*/
function lang_url($goto = null)
{
if ($goto != null) {
$goto = '/' . ltrim($goto, '/');
}
return trim(LANG_URL) . trim($goto);
}
================================================
FILE: application/helpers/pagination_helper.php
================================================
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
/*
* Bootstrap Pagination Helper
*/
function pagination($url, $rowscount, $per_page, $segment = 2)
{
$ci = & get_instance();
$ci->load->library('pagination');
$config = array();
$config["base_url"] = lang_url($url);
$config["total_rows"] = $rowscount;
$config["per_page"] = $per_page;
$config["uri_segment"] = $segment;
$config['full_tag_open'] = '<nav><ul class="pagination">';
$config['full_tag_close'] = '</ul></nav>';
$config['num_tag_open'] = '<li>';
$config['num_tag_close'] = '</li>';
$config['cur_tag_open'] = '<li class="active"><a>';
$config['cur_tag_close'] = '</a></li>';
$config['next_tag_open'] = '<li>';
$config['next_tag_close'] = '</li>';
$config['prev_tag_open'] = '<li>';
$config['prev_tag_close'] = '</li>';
$config['first_link'] = lang('first');
$config['first_tag_open'] = '<li>';
$config['first_tag_close'] = '</li>';
$config['last_link'] = lang('last');
$config['last_tag_open'] = '<li>';
$config['last_tag_close'] = '</li>';
$config['next_link'] = lang('next');
$config['prev_link'] = lang('previous');
$config['reuse_query_string'] = TRUE;
$ci->pagination->initialize($config);
return $ci->pagination->create_links();
}
================================================
FILE: application/helpers/thisyeardates_helper.php
================================================
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
/*
* return first day and last day from this year
*/
function thisyeardates()
{
$array = array();
$date = new DateTime('now');
$date->modify('first day of January ' . date('Y'));
$array['from'] = $date->format('d.m.Y');
$date = new DateTime('now');
$date->modify('last day of December ' . date('Y'));
$array['to'] = $date->format('d.m.Y');
return $array;
}
================================================
FILE: application/helpers/uploader_helper.php
================================================
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
function uploader($path, $inputName = false)
{
if ($inputName === false) {
$iName = 'input_file';
} else {
$iName = $inputName;
}
$ci = & get_instance();
if ($_FILES[$iName]['size'] == 0) {
return false;
}
$config = array();
$config['upload_path'] = $path;
$config['allowed_types'] = $ci->config->item('allowed_img_types');
$ci->load->library('upload', $config);
$ci->upload->initialize($config);
if (!$ci->upload->do_upload($iName)) {
log_message('error', 'Image Upload Error: ' . $ci->upload->display_errors());
return array('result' => false, 'value' => $ci->upload->display_errors());
}
$img = $ci->upload->data();
if ($img['file_name'] != null) {
return array('result' => true, 'value' => $img['file_name']);
}
return false;
}
================================================
FILE: application/hooks/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/language/bulgarian/db_lang.php
================================================
================================================
FILE: application/language/bulgarian/email_lang.php
================================================
================================================
FILE: application/language/bulgarian/form_validation_lang.php
================================================
<?php
================================================
FILE: application/language/bulgarian/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/language/bulgarian/js/all.js
================================================
var lang = {
invalid_email: 'Невалиден имейл адрес!',
invalid_pass: 'Въведете парола!',
invalid_pass2: 'Повтори паролата!',
passwords_dont_match: 'Паролите не съвшадат!',
rules_not_checked: 'Потвърди правилата!',
proforma: 'Проформа',
invoice: 'Данъчна',
debit_note: 'Дебитно известие',
credit_note: 'Кредитно известие',
errorCreateDocument: 'Намерихме следните празни полета',
currencyItemNotSame: 'Въведената цена за този артикул е с различна валута',
errorCreateClient: 'Има празни полета на клиента!',
errorCreateItem: 'Има празни полета на артикул!',
errorCreateEmployee: 'Невалидни полета!',
noCheckedCheckboxes: 'Не е избрано нищо!',
confirmDelete: 'Сигурен ли сте, че искате да изтриете?',
errorChangeInvStatusAjax: 'Проблем със смяната на статуса на фактурата. Свържете се с нас!',
confirmCancel: 'Сигурен ли сте, че искате да анулирате?',
confirmRemoveCancel: 'Сигурен ли сте, че искате да премахнете статус анулирана?',
show_main_menu: 'Покажи менюто',
hide_main_menu: 'Скрий менюто'
};
================================================
FILE: application/language/bulgarian/pagination_lang.php
================================================
<?php
$lang['first'] = 'Първа';
$lang['last'] = 'Последна';
$lang['next'] = 'Следваща';
$lang['previous'] = 'Предишна';
$lang['previous'] = 'Предишна';
$lang['pagination_last_link'] = 'Последна';
$lang['pagination_first_link'] = 'Първа';
================================================
FILE: application/language/bulgarian/profiler_lang.php
================================================
<?php ?>
================================================
FILE: application/language/bulgarian/public_lang.php
================================================
<?php
$lang['btn_home'] = 'Начало';
$lang['btn_register'] = 'Регистрирай се безплатно';
$lang['btn_plans'] = 'Планове';
$lang['btn_features'] = 'Функционалности';
$lang['btn_help'] = 'Помощ';
$lang['btn_contacts'] = 'Контакти';
$lang['btn_login'] = 'Вход';
$lang['header_text'] = 'Лесно издаване и изпращане на фактури';
$lang['login_email'] = 'Имейл';
$lang['login_pass'] = 'Парола';
$lang['btn_logme'] = 'Вход';
$lang['home_slide_tx1'] = 'Създай';
$lang['home_slide_free'] = 'безплатно';
$lang['check_our_options'] = 'Виж какво предлагаме!';
$lang['home_slide_register_now'] = 'Регистрирай се!';
$lang['electronic_invoices'] = 'електронни   фактури';
$lang['register_now'] = 'Регистрирай се!';
$lang['text_register_after_carousel'] = 'Регистрирай';
$lang['text_free_after_carousel'] = 'безплатен';
$lang['text_account_after_carousel'] = 'акаунт и почни да издаваш фактури!';
$lang['text_bottom_after_carousel'] = 'Регистрацията е само с попълване на 3 полета и отнема по-малко от 1 минута!';
$lang['what_is'] = 'Какво е';
$lang['and_how_it_works'] = 'и как работи?';
$lang['forgotten_pass'] = 'Забравена парола?';
$lang['one_acc'] = '1 акаунт - няколко фирми';
$lang['send_by_email'] = 'Изпращане по имейл';
$lang['invent_store'] = 'Складова програма';
$lang['down_pdf'] = 'Свали в PDF';
$lang['24_support'] = '27/7 Поддръжка';
$lang['inv_templates'] = 'Дизайни на фактури';
$lang['become_member_in_3'] = 'Изпращане на фактури!';
$lang['payment_methods'] = 'Начини на плащане';
$lang['support_footer'] = 'Поддръжка';
$lang['support_questions'] = 'Често задавани въпроси';
$lang['support_menu'] = 'Създай фактура';
$lang['comming_features'] = 'Функционалности които скоро ще добавим';
$lang['registration_modal'] = 'Регистрация';
$lang['reg_email'] = 'Вашият имейл адрес';
$lang['reg_pass'] = 'Вашата парола';
$lang['reg_pass_repeat'] = 'Повтори паролата';
$lang['reg_p_email'] = 'yourname@domain.com';
$lang['reg_p_secret'] = 'Тайна парола';
$lang['reg_p_secret2'] = 'Повтори тайната парола';
$lang['close'] = 'Затвори';
$lang['register_me'] = 'Регистрирай ме';
$lang['confirm_rules'] = 'Потвърди правилата';
$lang['read_rules'] = 'Правила и условия';
$lang['write_us'] = 'Изпрати ни съобщение';
$lang['contacts'] = 'Контакти';
$lang['or_send_to'] = 'или изпрати до';
$lang['your_name'] = 'Вашето име';
$lang['your_email'] = 'Вашият имейл';
$lang['your_subject'] = 'Тема на съобщението';
$lang['send'] = 'Изпрати';
$lang['we_received'] = 'Благодарим ви! Получихме вашето съобщение и ще ви отговорим скоро!';
$lang['find_by_keyword'] = 'Търси по дума:';
$lang['term'] = 'Термин';
$lang['find_by_tags'] = 'Тагове:';
$lang['published'] = 'публикувана';
$lang['features'] = 'Функционалности';
$lang['registration'] = 'Регистрация';
$lang['register_account'] = 'Регистрирай акаунт';
$lang['i_have_account'] = 'Вече имам регистриран акаунт';
$lang['login'] = 'Вход';
$lang['log_to_your_acc'] = 'Вход в акаунта';
$lang['invalid_email'] = 'Невалиден имейл адрес!';
$lang['empty_password'] = 'Не е въведена парола!';
$lang['empty_password_repeat'] = 'Моля повторете паролата!';
$lang['passwords_dont_match'] = 'Паролите не съвпадат!';
$lang['rules_not_checked'] = 'Не сте се съгласили с правилата!';
$lang['blog_preview'] = 'Преглед';
$lang['recover_your_pass'] = 'Възстановяване на парола';
$lang['send_pass_link'] = 'Изпрати ми нова парола';
$lang['help_footer'] = 'Прочетете често задаваните въпроси, ако имате допълнителна нужда пишете ни!';
$lang['help'] = 'ПОМОЩ';
$lang['specifications'] = 'Спецификаций';
$lang['plans'] = 'Планове';
$lang['store'] = 'Склад';
$lang['saved_clients'] = 'Клиенти';
$lang['saved_articles'] = 'Артикули';
$lang['create_protocols'] = 'Създаване на протоколи';
$lang['periodic_invoices'] = 'Периодични фактури';
$lang['registered_by_user'] = 'Този имейл адрес е регистриран от друг потребител.';
$lang['usr_or_pass_invalid'] = 'Имейла или паролата е грешен!';
$lang['database_error'] = 'Има някакъв проблем! Моля свържете се с нас!';
$lang['choose_type_of_login'] = 'Избери тип на вход за потребител';
$lang['there_are_two_types'] = 'Има два типа за вход на този имейл и парола!';
$lang['type_employee'] = 'Вход като служител';
$lang['type_user'] = 'Вход като администратор';
$lang['example_of_xml_import_file'] = 'Пример на XML файл за импорт';
$lang['imports_feature'] = 'Импортиране на фактури';
$lang['universal_xml'] = 'Универсален XML импорт';
$lang['exports_feature'] = 'Експортиране на фактури';
$lang['export_in_xml'] = 'Експорт в XML';
$lang['xml_export_info'] = 'Също поддъжваме експорт в XML (същото е като Универсален XML файл за импорт) ,но с включени артикули';
$lang['export_in_excel'] = 'Експорт в EXCEL';
$lang['excel_export_info'] = 'Също поддържаме експорт в XLS с информация за фактура и клиент. Експортираните полета са: Invoice Number | Invoice Type | Client Name | Client Address | Client Bulstat/PIN | Client Vat Number | Client Accountable person | Date of issue | Date Tax Event | Invoice Amount | Discount | Tax Base | Vat Sum | Total | Currency | Payment Type | Payment status | Compiled | Sended | Received | Date of receive | Return reason | Date created | Vat Reason | Remarks | Maturity date';
$lang['create_and_send_inv_with'] = 'Създавай и изпращай фактури с';
$lang['p_reason'] = 'Причина';
$lang['log_me_public_home'] = 'Вход в системата ми';
$lang['use_it_online'] = 'Използвай онлайн';
$lang['there_is'] ='Няма';
$lang['no_need'] = 'нужда';
$lang['to_down_noth'] = 'да сваляте нищо. Можете да я използвате изцяло';
$lang['high_protect_serve'] = 'онлайн и да пазите информацията си на силно защитените ни сървъри.';
$lang['have_support'] = 'Имайте постоянен';
$lang['every_day_and_hour']='съпорт';
$lang['make_it_easy'] ='Издавай всеки месец до 5 фактури безплатно!';
$lang['reg_for_free_use_for'] = 'Издавай и изпращай фактури първият месец безплатно, след това само за 100лв на година. Регистрацията отнема 1 минута';
$lang['issue_to_5'] = 'Издавай всеки месец до 5 фактури безплатно!';
$lang['security'] = 'Защита и криптиране';
================================================
FILE: application/language/bulgarian/titles_lang.php
================================================
<?php
$lang['title_home'] = 'Електронни фактури, Изпращане по електронна поща';
$lang['description_home'] = 'Стартирайте издаването и изпращането на електронни фактури';
$lang['title_login'] = 'Влезте и започнете да издавате фактури';
$lang['description_login'] = 'Въведете имейла и паролата си и влезте в програмата си за фактуриране';
$lang['title_register'] = 'Регистрация';
$lang['description_register'] = 'Регистрирайте се просто като въведете имейл и парола';
$lang['title_forgotten'] = 'Възстановете паролата си';
$lang['description_forgotten'] = 'Променете забравената си парола';
================================================
FILE: application/language/bulgarian/upload_lang.php
================================================
<?php
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
$lang['upload_file_partial'] = "The file was only partially uploaded.";
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceedes the maximum height or width.";
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
================================================
FILE: application/language/bulgarian/users_lang.php
================================================
<?php
$lang['change_firm'] = 'Смени фирмата';
$lang['manage_firms'] = 'Оправление на фирми';
$lang['search_header_u'] = 'Търси';
$lang['menu_create_invoice'] = 'Създай фактура';
$lang['menu_list_invoices'] = 'Мойте фактури';
$lang['dont_have_firms'] = ' Нямате създадени фирми';
$lang['no_firm_data'] = 'Въведете данни на фирмата ви';
$lang['firm_name'] = 'Име на фирмата:';
$lang['firm_bulstat'] = 'Булстат:';
$lang['firm_reg_address'] = 'Адрес на регистрация:';
$lang['firm_city'] = 'Град:';
$lang['firm_mol'] = 'Мол:';
$lang['save_firm_details'] = 'Запиши';
$lang['empty_firm_name'] = 'Не е въведено име на фирмата!';
$lang['empty_firm_bulstat'] = 'Не е въведен булстат!';
$lang['empty_firm_reg_address'] = 'Не е въведен адрес на регистрация!';
$lang['empty_firm_city'] = 'не е въведен град!';
$lang['empty_firm_mol'] = 'Не е въведен мол!';
$lang['bulstat_is_taken'] = 'Този булстат вече е регистриран!';
$lang['menu_home'] = 'Начало';
$lang['selected_home'] = 'Начало';
$lang['selected_manage_firms'] = 'Управление на фирми';
$lang['add_new_company'] = 'Добави фирма';
$lang['list_firms'] = 'Списък на мойте фирми';
$lang['firm_default'] = 'По подразбиране';
$lang['make_firm_default'] = 'Направи по подразбиране';
$lang['delete_firm_confirm'] = 'Сигурни ли сте, че искате да изтриете тази фирма? Това ще изтрие всичко свързано с нея!';
$lang['default_firm_confirm'] = 'Сигурни ли сте, че искате тази фирма да е по подразбиране?';
$lang['menu_list_clients'] = 'Клиенти';
$lang['company_deleted'] = 'Фирмата е изтрита!';
$lang['company_added'] = 'Фирмата е добавена!';
$lang['firms_translations'] = 'Преводи';
$lang['trans_name'] = 'Име на превод(за вътрешно ползване):';
$lang['firm_image'] = 'Лого';
$lang['no_image'] = 'Няма снимка';
$lang['add_new_translation'] = 'Добави нов превод';
$lang['save_changes'] = 'Запиши промените';
$lang['save_translation'] = 'Запиши превода';
$lang['translation_updated'] = 'Превода е обновен успешно!';
$lang['upload_img_error'] = 'Проблем при качване на картинка - ';
$lang['add_translation'] = 'Добави превод';
$lang['new_translation_added'] = 'Новият превод е добавен!';
$lang['translation_is_default'] = 'По подразбиране';
$lang['make_translation_default'] = 'Направи по подразбиране';
$lang['default_translate_confirm'] = 'Сигурни ли сте, че искате да направите този превод по подразбиране?';
$lang['delete_translation'] = 'Изтрий превода';
$lang['translation_deleted'] = 'Превода е изтрит успешно';
$lang['translation_delete_confirm'] = 'Сигурни ли сте, че искате да изтриете този превод?';
$lang['error_delete_translation'] = 'Проблем с изтриването на превода!';
$lang['invoice'] = 'Фактура';
$lang['create_inv_type'] = 'Тип:';
$lang['create_inv_proforma'] = 'Проформа';
$lang['create_inv_debit'] = 'Дебитно известие';
$lang['create_inv_credit'] = 'Кредитно известие';
$lang['create_inv_invoice'] = 'Данъчна';
$lang['or'] = 'или';
$lang['open_invoices'] = 'Отвори фактурите';
$lang['create_inv_save'] = 'Създай фактура';
$lang['create_invoice'] = 'Създай фактура';
$lang['create_inv_client'] = 'Клиент:';
$lang['create_inv_choose'] = 'Избери от списъка';
$lang['create_inv_bulstat'] = 'Булстат:';
$lang['create_inv_mol'] = 'Мол:';
$lang['create_inv_city'] = 'Град:';
$lang['create_inv_address'] = 'Адрес:';
$lang['create_inv_country'] = 'Държава:';
$lang['create_inv_recipient'] = 'Име на получател:';
$lang['create_inv_inv_num'] = 'Фактура';
$lang['create_inv_date_create'] = 'Дата на създаване:';
$lang['create_inv_date_tax'] = 'Дата на данъчно събитие:';
$lang['create_inv_i_maturity_date'] = 'Покажи дата на падеж';
$lang['create_inv_maturity_date'] = 'Дата на падеж:';
$lang['create_inv_cash_acc'] = 'Касова отчетност';
$lang['create_inv_item'] = 'Артикул';
$lang['create_inv_quantity'] = 'Количество';
$lang['create_inv_price'] = 'Цена';
$lang['create_inv_total'] = 'Крайна цена';
$lang['sure_want_to_del_item'] = 'Сигурен ли сте, че искате да изтриете този артикул?';
$lang['add_new_item_to_table'] = 'Добави артикул';
$lang['create_inv_remarks'] = 'Забележки';
$lang['visibile_for_client'] = 'видими за клиента';
$lang['create_inv_payment_type'] = 'Начин на плащане';
$lang['create_inv_invoice_amount'] = 'Сума по фактура';
$lang['create_inv_discount'] = 'Отстъпка';
$lang['create_inv_tax_base'] = 'Данъчна основа';
$lang['create_inv_vat'] = 'ДДС:';
$lang['create_inv_total'] = 'Общо:';
$lang['create_inv_no_vat_mark'] = 'Не начислявай ДДС';
$lang['create_inv_reason_no_vat'] = 'Причина за неначисляване на ДДС:';
$lang['select_curreny'] = 'Избери валута:';
$lang['settings_invoices'] = 'Настройки по фактури';
$lang['menu_list_items'] = 'Артикули';
$lang['default_currency'] = 'Избери валута по подразбиране';
$lang['default_currency_null'] = 'Не е избрана валута по подразбиране';
$lang['clear_def_currency'] = 'Изчисти';
$lang['confirm_del_def_currency'] = 'Сигурен ли сте, че искате да изтриете валутата по подразбиране за тази фирма - ';
$lang['select_def_currency'] = 'Избери валута по подразбиране';
$lang['selected_new_def'] = 'Избрана успешно!';
$lang['not_selected_new_def'] = 'Проблем с избирането! Моля, свържете се с поддръжката!';
$lang['no_currency_selected'] = 'По подразбиране е избрана валута - EUR';
$lang['my_currencies'] = 'Мойте валуте';
$lang['currency_name'] = 'Име';
$lang['currency_value'] = 'Стойност';
$lang['add_new_currency'] = 'Добави нова';
$lang['curr_name_for_int_use'] = 'За вътрешно ползване';
$lang['no_my_currencies_added'] = 'Нямате добавени валути';
$lang['conirm_del_my_currency'] = 'Сигурен ли сте, че искате да изтриете тази валута?';
$lang['create_new_quantity'] = 'Добави нова..';
$lang['add_the_quantity'] = 'Добави тип количество';
$lang['type_quantity_type'] = 'Добави твойта мерна единица тук';
$lang['add_new_quantity_type'] = 'Добави нова мерна единица';
$lang['settings'] = 'Настойки';
$lang['my_quantity_types'] = 'Мойте мерни единици';
$lang['quantity_name'] = 'Име';
$lang['no_my_quantity_types'] = 'Нямате добавени мерни единици';
$lang['add_new_q_type'] = 'Добави нова';
$lang['conirm_del_my_quantity_type'] = 'Сигурен ли сте, че искате да изтриете тази мерна единица?';
$lang['create_inv_save_draft'] = 'Запиши чернова';
$lang['create_new_pay_method'] = 'Добави нов..';
$lang['add_new_payment_method'] = 'Добави нов начин на плащане';
$lang['type_payment_method'] = 'Напиши нов метод за плащане';
$lang['add_the_pay_method'] = 'Добави';
$lang['my_payment_methods'] = 'Начини на плащане';
$lang['conirm_del_my_pay_method'] = 'Сигурен ли сте, че искате да изтриете този начин на плащане?';
$lang['no_my_pay_methods'] = 'Нямате ваши начини на плащане';
$lang['my_no_vat_reasons'] = 'Причини за неначисляване на ДДС';
$lang['vat_reason'] = 'Причина';
$lang['no_my_no_vat_reasons'] = 'Нямате добавени причини за неначисляване на ДДС';
$lang['add_new_vat_reas'] = 'Добави нова причина';
$lang['add_new_p_method'] = 'Добави нова';
$lang['confirm_del_no_vat_reason'] = 'Сигурен ли сте, че искате да изтриете тази причина за неначисляване на ДДС?';
$lang['create_inv_individual'] = 'Клиента е физическо лице';
$lang['create_inv_ident_num'] = 'ЕГН:';
$lang['create_inv_client_vat_registered'] = 'Има регистрация по ДДС';
$lang['create_inv_vat_number'] = 'ДДС Номер:';
$lang['error_load_options'] = 'Проблем с акаунта ви! Моля свържете се с поддръжката!';
$lang['how_do_you_round_values'] = 'Как искате да се закръгляват стойностите във фактурите Ви';
$lang['update_round_totals'] = 'Обнови';
$lang['to_inv_num'] = 'По фактура номер';
$lang['to_inv_date'] = 'от дата';
$lang['add_new_inv_translation'] = 'Добави нов превод за фактура';
$lang['invoice_settings'] = 'Настройки по фактурите';
$lang['choose_translation'] = 'Избери превод';
$lang['what_mean_new_translate'] = 'Какво значи да добавя нов превод?';
$lang['what_mean_new_translate_explain'] = 'Можете да добавяте ваш превод на фактурите така, че при създаване на нова фактура да бъде на избран от вас език. Винаги можете да смените превода на фактурата като използвате формата за редакция.';
$lang['your_translation'] = 'ваш превод';
$lang['lang_name_internal_use'] = 'Име на езика(за вътрешно ползване)';
$lang['trans_language_name'] = 'Име на езика';
$lang['trans_recipient'] = 'Получател';
$lang['trans_bulstat'] = 'Булстат';
$lang['trans_mol'] = 'МОЛ';
$lang['trans_sender'] = 'Изпращач';
$lang['trans_original'] = 'Оригинал';
$lang['trans_number'] = 'Номер';
$lang['trans_date_of_issue'] = 'Дата на създваване';
$lang['trans_date_tax_event'] = 'Дата на данъчно събитие';
$lang['trans_to_an_invoice'] = 'По фактура';
$lang['trans_from_date'] = 'От дата';
$lang['trans_invoice'] = 'Фактура';
$lang['trans_debit_note'] = 'Дебитно известие';
$lang['trans_credit_note'] = 'Кредитно известие';
$lang['trans_remarks'] = 'Забележки';
$lang['trans_pro_forma'] = 'Проформа';
$lang['trans_products_name'] = 'Артикул';
$lang['trans_quantity'] = 'Количество';
$lang['trans_single_price'] = 'Единична цена';
$lang['trans_value'] = 'Крайна цена';
$lang['trans_discount'] = 'Отстъпка';
$lang['trans_payment_type'] = 'Начин на плащане';
$lang['trans_amount'] = 'Сума по фактура';
$lang['trans_tax_base'] = 'Данъчна основа';
$lang['trans_percentage_vat'] = 'Процент ДДС';
$lang['trans_vat_charget'] = 'ДДС';
$lang['trans_everything'] = 'Всичко';
$lang['trans_reason_non_var'] = 'Причина за неначисляване на ДДС';
$lang['trans_compiled'] = 'Издадена';
$lang['trans_signature'] = 'Подпис';
$lang['trans_schiffer'] = 'Шифър';
$lang['trans_page'] = 'Страница';
$lang['trans_i_accept'] = 'Приемам';
$lang['trans_i_refuse'] = 'Отказвам';
$lang['trans_receive_from'] = 'Получихте фактура от "Име на фирмата"';
$lang['you_receved_tr'] = 'Получихте';
$lang['from_tr'] = 'от';
$lang['save_new_translate'] = 'Запиши превода';
$lang['default_inv_lang_en'] = 'Английски';
$lang['default_inv_lang_bg'] = 'Български';
$lang['default_inv_lang_fr'] = 'Френски';
$lang['err_create_to_inv_num'] = 'Попълнете полето "по фактура номер"!';
$lang['err_create_to_inv_date'] = 'Попълнете полето "от дата"!';
$lang['err_create_client_name'] = 'Попълнете името на клиента!';
$lang['err_create_client_addr'] = 'Попълнете адреса на клиента!';
$lang['err_create_inv_num'] = 'Попълнете полето с номер на фактурата!';
$lang['err_create_date_create'] = 'Попълнете полето за дата на създаване на фактурата!';
$lang['err_create_tax_event'] = 'Попълнете полето за данъчно събитие на фактурата!';
$lang['err_create_inv_num_is_taken'] = 'Вече има фактура с този номер, изберете друг';
$lang['err_create_no_item_name'] = 'Попълнете всички имена на добавените артикули!';
$lang['err_create_no_item_qua'] = 'Попълнете всички количества на добавените артикули!';
$lang['choose_client'] = 'Избери клиент от списъка';
$lang['choose_item'] = 'Избери артикул от списъка';
$lang['no_clients_selector'] = 'Няма клиенти';
$lang['no_items_selector'] = 'Няма артикули';
$lang['invoices'] = 'Фактури';
$lang['list_inv_num'] = 'Номер';
$lang['list_inv_date'] = 'Дата';
$lang['list_inv_client'] = 'Клиент';
$lang['list_inv_type'] = 'Тип';
$lang['list_inv_status'] = 'Статус';
$lang['list_inv_sum'] = 'Сума';
$lang['create_new_inv'] = 'Създай нова фактура';
$lang['list_inv_manage'] = 'Други';
$lang['list_inv_payment_status'] = 'Плащания';
$lang['no_invoices_yet'] = 'Нямате издадени фактури';
$lang['type_debit'] = 'Дебитно известие';
$lang['type_tax_inv'] = 'Данъчна';
$lang['type_prof'] = 'Проформа';
$lang['type_credit'] = 'Кредитно известие';
$lang['status_issued'] = 'Издадена';
$lang['status_draft'] = 'Чернова';
$lang['status_refused'] = 'Върната';
$lang['status_accepted'] = 'Приета';
$lang['status_sended'] = 'Изпратена';
$lang['status_canceled'] = 'Анулирана';
$lang['update_inv_save'] = 'Обнови';
$lang['show_translation_on_edit'] = 'Покажи преводите';
$lang['show_translation_firm_on_edit'] = 'Покажи преводите на фирмата';
$lang['show_translation_now_use'] = '(в момента използвате превод на %transname%)';
$lang['show_translation_firm_now_use'] = '(в момента използвате име на фирмата - %transname%)';
$lang['no_vat_reason_selected'] = 'Избери от списъка';
$lang['stop_inv_calculator'] = 'Спри автоматичния калкулатор при издаване на документ';
$lang['stop_movem_calculator'] = 'Спри автоматичния калкулатор при издаване на документ';
$lang['no_clients_yet'] = 'Нямате клиенти';
$lang['list_cli_name'] = 'Име';
$lang['list_cli_bulstat'] = 'Булстат';
$lang['list_cli_manage'] = 'Оправление';
$lang['clients'] = 'Клиенти';
$lang['add_new_client'] = 'Добави клиент';
$lang['add_client'] = 'Добави клиент';
$lang['save_client'] = 'Запиши клиента';
$lang['cancel_save_client'] = 'Отказ';
$lang['confirm_delete_client'] = 'Сигурен ли сте, че искате да изтриете този клиент?';
$lang['list_item_name'] = 'Име';
$lang['list_cli_price'] = 'Цена';
$lang['list_cli_qu_type'] = 'Мерна единица';
$lang['list_cli_manage'] = 'Оправление';
$lang['confirm_delete_item'] = 'Сигурен ли сте, че искате да изтриете този артикул?';
$lang['no_items_yet'] = 'Нямате артикули';
$lang['add_new_item'] = 'Добави артикул';
$lang['add_item'] = 'Добави артикул';
$lang['add_item_name'] = 'Име';
$lang['add_item_qua_type'] = 'Мерна единица';
$lang['add_item_price'] = 'Цена';
$lang['add_item_currency'] = 'Валута';
$lang['cancel_save_item'] = 'Отказ';
$lang['save_item'] = 'Запиши артикула';
$lang['no_currency_selected_item'] = 'Не е избрана валута';
$lang['items'] = 'Артикули';
$lang['err_create_item_name'] = 'Името на артикула е празно!';
$lang['no_employees_yet'] = 'Няма служители';
$lang['add_new_employee'] = 'Добави служител';
$lang['add_employee_name'] = 'Име';
$lang['add_employee_email'] = 'Имейл';
$lang['add_employee_phone'] = 'Телефон';
$lang['add_employee_pass'] = 'Парола';
$lang['cancel_save_employee'] = 'Отказ';
$lang['save_employee'] = 'Запиши служителя';
$lang['list_empl_name'] = 'Име';
$lang['list_empl_email'] = 'Имейл';
$lang['list_empl_phone'] = 'Телефон';
$lang['list_empl_manage'] = 'Оправление';
$lang['confirm_delete_employee'] = 'Сигурен ли сте, че искате да изтриете този служител?';
$lang['if_dont_change_emp_pass'] = 'Ако не искате да променяте паролата оставете това поле празно';
$lang['employee_email_taken'] = 'Вече имате добавен служител с този имейл адрес';
$lang['no_permissions'] = 'Нямате права да използвате този раздел!';
$lang['perm_add_invoice'] = 'Добавя фактури';
$lang['perm_edit_invoice'] = 'Редактира фактури';
$lang['perm_delete_invoice'] = 'Трие фактури';
$lang['perm_change_inv_status'] = 'Сменя статуса на фактурите';
$lang['perm_add_clients'] = 'Добавя клиент';
$lang['perm_edit_clients'] = 'Редактира клиенти';
$lang['perm_delete_clients'] = 'Изтрива клиенти';
$lang['perm_add_items'] = 'Добавя артикули';
$lang['perm_edit_items'] = 'Редактира артикули';
$lang['perm_delete_items'] = 'Изтрива артикули';
$lang['perm_can_manage_rights'] = 'Променя пварата на другите служители';
$lang['perm_add_employees'] = 'Добавя нови служители';
$lang['perm_can_manage_firms'] = 'Може да променя настройките на фирмата';
$lang['perm_view_plans_page'] = 'Може да отваря страницата с плановете';
$lang['success_save_new_perms'] = 'Новите права са зададени!';
$lang['perm_delete_employees'] = 'Може да трие служители';
$lang['perm_edit_employees'] = 'Може да редактира служители';
$lang['usr_admin_menu'] = 'Профил на администратор';
$lang['save_user_data'] = 'Запиши';
$lang['cancel_save_user'] = 'Отказ';
$lang['if_dont_change_usr_pass'] = 'Ако не искате да променяте паролата оставете това поле празно';
$lang['this_email_is_used'] = 'Този имейл вече се използва от друг потребител!';
$lang['success_update_user_adm'] = 'Потребителя е обновен!';
$lang['problem_update_user_adm_em'] = 'Този имейл адрес е зает от служител или друг акаунт!';
$lang['can_access_firms'] = 'Има достъп до фирми:';
$lang['you_cant_view_any_firms'] = 'Нямате достъп до никакви фирми!';
$lang['employee_add_success'] = 'Служителят е добавен успешно!';
$lang['no_template_file'] = 'Не е зареден никакъв дизайн! Свържете се с поддръжката!';
$lang['composed_from'] = 'Съставен от:';
$lang['schiffer_replace'] = 'Шифър (заменя подписа)';
$lang['download_print_copy'] = 'Свали/Принтирай Копие';
$lang['download_print_original'] = 'Свали/Принтирай Оригинал';
$lang['original_txt'] = 'Оригинал';
$lang['copy_txt'] = 'Копие';
$lang['confirm_delete_invoice'] = 'Сигурен ли сте, че искате да изтриете тази фактура?';
$lang['delete'] = 'Изтрий';
$lang['from_date'] = 'От дата:';
$lang['to_date'] = 'До дата:';
$lang['show_statistic'] = 'Покажи статистиката';
$lang['reports'] = 'Справки';
$lang['menu_list_reports'] = 'Справки';
$lang['num_invoices_stat'] = 'Брой издадени фактури';
$lang['all_the_time'] = 'За целия период';
$lang['num_created'] = 'Брой издадени';
$lang['issued'] = 'Издадена';
$lang['num_invoices_by_month_stat'] = 'Брой издадени фактури по месец';
$lang['no_reports_yet'] = 'Няма издадени фактури за избрания период';
$lang['no_reports_yet_all_time'] = 'Няма издадени фактури до момента';
$lang['amount_invoices_by_month_stat'] = 'Сума в %currency% на издадените фактури по месец';
$lang['pages_pagination_num'] = 'Брой редове който да се показват';
$lang['payment_status_paid'] = 'Платена';
$lang['payment_status_unpaid'] = 'Неплатена';
$lang['payment_status_partly_paid'] = 'Частично платена';
$lang['top_search_no_results'] = 'Няма намерени резултати!';
$lang['show_drafts_report'] = 'Покажи черновите';
$lang['to_canceled_stat'] = 'Анулирай';
$lang['remove_canceled_stat'] = 'Премахни статус анулирана';
$lang['top_clients_stat'] = 'Топ 10 клиенти - суми по фактури (във валута %currency%)';
$lang['sum_of_invoices_in_stat'] = 'Сума на издадените фактури';
$lang['menu_list_import_export'] = 'Импорт/Експорт';
$lang['no_invoices_result_export'] = 'Няма издадени фактури';
$lang['selected_invalid_exporter'] = 'Избрали сте невалиден експорт!';
$lang['export'] = 'Експорт';
$lang['import'] = 'Импорт';
$lang['not_selected_import_file'] = 'Изберете файл за импортиране';
$lang['try_to_import_wrong_file_format'] = 'Файлът който се опитвате да импортирате е с грешен формат';
$lang['no_invoice_note_in_xml_import'] = 'Няма invoice note в xml файла. Проверете дали xml файла е с правилна структора.';
$lang['imp_invalid_inv_type'] = 'Невалиден тип на фактура';
$lang['imp_inv_number_taken'] = 'Номера на фактурата е зает';
$lang['imp_wrong_date_created'] = 'Грешен timestamp формат за дата на издаване';
$lang['imp_wrong_date_tax_event'] = 'Грешен timestamp формат за дата на данъчно събитие';
$lang['imp_wrong_date_maturity'] = 'Грешна дата на падеж';
$lang['imp_to_inv_date_wrong'] = 'Невалидно поле (по фактура от дата)';
$lang['imp_no_client_name'] = 'Името на клиента е празно';
$lang['imp_no_client_addr'] = 'Адреса на клиента е празен';
$lang['imp_no_item_name'] = 'Артикул %rowNum% е с празно име';
$lang['imp_no_item_quantity'] = 'Артикул %rowNum% няма въведено количество';
$lang['imp_no_items'] = 'Няма намерени артикули';
$lang['inv_num_row_in_file'] = 'Номер ред фактура във файла';
$lang['inv_number'] = 'Фактура номер';
$lang['inv_type'] = 'Фактура тип';
$lang['inv_errors'] = 'Проблеми';
$lang['import_results'] = 'Резултат от импорта';
$lang['inv_action_history'] = 'Действия';
$lang['search_inv_num'] = 'фактура номер:';
$lang['search_client'] = 'Клиент';
$lang['search_item'] = 'Артиклул';
$lang['search_amount_from'] = 'Цена от';
$lang['search_to'] = 'до';
$lang['search_date_from'] = 'Дата на създаване от';
$lang['search_payment_type'] = 'Начин на плащане:';
$lang['search_inv_type'] = 'Тип';
$lang['search_inv_payments'] = 'Плащания';
$lang['search_paied'] = 'Платена';
$lang['search_unpaied'] = 'Неплатена';
$lang['search_inv_status'] = 'Статус';
$lang['search_issued'] = 'Издадена';
$lang['search_sended'] = 'Изпратена';
$lang['search_refused'] = 'Върната';
$lang['search_accepted'] = 'Приета';
$lang['search_canceled'] = 'Анулирана';
$lang['search_draft'] = 'Чернова';
$lang['search_client_name'] = 'Име на клиент';
$lang['search_client_bulstat'] = 'Булстат';
$lang['search_item_name'] = 'Артикул';
$lang['clear_search'] = 'Изчисти търсенето';
$lang['menu_list_store'] = 'Склад';
$lang['store_settings'] = 'Склад настройки';
$lang['my_added_stores'] = 'Складове';
$lang['store_name'] = 'Име на склад';
$lang['no_stores_added'] = 'Няма добавени складове';
$lang['add_new_store'] = 'Добави склад';
$lang['empty_store_name'] = 'Няма име на склад';
$lang['store_name_taken'] = 'Това име е заето';
$lang['confirm_delete_store'] = 'Сигурен ли сте, че искате да изтриете този склад?';
$lang['add_store_movement'] = 'Добави движение';
$lang['open_store_movements'] = 'Покажи движенията';
$lang['create_store_movement'] = 'Създай движение';
$lang['movement_type_in'] = 'Вкарване';
$lang['movement_type_out'] = 'Изкарване';
$lang['movement_type_move'] = 'Преместване';
$lang['movement_type_revision'] = 'Ревизия';
$lang['create_movement_type'] = 'Тип движение:';
$lang['create_movement_id'] = 'Движение';
$lang['create_movement_date_create'] = 'Дата на създаване';
$lang['create_movement_amount'] = 'Цена';
$lang['choose_movem_translation'] = 'Избери превод на стокова разписка';
$lang['how_do_you_round_values_in_move'] = 'До кой знак искате да се закръгляват стойностите в движенията';
$lang['err_create_movem_num'] = 'Няма номер на движение';
$lang['err_create_movem_num_is_taken'] = 'Този номер на движение е зает';
$lang['err_movem_create_date_create'] = 'Въведете дата на създаване';
$lang['movement_added'] = 'Движението е добавено';
$lang['movem_from_store'] = 'От склад:';
$lang['movem_to_store'] = 'Към склад:';
$lang['create_movem_from_client'] = 'От клиент:';
$lang['create_movem_to_client'] = 'Към клиент:';
$lang['item_is_not_in_store'] = 'Артикул %item% не съществува в този склад';
$lang['item_no_enought_quantity'] = 'Артикул %item% няма достатъчно количество';
$lang['allow_negative_qua_in_store'] = 'Ползволи отрицателни стойности в складовете';
$lang['trans_bill_of_goods'] = 'Стокова разписка';
$lang['trans_date'] = 'Дата';
$lang['trans_address'] = 'Адрес';
$lang['trans_betrayed'] = 'Предал';
$lang['trans_accepted'] = 'Приел';
$lang['trans_vat'] = 'ДДС';
$lang['trans_vat_amount'] = 'ДДС Стойност';
$lang['trans_no_vat_reason'] = 'Причина за неначисляване на ДДС';
$lang['trans_product_name'] = 'Артикул';
$lang['trans_product_quantity'] = 'Количество';
$lang['trans_product_quantity_type'] = 'Мерна единица';
$lang['trans_product_amount'] = 'Цена';
$lang['trans_payment_method'] = 'Начин на плащане';
$lang['no_movements_yet'] = 'Няма движения по склада';
$lang['list_movement'] = 'Движение';
$lang['list_bill_of_lading'] = 'Стоков разписка';
$lang['list_movem_type'] = 'Тип';
$lang['list_movem_status'] = 'Статус';
$lang['list_movem_from'] = 'От';
$lang['list_movem_to'] = 'До';
$lang['movem_preview'] = 'Преглед';
$lang['movem_type_in'] = 'Вкарване';
$lang['movem_type_out'] = 'Изкарване';
$lang['movem_type_move'] = 'Преместване';
$lang['movem_type_revision'] = 'Ревизия';
$lang['movem_stat_confirmed'] = 'Потвърдена';
$lang['movem_stat_cancelled'] = 'Анулирана';
$lang['search_by_store'] = 'Склад:';
$lang['search_store_client'] = 'Клиент:';
$lang['all_stores'] = 'Всички складове';
$lang['preview_movem_num'] = 'Движение номер:';
$lang['preview_movem_type'] = 'Движение тип:';
$lang['preview_movem_currency'] = 'Движение валута:';
$lang['preview_movem_status'] = 'Движение статус:';
$lang['preview_movem_from'] = 'От:';
$lang['preview_movem_to'] = 'До:';
$lang['movement_item_name'] = 'Артикул';
$lang['movement_item_quantity'] = 'Количество';
$lang['movement_item_before_revision'] = 'Преди ревизията';
$lang['movement_item_after_revision'] = 'След ревизията';
$lang['movement_item_difference'] = 'Разлика';
$lang['bill_of_lading'] = 'Стокова разписка';
$lang['trans_city'] = 'Град';
$lang['momvem_betrayed'] = 'Предал';
$lang['momvem_accepted'] = 'Приел';
$lang['store_stocks'] = 'Стоки';
$lang['preview_movem_betrayed'] = 'Предал:';
$lang['preview_movem_accepted'] = 'Приел:';
$lang['no_stocks_yet'] = 'Няма стоки';
$lang['back_to_movements'] = 'Обратно в движенията';
$lang['countInvoices'] = 'Брой фактури:';
$lang['with_sum_of'] = 'с обща сума';
$lang['report_show_paid'] = 'Покажи само платените фактури';
$lang['report_show_unpaid'] = 'Покажи само неплатените фактури';
$lang['report_show_partly_paid'] = 'Покажи само частично платените фактури';
$lang['report_show_all'] = 'Покажи всички видове (платени, неплатени) фактури';
$lang['menu_list_warranties'] = 'Гаранционни карти';
$lang['no_warranties_yet'] = 'Няма добавени гаранционни карти';
$lang['add_warranty'] = 'Добави гаранционна карта';
$lang['add_war_translation'] = 'Добави език';
$lang['create_warranty_id'] = 'Гаранционна карта';
$lang['create_warranty_from_date'] = 'Валидна от:';
$lang['create_war_item'] = 'Артикул';
$lang['create_war_months'] = 'Месеци';
$lang['create_war_serial_num'] = 'Сериен номер';
$lang['open_warranties'] = 'отвори списъка';
$lang['create_warranty'] = 'Създай';
$lang['trans_warranty_card'] = 'Гаранционна карта';
$lang['trans_date_valid'] = 'Валидна от';
$lang['trans_product_months'] = 'Месеци';
$lang['trans_product_valid_to'] = 'Валидна до';
$lang['trans_product_serial_num'] = 'Сериен номер';
$lang['trans_received'] = 'Получена';
$lang['trans_warranty_conditions'] = 'Гаранционни правила';
$lang['err_create_war_num'] = 'Невалиден номер на гаранция';
$lang['err_create_war_num_is_taken'] = 'Вече има гаранция с този номер';
$lang['err_create_war_no_item_month'] = 'Няма въведени месеци за артикул';
$lang['warranty_added'] = 'Гаранционната карта е добавена';
$lang['delete_warranties'] = 'Изтрий';
$lang['list_war_number'] = 'Номер';
$lang['list_war_to_inv'] = 'По фактура';
$lang['list_war_valid_from'] = 'Валидна от';
$lang['list_war_client'] = 'Клиент';
$lang['list_war_action'] = 'Действия';
$lang['create_warranty_to_inv'] = 'По фактура номер:';
$lang['edit_warranty'] = 'Редакция';
$lang['warranty_updated'] = 'Гаранцията е обновена';
$lang['warranty_received'] = 'Получена';
$lang['warranty_compiled'] = 'Съставена';
$lang['warranty_conditions'] = 'Условия';
$lang['warranty_settings'] = 'Настройки гаранционни карти';
$lang['add_new_condition'] = 'Добави условие';
$lang['warranty_conditions'] = 'Условия';
$lang['no_conditions_added'] = 'Няма добавени условия';
$lang['condition_title'] = 'Заглавие (за вътрешно ползване)';
$lang['condition_description'] = 'Условие за клиента';
$lang['confirm_delete_condition'] = 'Сигурен ли сте, че искате да изтриете това условие?';
$lang['war_condit_preview_descr'] = 'Преглед на текста';
$lang['select_saved_condition'] = 'Избери от записани условия';
$lang['list_war_events'] = 'Събирия';
$lang['war_events'] = 'Събития';
$lang['add_new_war_event'] = 'Добави събитие';
$lang['date_war_event_manupulation'] = 'Дата на събитие';
$lang['war_event_item'] = 'Артикул';
$lang['repair'] = 'Поправка';
$lang['war_event_type'] = 'Тип';
$lang['war_event_description'] = 'Описание';
$lang['save_war_event'] = 'Запиши';
$lang['replacement'] = 'Заменяне';
$lang['no_war_events_yet'] = 'Няма събития';
$lang['war_ev_item'] = 'Артикул:';
$lang['war_ev_type'] = 'Тип:';
$lang['war_ev_date'] = 'Дата:';
$lang['war_ev_descr'] = 'Описание:';
$lang['menu_list_protocols'] = 'Протоколи';
$lang['perm_add_movement'] = 'Може да добавя движения';
$lang['perm_view_movement_page'] = 'Може да преглежда движенията';
$lang['perm_view_store_stocks'] = 'Може да преглежда наличностите в складове';
$lang['perm_view_warranty_page'] = 'Може да преглежда гаранционните карти';
$lang['perm_add_warranty'] = 'Може да добавя гаранционна карта';
$lang['perm_view_warranty_events'] = 'Може да вижда събитията по гаранцийте';
$lang['perm_add_warranty_events'] = 'Може да добавя събития по гаранцийте';
$lang['perm_view_protocols_page'] = 'Може да вижда страницата с протоколи';
$lang['no_protocols_yet'] = 'Няма добавени протоколи';
$lang['protocols_settings'] = 'Настройки по протоколи';
$lang['add_protocol'] = 'Добави протокол';
$lang['delete_protocols'] = 'Изтрий';
$lang['perm_add_protocol'] = 'Може да добавя протоколи';
$lang['create_protocol_acceptable'] = 'Приел';
$lang['create_protocol_transmitter'] = 'Предал';
$lang['create_protocol_type'] = 'Тип';
$lang['create_protocol_from_date'] = 'От дата:';
$lang['protocol_number'] = 'Протокол';
$lang['create_protocol'] = 'Създай протокол';
$lang['open_protocols'] = 'Отвори протоколите';
$lang['my_added_provider_transmits'] = 'Предавателен текст';
$lang['no_provider_trans_txts_added'] = 'Няма добавени предавателни текстове';
$lang['provider_trans_title'] = 'Заглавие (за вътрешно ползване)';
$lang['provider_trans_description'] = 'Описание за потребителя';
$lang['add_new_provider_desc'] = 'Добави';
$lang['confirm_delete_provider_trasmit'] = 'Сигурен ли сте, че искате да изтриете този предавателен текст?';
$lang['no_contr_txts_added'] = 'Няма договорни текстове добавени';
$lang['select_saved_contracts'] = 'Избери от списък с договорни текстове';
$lang['protocol_contracts'] = 'Договор';
$lang['provider_transmit'] = 'Доставчикът предава';
$lang['select_saved_provider_trans'] = 'Избери от списъка';
$lang['add_protocol_translation'] = 'Добави превод за протокол';
$lang['trans_protocol_number'] = 'Номер';
$lang['trans_supplier'] = 'Доставчик';
$lang['trans_product_final_price'] = 'Общо';
$lang['trans_final_amount'] = 'Общо';
$lang['err_create_prot_num'] = 'Няма номер на протокол';
$lang['err_create_prot_num_is_taken'] = 'Този номер на протокол е зает';
$lang['err_create_prot_no_item_qa'] = 'Няма въведено количество';
$lang['protocol_added'] = 'Протокола е добавен';
$lang['protocol_updated'] = 'Протокола е обновен';
$lang['protocol_to_inv'] = 'По фактура';
$lang['protocol_from_date'] = 'От дата';
$lang['protocol_client'] = 'Клиент';
$lang['protocols_action'] = 'Действия';
$lang['create_protocol_amount'] = 'Цнеа';
$lang['trans_to_invoice'] = 'По фактура';
$lang['trans_transmission_protocol'] = 'Приемо-предавателен протокол';
$lang['language'] = 'Език';
$lang['show_logo_in_inv'] = 'Покажи логото във фактурите';
$lang['remove_firm_image'] = 'Изтрий логото';
$lang['firm_vat_number'] = 'ДДС Номер';
$lang['firm_is_vat_registered'] = 'Регистрация по ДДС';
$lang['firm_details_changed'] = 'Данните на фирмата са сменени';
$lang['trans_vat_number'] = 'ДДС Номер';
$lang['partly_paid'] = 'Частично платена';
$lang['search_partly_paid'] = 'Частично платена';
$lang['logout'] = 'Изход';
$lang['home'] = 'Начало';
$lang['warranties'] = 'Гаранционни карти';
$lang['protocols'] = 'Протоколи';
$lang['import_export'] = 'Импорт/Ескпорт';
$lang['explain_inv_translation'] = 'Добавете/изберете превод на фактурите които издавате на вашият език';
$lang['explain_firm_translation'] = 'Изберете превод данните на фирмата ви';
$lang['search'] = 'Търси';
$lang['explain_movem_translation'] = 'Добавете/изберете превод на стоковите разписки които издавате на вашият език';
$lang['explain_protocol_translation'] = 'Добавете/изберете превод на протоколите които издавате на вашият език';
$lang['explain_war_translation'] = 'Добавете/изберете превод на гаранцията която издавате на вашият език';
$lang['bulstat'] = 'Булстат:';
$lang['ident_num'] = 'ЕГН:';
$lang['amount'] = 'Цена:';
$lang['employees'] = 'Служители';
$lang['global'] = 'Общи настройки';
$lang['warranty'] = 'Гаранции';
$lang['add_employees'] = 'Добавяне на служител';
$lang['rights'] = 'Права';
$lang['save'] = 'Запиши';
$lang['my_added_contracts'] = 'Договорни текстове';
$lang['edit_admin'] = 'редакция на администратор';
$lang['preview_client'] = 'Преглед на клиент';
$lang['edit'] = 'Редактирай';
$lang['preview_item'] = 'Преглед на артикул';
$lang['add_movement'] = 'Добави движение';
$lang['stocks'] = 'Стоки';
$lang['movement_preview'] = 'Преглед на движение';
$lang['warranty_events'] = 'Събития по гаранционна карта';
$lang['cancel'] = 'Отказ';
$lang['add_warranty_event'] = 'Добави събитие';
$lang['edit_firm_info'] = 'Редакция на фирма';
$lang['documents'] = 'Документи';
$lang['companies'] = 'Фирми';
$lang['show_main_menu'] = 'Покажи менюто';
$lang['plan_basic'] = 'Персонален';
$lang['plan_advanced'] = 'Напреднал';
$lang['plan_pro'] = 'Професионален';
$lang['plan_custom'] = 'Индивидуален';
$lang['plans_most'] = 'Най';
$lang['plans_popular'] = 'Популярен';
$lang['plans_month'] = 'месец';
$lang['plans_choose'] = 'Избери';
$lang['plans_num_inv'] = 'Фактури';
$lang['plans_num_firms'] = 'Фирми';
$lang['plans_one_m_bonus'] = '+1 месец БОНУС';
$lang['plan_period'] = 'Период';
$lang['plans_period'] = 'Период на плана';
$lang['confirm_plan_requiest'] = 'Потвърди заявката';
$lang['plan_period'] = 'Период';
$lang['plan_payment_type'] = 'Начин на плащане';
$lang['plan_payment_bank'] = 'Банков път';
$lang['plan_payment_paypal'] = 'PayPal';
$lang['plan_payment_sms'] = 'СМС Съобщение';
$lang['plan_payment_easypay'] = 'Каса на EasyPay';
$lang['plan_period_month'] = 'Месец';
$lang['plan_period_months'] = 'Месеца';
$lang['plan_period_year'] = 'Година';
$lang['my_plan_request'] = 'Заявка за план';
$lang['payment_awaiting'] = 'Очакваме плащането Ви';
$lang['plan_type'] = 'Тип на плана';
$lang['plan_date_generated'] = 'Дата на заявката';
$lang['plan_req_num'] = 'Номер на заявка';
$lang['payment_details'] = 'Информация за плащането';
$lang['info_box'] = 'Важно!';
$lang['plan_will_started'] = 'Планът Ви ще бъде активиран веднага щом получим плащането и ще Ви бъде изпратена фактура на имейл адресът';
$lang['cancel_pay_req'] = 'Откажи заявката';
$lang['confirm_cancel_req'] = 'Сигурен ли сте, че искате да откажете заявката?';
$lang['pay_det_name_of_rec'] = 'Име на получателя';
$lang['pay_det_iban'] = 'IBAN на получателя';
$lang['pay_det_bic'] = 'BIC на получателя';
$lang['pay_det_to_bank'] = 'При банка';
$lang['pay_det_sum'] = 'Сума за плащане';
$lang['dont_forget_req_num'] = 'Не забравяйте да сложите номера на заявката в описанието';
$lang['plans_make_request'] = 'Направи заявка';
$lang['plan_send_us_req'] = 'Какъв е планът който желаете да използвате?';
$lang['send_plan_req'] = 'Изпрати заявката';
$lang['plan_req_inv_per_mon'] = 'Колко фактури месечно искате да издавате';
$lang['plan_req_companies'] = 'Колко фирми ще използвате';
$lang['when_we_see_plan_req'] = 'След като направим преглед на планът който искате ще го добавим в страницата с останалите планове и ще бъдете уведомени по имейл.';
$lang['plan_req_sended'] = 'Заявката за план е изпратена. Очаквайте да ви уведомим по имейл в рамките на деня.';
$lang['already_have_req'] = 'Вече имате направена заявка за индивидуален план с %num_inv% фактури и %companies% фирми. Ако изпратите нова старата ще бъде премахната.';
$lang['plans_make_new_request'] = 'Нова заявка';
$lang['title_everytime'] = 'Система за електронно фактуриране - ';
$lang['title_clients'] = 'Клиенти';
$lang['title_add_client'] = 'Добави клиент';
$lang['title_preview_client'] = 'Преглед на клиент';
$lang['title_home_page'] = 'Начало';
$lang['title_import_export'] = 'Импорт/Експорт';
$lang['title_invoices'] = 'Списък фактури';
$lang['title_inv_preview'] = 'Преглед на фактура - ';
$lang['title_new_inv'] = 'Нова фактура';
$lang['title_items'] = 'Артикули';
$lang['title_add_item'] = 'Добави артикул';
$lang['title_item_preview'] = 'Преглед на артикул';
$lang['title_manage_firms'] = 'Управление на фирмите';
$lang['title_edit_firm'] = 'Редакция на фирма';
$lang['title_plans'] = 'Абонаментни планове';
$lang['title_choose_plan_period'] = 'Избиране на период за абонаментен план';
$lang['title_plan_req'] = 'Вашата заявка за абонаментен план';
$lang['title_protocols'] = 'Протоколи';
$lang['title_add_protocol'] = 'Добави протокол';
$lang['title_reports'] = 'Справки';
$lang['title_admin'] = 'Редакция на администратор';
$lang['title_employees'] = 'Служители';
$lang['title_add_employee'] = 'Добави служител';
$lang['title_empl_rights'] = 'Права на служители';
$lang['title_global_sett'] = 'Общи настройки';
$lang['title_inv_sett'] = 'Настройки по фактури';
$lang['title_protoc_sett'] = 'Настройки по протоколи';
$lang['title_settings'] = 'Настройки';
$lang['title_store_sett'] = 'Настройки по склад';
$lang['title_warr_sett'] = 'Настройки по гаранциите';
$lang['title_movem_prev'] = 'Преглед на движение';
$lang['title_movements'] = 'Движения';
$lang['title_add_movement'] = 'Добави движение';
$lang['title_stocks'] = 'Стоки';
$lang['title_events'] = 'Събития по гаранции';
$lang['title_add_event'] = 'Добави събитие по гаранция';
$lang['title_warranties'] = 'Гаранции';
$lang['title_add_warr'] = 'Добави гаранционна карта';
$lang['create_first_one_inv'] = 'Създай първата';
$lang['limit_inv_error'] = 'Вие сте изчерпали лимита си за създаване на фактури. Ако искате да издадете фактура ще трябва да подновите плана си или да изчакате 1 месец от последната издадена фактура за да можете да изададете нова такава (максимум 5)';
$lang['my_active_plans'] = 'Активни планове';
$lang['active_to'] = 'Активен до:';
$lang['left_inv_from_plan'] = 'Оставащи фактури:';
$lang['num_companies_plan'] = 'Фирми:';
$lang['started_from'] = 'Стартиран от:';
$lang['exceeded_limit_firms'] = 'Вашият лимит за използване на фирми е превишен. Моля изтрийте някоя от фирмите или преминете на по-висок план за да продължите работата си в сайта. Това изтриване няма да бъде перманентно и при преминаване на по-голям план ще имате възможност за възстановяване на фирмата.';
$lang['create_movement_lot'] = 'Партида:';
$lang['create_movement_expire'] = 'Срок на годност:';
$lang['preview_movem_lot'] = 'Партиден номер:';
$lang['preview_movem_expire'] = 'Изтича на:';
$lang['expire_date_to'] = 'Срок на годност до:';
$lang['bill_of_lading_down'] = 'Свали стокова рапзиска';
$lang['preview_movem_to_inv'] = 'Към фактура:';
$lang['to_inv_movem_not_set'] = 'Не е създадена фактура';
$lang['pay_elsewhere'] = 'Искам да платя от друго място. Покажи ми банковата сметка.';
$lang['inv_templ_change'] = 'Смени изгледа на фактурите';
$lang['plans_year'] = 'година';
$lang['plan_period_years'] = 'години';
$lang['per_12_months'] = 'за 12 месеца';
================================================
FILE: application/language/english/db_lang.php
================================================
================================================
FILE: application/language/english/email_lang.php
================================================
================================================
FILE: application/language/english/form_validation_lang.php
================================================
<?php
================================================
FILE: application/language/english/index.html
================================================
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
================================================
FILE: application/language/english/js/all.js
================================================
var lang = {
invalid_email: 'Invalid email address!',
invalid_pass: 'Please enter password!',
invalid_pass2: 'Please repeat the passwrod!',
passwords_dont_match: 'Passwords dont match!',
rules_not_checked: 'Please check rules!',
proforma: 'Pro-forma',
invoice: 'Invoice',
debit_note: 'Debit note',
credit_note: 'Credit note',
errorCreateDocument: 'We have found following blank fields',
currencyItemNotSame: 'The price entered for this item is in a different currency',
errorCreateClient: 'Some client required fields are blank!',
errorCreateItem: 'Some item required fields are blank!',
errorCreateEmployee: 'You have invalid fields!',
noCheckedCheckboxes: 'There is nothing selected!',
confirmDelete: 'Are you sure want to delete?',
errorChangeInvStatusAjax: 'Invoice status change error. Try again please!',
confirmCancel: 'Are you sure want to cancel?',
confirmRemoveCancel: 'Are you sure want to remove status cancelled?',
show_main_menu: 'Show menu',
hide_main_menu: 'Hide menu'
};
================================================
FILE: application/language/english/pagination_lang.php
================================================
<?php
$lang['first'] = 'First';
$lang['last'] = 'Last';
$lang['next'] = 'Next';
$lang['previous'] = 'Previous';
$lang['pagination_last_link'] = 'Last';
$lang['pagination_first_link'] = 'First';
================================================
FILE: application/language/english/profiler_lang.php
================================================
<?php ?>
================================================
FILE: application/language/english/public_lang.php
================================================
<?php
$lang['btn_home'] = 'Home';
$lang['btn_register'] = 'Register now for free';
$lang['btn_plans'] = 'Plans';
$lang['btn_features'] = 'Features';
$lang['btn_help'] = 'Help';
$lang['btn_contacts'] = 'Contacts';
$lang['btn_login'] = 'Login';
$lang['header_text'] = 'Easily Create And Send Invoices';
$lang['login_email'] = 'Email';
$lang['login_pass'] = 'Password';
$lang['btn_logme'] = 'Log Me';
$lang['home_slide_tx1'] = 'Create';
$lang['home_slide_free'] = 'free';
$lang['check_our_options'] = 'Check our options and features!';
$lang['home_slide_register_now'] = 'Register now!';
$lang['electronic_invoices'] = 'electronic invoices';
$lang['register_now'] = 'Register now!';
$lang['text_register_after_carousel'] = 'Register a';
$lang['text_free_after_carousel'] = 'free';
$lang['text_account_after_carousel'] = 'account and start issuing invoices!';
$lang['text_bottom_after_carousel'] = 'For registration need to fill only 3 fields! It will take less than 1 minute and start to issue invoices!';
$lang['what_is'] = 'What is';
$lang['and_how_it_works'] = 'and how it works?';
$lang['forgotten_pass'] = 'Forgot your password?';
$lang['one_acc'] = '1 Account - multiple firms';
$lang['send_by_email'] = 'Send by email';
$lang['invent_store'] = 'Inventory and Store System';
$lang['down_pdf'] = 'Download as PDF';
$lang['24_support'] = '27/7 Support';
$lang['inv_templates'] = 'Invoice Templates';
$lang['become_member_in_3'] = 'Send invoices just in 3 easy steps!';
$lang['payment_methods'] = 'Payment methods';
$lang['support_footer'] = 'Support';
$lang['support_questions'] = 'Asked questions';
$lang['support_menu'] = 'Create invoice';
$lang['comming_features'] = 'Comming new features';
$lang['registration_modal'] = 'Registration';
$lang['reg_email'] = 'Your email address';
$lang['reg_pass'] = 'Your password';
$lang['reg_pass_repeat'] = 'Repeat password';
$lang['reg_p_email'] = 'yourname@domain.com';
$lang['reg_p_secret'] = 'Your secret password';
$lang['reg_p_secret2'] = 'Repeat your secret password';
$lang['close'] = 'Close';
$lang['register_me'] = 'Register me';
$lang['confirm_rules'] = 'Confirm rules';
$lang['read_rules'] = 'Terms & Conditions';
$lang['write_us'] = 'Write us message';
$lang['contacts'] = 'Contacts';
$lang['or_send_to'] = 'or send to';
$lang['your_name'] = 'Your name';
$lang['your_email'] = 'Your email';
$lang['your_subject'] = 'Your subject';
$lang['send'] = 'Send';
$lang['we_received'] = 'Thank you! We received your message and will reply to you soon!';
$lang['find_by_keyword'] = 'Find by keyword:';
$lang['term'] = 'Term';
$lang['find_by_tags'] = 'Find by tags:';
$lang['published'] = 'published';
$lang['features'] = 'Features';
$lang['registration'] = 'Registration';
$lang['register_account'] = 'Register Account';
$lang['i_have_account'] = 'I allready have account';
$lang['login'] = 'Login';
$lang['log_to_your_acc'] = 'Login to your account';
$lang['invalid_email'] = 'Invalid email address!';
$lang['empty_password'] = 'Password is empty!';
$lang['empty_password_repeat'] = 'Please repeat password!';
$lang['passwords_dont_match'] = 'Passwords dont match!';
$lang['rules_not_checked'] = 'Rules are not confirmed!';
$lang['blog_preview'] = 'Blog preview';
$lang['recover_your_pass'] = 'Recover your password';
$lang['send_pass_link'] = 'Send me new password';
$lang['help_footer'] = 'Read the most frequently asked questions if you need further assistance, please contact us!';
$lang['help'] = 'HELP';
$lang['specifications'] = 'Specifications';
$lang['plans'] = 'Plans';
$lang['store'] = 'Store';
$lang['saved_clients'] = 'Clients';
$lang['saved_articles'] = 'Articles';
$lang['create_protocols'] = 'Create Protocols';
$lang['periodic_invoices'] = 'Periodic Invoices';
$lang['registered_by_user'] = 'This email address is registered by another user.';
$lang['usr_or_pass_invalid'] = 'Username or password is wrong!';
$lang['database_error'] = 'We have error now. Please contact us!';
$lang['choose_type_of_login'] = 'Choose type of login';
$lang['there_are_two_types'] = 'There are two types of login for this email and password!';
$lang['type_employee'] = 'Login as employee';
$lang['type_user'] = 'Login as user';
$lang['example_of_xml_import_file'] = 'Example of XML import file';
$lang['imports_feature'] = 'Import invoices';
$lang['universal_xml'] = 'Universal XML Import';
$lang['exports_feature'] = 'Export invoices';
$lang['export_in_xml'] = 'Export in XML';
$lang['xml_export_info'] = 'We also support export in XML (its same as Universal XML Import file) but with included items';
$lang['export_in_excel'] = 'Export in EXCEL';
$lang['excel_export_info'] = 'We also support export in XLS with invoice and client info. Exported columns: Invoice Number | Invoice Type | Client Name | Client Address | Client Bulstat/PIN | Client Vat Number | Client Accountable person | Date of issue | Date Tax Event | Invoice Amount | Discount | Tax Base | Vat Sum | Total | Currency | Payment Type | Payment status | Compiled | Sended | Received | Date of receive | Return reason | Date created | Vat Reason | Remarks | Maturity date';
$lang['create_and_send_inv_with'] = 'Create and send invoices with';
$lang['p_reason'] = 'Reason';
$lang['log_me_public_home'] = 'Login to my account';
$lang['use_it_online'] = 'Use it online';
$lang['there_is'] ='There is';
$lang['no_need'] = 'NO need';
$lang['to_down_noth'] = 'to download nothing. You can use it absolutley';
$lang['high_protect_serve'] = 'online and save your data to our high protected servers.';
$lang['have_support'] = 'You will have support';
$lang['every_day_and_hour']='everyday and hour';
$lang['make_it_easy'] ='Issue to 5 invoices every month for free!';
$lang['reg_for_free_use_for'] = 'Issue and send invoices the first month for free with the highest plan, then just for 50€ per year. Registration takes 1 minute';
$lang['issue_to_5'] = 'Issue to 5 invoices every month for free!';
$lang['security'] = 'Security and Encription';
================================================
FILE: application/language/english/titles_lang.php
================================================
<?php
$lang['title_home'] = 'Electronic invoices, E-mails';
$lang['description_home'] = 'Start issuing and sending electronic invoices';
$lang['title_login'] = 'Sign in and start issuing invoices';
$lang['description_login'] = 'Enter your email and password and sign in to your billing program';
$lang['title_register'] = 'Registration';
$lang['description_register'] = 'Register simply by entering your email and password';
$lang['title_forgotten'] = 'Restore your password';
$lang['description_forgotten'] = 'Change your forgotten password';
================================================
FILE: application/language/english/upload_lang.php
================================================
<?php
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
$lang['upload_file_partial'] = "The file was only partially uploaded.";
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceedes the maximum height or width.";
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
================================================
FILE: application/language/english/users_lang.php
================================================
<?php
$lang['change_firm'] = 'Change company';
$lang['manage_firms'] = 'Manage companies';
$lang['search_header_u'] = 'Search';
$lang['menu_create_invoice'] = 'Create invoice';
$lang['menu_list_invoices'] = 'My Invoices';
$lang['dont_have_firms'] = ' You dont have companies';
$lang['no_firm_data'] = 'Enter your company details';
$lang['firm_name'] = 'Company name:';
$lang['firm_bulstat'] = 'Company bulstat:';
$lang['firm_reg_address'] = 'Registration adress:';
$lang['firm_city'] = 'Company city:';
$lang['firm_mol'] = 'Company accountable person:';
$lang['save_firm_details'] = 'Save details';
$lang['empty_firm_name'] = 'Empty company name!';
$lang['empty_firm_bulstat'] = 'Empty company bulstat!';
$lang['empty_firm_reg_address'] = 'Empty company registration address!';
$lang['empty_firm_city'] = 'Empty company city!';
$lang['empty_firm_mol'] = 'Empty company accountable person!';
$lang['bulstat_is_taken'] = 'Company bulstat is allready registered!';
$lang['menu_home'] = 'Home';
$lang['selected_home'] = 'Home';
$lang['selected_manage_firms'] = 'Manage firms';
$lang['add_new_company'] = 'Add company';
$lang['list_firms'] = 'List of my firms';
$lang['firm_default'] = 'Default';
$lang['make_firm_default'] = 'Make default';
$lang['delete_firm_confirm'] = 'Are you sure want to delete this company? This will remove anything that is created for her!';
$lang['default_firm_confirm'] = 'Are you sure want to make this company default?';
$lang['menu_list_clients'] = 'My Clients';
$lang['company_deleted'] = 'The company is deleted!';
$lang['company_added'] = 'Company added!';
$lang['firms_translations'] = 'Translations';
$lang['trans_name'] = 'Translation name(for internally usage):';
$lang['firm_image'] = 'Logo';
$lang['no_image'] = 'No image';
$lang['add_new_translation'] = 'Add new translation';
$lang['save_changes'] = 'Save changes';
$lang['save_translation'] = 'Save translation';
$lang['translation_updated'] = 'Translation is successful updated!';
$lang['upload_img_error'] = 'Upload image error - ';
$lang['add_translation'] = 'Add translation';
$lang['new_translation_added'] = 'New translation is added!';
$lang['translation_is_default'] = 'default';
$lang['make_translation_default'] = 'Make default';
$lang['default_translate_confirm'] = 'Are you sure want to make this translation to default?';
$lang['delete_translation'] = 'Delete translation';
$lang['translation_deleted'] = 'Translation is deleted successful!';
$lang['translation_delete_confirm'] = 'Are you sure want to delete this translation?';
$lang['error_delete_translation'] = 'Error delete translation!';
$lang['invoice'] = 'Invoice';
$lang['create_inv_type'] = 'Type:';
$lang['create_inv_proforma'] = 'Pro-forma';
$lang['create_inv_debit'] = 'Debit note';
$lang['create_inv_credit'] = 'Credit note';
$lang['create_inv_invoice'] = 'Invoice';
$lang['or'] = 'or';
$lang['open_invoices'] = 'Open Invoices';
$lang['create_inv_save'] = 'Create Invoice';
$lang['create_invoice'] = 'Create Invoice';
$lang['create_inv_client'] = 'Client:';
$lang['create_inv_choose'] = 'Select from list';
$lang['create_inv_bulstat'] = 'Bulstat:';
$lang['create_inv_mol'] = 'Accountable person:';
$lang['create_inv_city'] = 'City:';
$lang['create_inv_address'] = 'Address:';
$lang['create_inv_country'] = 'Country:';
$lang['create_inv_recipient'] = 'Beneficiary:';
$lang['create_inv_inv_num'] = 'Invoice';
$lang['create_inv_date_create'] = 'Invoice date:';
$lang['create_inv_date_tax'] = 'A date of a tax event:';
$lang['create_inv_i_maturity_date'] = 'Indicate a maturity date';
$lang['create_inv_maturity_date'] = 'Maturity date:';
$lang['create_inv_cash_acc'] = 'Cash accounting';
$lang['create_inv_item'] = 'Item';
$lang['create_inv_quantity'] = 'Quantity';
$lang['create_inv_price'] = 'Price';
$lang['create_inv_total'] = 'Total';
$lang['sure_want_to_del_item'] = 'Are you sure want to delete this item?';
$lang['add_new_item_to_table'] = 'Add Item';
$lang['create_inv_remarks'] = 'Remarks';
$lang['visibile_for_client'] = 'Visible for client';
$lang['create_inv_payment_type'] = 'Payment method';
$lang['create_inv_invoice_amount'] = 'Invoice amount';
$lang['create_inv_discount'] = 'Discount';
$lang['create_inv_tax_base'] = 'Tax base';
$lang['create_inv_vat'] = 'VAT:';
$lang['create_inv_total'] = 'Total:';
$lang['create_inv_no_vat_mark'] = 'No Vat';
$lang['create_inv_reason_no_vat'] = 'Reason for non-charging VAT:';
$lang['select_curreny'] = 'Selected currency:';
$lang['settings_invoices'] = 'Settings Invoices';
$lang['menu_list_items'] = 'My Items';
$lang['default_currency'] = 'Choose default currency for invoices';
$lang['default_currency_null'] = 'No default currency selected';
$lang['clear_def_currency'] = 'Clear';
$lang['confirm_del_def_currency'] = 'Are you sure want to delete default currency for company - ';
$lang['select_def_currency'] = 'Select default currency';
$lang['selected_new_def'] = 'Selected successful!';
$lang['not_selected_new_def'] = 'Selection problem! Please contact support!';
$lang['no_currency_selected'] = 'Default EUR currency selected';
$lang['my_currencies'] = 'My currencies';
$lang['currency_name'] = 'Name';
$lang['currency_value'] = 'Value';
$lang['add_new_currency'] = 'Add new';
$lang['curr_name_for_int_use'] = 'For internal use';
$lang['no_my_currencies_added'] = 'You dont have added currencies';
$lang['conirm_del_my_currency'] = 'Are you sure want to delete your currency?';
$lang['create_new_quantity'] = 'Create new..';
$lang['add_the_quantity'] = 'Add quantity type';
$lang['type_quantity_type'] = 'Set your quantity type here';
$lang['add_new_quantity_type'] = 'Add new quantity type';
$lang['settings'] = 'Settings';
$lang['my_quantity_types'] = 'My quantity types';
$lang['quantity_name'] = 'Name';
$lang['no_my_quantity_types'] = 'You dont have yours quantity types';
$lang['add_new_q_type'] = 'Add new';
$lang['conirm_del_my_quantity_type'] = 'Are you sure want to delete your quantity type?';
$lang['create_inv_save_draft'] = 'Save draft';
$lang['create_new_pay_method'] = 'Create new method..';
$lang['add_new_payment_method'] = 'Add new payment method';
$lang['type_payment_method'] = 'Type new payment method';
$lang['add_the_pay_method'] = 'Add payment method';
$lang['my_payment_methods'] = 'My payment methods';
$lang['conirm_del_my_pay_method'] = 'Are you sure want to delete this payment method?';
$lang['no_my_pay_methods'] = 'You dont have custom payment methods';
$lang['my_no_vat_reasons'] = 'My no vat reasons';
$lang['vat_reason'] = 'Vat reason';
$lang['no_my_no_vat_reasons'] = 'You dont have saved vat reasons';
$lang['add_new_vat_reas'] = 'Add new reason';
$lang['add_new_p_method'] = 'Add new';
$lang['confirm_del_no_vat_reason'] = 'Are you sure want to delete this no vat reason?';
$lang['create_inv_individual'] = 'Individual';
$lang['create_inv_ident_num'] = 'Identification number:';
$lang['create_inv_client_vat_registered'] = 'VAT registration';
$lang['create_inv_vat_number'] = 'VAT Number:';
$lang['error_load_options'] = 'Error with your account! Please contact support!';
$lang['how_do_you_round_values'] = 'How do you want to round out the totals on your invoices';
$lang['update_round_totals'] = 'Update';
$lang['to_inv_num'] = 'To invoice number';
$lang['to_inv_date'] = 'from date';
$lang['add_new_inv_translation'] = 'Add new invoice translation';
$lang['invoice_settings'] = 'Invoice settings';
$lang['choose_translation'] = 'Choose translation';
$lang['what_mean_new_translate'] = 'What mean to add new translation?';
$lang['what_mean_new_translate_explain'] = 'You can add you translation for invoices. When you create new invoice it will be translated to your own language.You can always change the invoice translation using the edit form';
$lang['your_translation'] = 'your translation';
$lang['lang_name_internal_use'] = 'Language name(for internal use)';
$lang['trans_language_name'] = 'Language name';
$lang['trans_recipient'] = 'Recipient';
$lang['trans_bulstat'] = 'Bulstat';
$lang['trans_mol'] = 'Accountable person';
$lang['trans_sender'] = 'Sender';
$lang['trans_original'] = 'Original';
$lang['trans_number'] = 'Number';
$lang['trans_date_of_issue'] = 'Date of issue';
$lang['trans_date_tax_event'] = 'Date of tax event';
$lang['trans_to_an_invoice'] = 'To an invoice';
$lang['trans_from_date'] = 'From date';
$lang['trans_invoice'] = 'Invoice';
$lang['trans_debit_note'] = 'Debit Note';
$lang['trans_credit_note'] = 'Credit Note';
$lang['trans_remarks'] = 'Remarks';
$lang['trans_pro_forma'] = 'Pro-forma';
$lang['trans_products_name'] = 'Item';
$lang['trans_quantity'] = 'Quantity';
$lang['trans_single_price'] = 'Single price';
$lang['trans_value'] = 'Final value of item';
$lang['trans_discount'] = 'Discount';
$lang['trans_payment_type'] = 'Payment Type';
$lang['trans_amount'] = 'Amount';
$lang['trans_tax_base'] = 'Tax base';
$lang['trans_percentage_vat'] = 'Percentage Vat';
$lang['trans_vat_charget'] = 'Vat charget';
$lang['trans_everything'] = 'Everything';
$lang['trans_reason_non_var'] = 'Reason for non charging vat';
$lang['trans_compiled'] = 'Compiled';
$lang['trans_signature'] = 'Signature';
$lang['trans_schiffer'] = 'Schiffer';
$lang['trans_page'] = 'Page';
$lang['trans_i_accept'] = 'I accept';
$lang['trans_i_refuse'] = 'I refuse';
$lang['trans_receive_from'] = 'You receive invoice from "firm name"';
$lang['you_receved_tr'] = 'You received';
$lang['from_tr'] = 'from';
$lang['save_new_translate'] = 'Save new translation';
$lang['default_inv_lang_en'] = 'English';
$lang['default_inv_lang_bg'] = 'Bulgarian';
$lang['default_inv_lang_fr'] = 'France';
$lang['err_create_to_inv_num'] = 'Please enter to invoice number field!';
$lang['err_create_to_inv_date'] = 'Please enter to invoice date field!';
$lang['err_create_client_name'] = 'Please enter client name field!';
$lang['err_create_client_addr'] = 'Please enter client address field!';
$lang['err_create_inv_num'] = 'Please enter invoice number field!';
$lang['err_create_date_create'] = 'Please enter invoice date field!';
$lang['err_create_tax_event'] = 'Please enter tax event field!';
$lang['err_create_inv_num_is_taken'] = 'Invoice number is taken! Choose another one!';
$lang['err_create_no_item_name'] = 'Please fill all item names!';
$lang['err_create_no_item_qua'] = 'Please fill all item quantities!';
$lang['choose_client'] = 'Select client from list';
$lang['choose_item'] = 'Select item from list';
$lang['no_clients_selector'] = 'No clients';
$lang['no_items_selector'] = 'No items';
$lang['invoices'] = 'Invoices';
$lang['list_inv_num'] = 'Number';
$lang['list_inv_date'] = 'Date';
$lang['list_inv_client'] = 'Client';
$lang['list_inv_type'] = 'Type';
$lang['list_inv_status'] = 'Status';
$lang['list_inv_sum'] = 'Value';
$lang['create_new_inv'] = 'Create new invoice';
$lang['list_inv_manage'] = 'Options';
$lang['list_inv_payment_status'] = 'Payments';
$lang['no_invoices_yet'] = 'You dont have invoices.';
$lang['type_debit'] = 'Debit note';
$lang['type_tax_inv'] = 'Invoice';
$lang['type_prof'] = 'Pro-forma';
$lang['type_credit'] = 'Credit note';
$lang['status_issued'] = 'Issued';
$lang['status_draft'] = 'Draft';
$lang['status_refused'] = 'Refused';
$lang['status_accepted'] = 'Accepted';
$lang['status_sended'] = 'Sended';
$lang['status_canceled'] = 'Canceled';
$lang['update_inv_save'] = 'Update';
$lang['show_translation_on_edit'] = 'Show translations';
$lang['show_translation_firm_on_edit'] = 'Show firms translations';
$lang['show_translation_now_use'] = '(now use %transname% translation)';
$lang['show_translation_firm_now_use'] = '(now use firm name - %transname%)';
$lang['no_vat_reason_selected'] = 'Select from list';
$lang['stop_inv_calculator'] = 'Stop invoice calculator';
$lang['stop_movem_calculator'] = 'Stop movement calculator';
$lang['no_clients_yet'] = 'You dont have clients';
$lang['list_cli_name'] = 'Name';
$lang['list_cli_bulstat'] = 'Bulstat';
$lang['list_cli_manage'] = 'Manage';
$lang['clients'] = 'Clients';
$lang['add_new_client'] = 'Add Client';
$lang['add_client'] = 'Add Client';
$lang['save_client'] = 'Save client';
$lang['cancel_save_client'] = 'Cancel';
$lang['confirm_delete_client'] = 'Are you sure want to delete this client?';
$lang['list_item_name'] = 'Name';
$lang['list_cli_price'] = 'Price';
$lang['list_cli_qu_type'] = 'Quantity type';
$lang['list_cli_manage'] = 'Manage';
$lang['confirm_delete_item'] = 'Are you sure want to delete this item?';
$lang['no_items_yet'] = 'Dont have items';
$lang['add_new_item'] = 'Add item';
$lang['add_item'] = 'Add item';
$lang['add_item_name'] = 'Name';
$lang['add_item_qua_type'] = 'Quantity type';
$lang['add_item_price'] = 'Price';
$lang['add_item_currency'] = 'Currency';
$lang['cancel_save_item'] = 'Cancel';
$lang['save_item'] = 'Save item';
$lang['no_currency_selected_item'] = 'No currency selected';
$lang['items'] = 'Items';
$lang['err_create_item_name'] = 'Item name is empty!';
$lang['no_employees_yet'] = 'No employees';
$lang['add_new_employee'] = 'Add employee';
$lang['add_employee_name'] = 'Name';
$lang['add_employee_email'] = 'Email';
$lang['add_employee_phone'] = 'Phone';
$lang['add_employee_pass'] = 'Password';
$lang['cancel_save_employee'] = 'Cancel';
$lang['save_employee'] = 'Save employee';
$lang['list_empl_name'] = 'Name';
$lang['list_empl_email'] = 'Email';
$lang['list_empl_phone'] = 'Phone';
$lang['list_empl_manage'] = 'Manage';
$lang['confirm_delete_employee'] = 'Are you sure want to delete this employee?';
$lang['if_dont_change_emp_pass'] = 'If dont want to change employee password, leave it blank';
$lang['employee_email_taken'] = 'You allready have employee with this email';
$lang['no_permissions'] = 'You dont have permission to use this feature!';
$lang['perm_add_invoice'] = 'Add invoices';
$lang['perm_edit_invoice'] = 'Edit invoices';
$lang['perm_delete_invoice'] = 'Delete invoices';
$lang['perm_change_inv_status'] = 'Change invoices status';
$lang['perm_add_clients'] = 'Add clients';
$lang['perm_edit_clients'] = 'Edit clients';
$lang['perm_delete_clients'] = 'Delete clients';
$lang['perm_add_items'] = 'Add items';
$lang['perm_edit_items'] = 'Edit items';
$lang['perm_delete_items'] = 'Delete items';
$lang['perm_can_manage_rights'] = 'Manage rights of other employees';
$lang['perm_add_employees'] = 'Can add new employees';
$lang['perm_can_manage_firms'] = 'Can change settings of firms';
$lang['success_save_new_perms'] = 'New permissions are saved!';
$lang['perm_delete_employees'] = 'Can delete employees';
$lang['perm_edit_employees'] = 'Can edit employees';
$lang['perm_view_plans_page'] = 'Can open plans page';
$lang['usr_admin_menu'] = 'Admin profile';
$lang['save_user_data'] = 'Save user';
$lang['cancel_save_user'] = 'Cancel';
$lang['if_dont_change_usr_pass'] = 'If dont want to change user password, leave it blanк';
$lang['this_email_is_used'] = 'This email is allready used!';
$lang['success_update_user_adm'] = 'User is update successful!';
$lang['problem_update_user_adm_em'] = 'This email address is taken from your employee or another account!';
$lang['can_access_firms'] = 'Can access firms:';
$lang['you_cant_view_any_firms'] = 'Sorry but you dont have access to any firms!';
$lang['employee_add_success'] = 'Employee successful added!';
$lang['no_template_file'] = 'No template file finded! Please contact support!';
$lang['composed_from'] = 'Composed from:';
$lang['schiffer_replace'] = 'Schiffer (replaces signature)';
$lang['download_print_copy'] = 'Download/Print Copy';
$lang['download_print_original'] = 'Download/Print Original';
$lang['original_txt'] = 'Original';
$lang['copy_txt'] = 'Copy';
$lang['confirm_delete_invoice'] = 'Are you sure want to delete this invoice? This will be permanently!';
$lang['delete'] = 'Delete';
$lang['from_date'] = 'From date:';
$lang['to_date'] = 'To date:';
$lang['show_statistic'] = 'Show statistics';
$lang['reports'] = 'Reports';
$lang['menu_list_reports'] = 'Reports';
$lang['num_invoices_stat'] = 'Number of issued invoices';
$lang['all_the_time'] = 'All the time';
$lang['num_created'] = 'Num created';
$lang['issued'] = 'Issued';
$lang['num_invoices_by_month_stat'] = 'Number of issued invoices by month';
$lang['no_reports_yet'] = 'There are no issued invoices for selected time';
$lang['no_reports_yet_all_time'] = 'There are no issued invoices to the moment';
$lang['amount_invoices_by_month_stat'] = 'Amount %currency% of issued invoices by month';
$lang['pages_pagination_num'] = 'Num rows in pagination pages';
$lang['payment_status_paid'] = 'Paid';
$lang['payment_status_unpaid'] = 'Unpaid';
$lang['payment_status_partly_paid'] = 'Partly paid';
$lang['top_search_no_results'] = 'No results found!';
$lang['show_drafts_report'] = 'Show drafts';
$lang['to_canceled_stat'] = 'Cancel';
$lang['remove_canceled_stat'] = 'Remove status cancelled';
$lang['top_clients_stat'] = 'Top 10 clients - sum of invoices (amount in %currency%)';
$lang['sum_of_invoices_in_stat'] = 'Sum of issued invoices';
$lang['menu_list_import_export'] = 'Import/Export';
$lang['no_invoices_result_export'] = 'There are no invoices';
$lang['selected_invalid_exporter'] = 'You select invalid exporter!';
$lang['export'] = 'Export';
$lang['import'] = 'Import';
$lang['not_selected_import_file'] = 'Please select file to import';
$lang['try_to_import_wrong_file_format'] = 'The file you try to import is with wrong format';
$lang['no_invoice_note_in_xml_import'] = 'No invoice note in xml file. Please sure that this xml is with valid structure.';
$lang['imp_invalid_inv_type'] = 'Invalid invoice type';
$lang['imp_inv_number_taken'] = 'Invoice number is taken';
$lang['imp_wrong_date_created'] = 'Wrong date created timestamp';
$lang['imp_wrong_date_tax_event'] = 'Wrong date of tax event';
$lang['imp_wrong_date_maturity'] = 'Wrong maturity date';
$lang['imp_to_inv_date_wrong'] = 'To invoice date invalid';
$lang['imp_no_client_name'] = 'Client name is empty';
$lang['imp_no_client_addr'] = 'Client address is empty';
$lang['imp_no_item_name'] = 'Item %rowNum% name is empty';
$lang['imp_no_item_quantity'] = 'Item %rowNum% quantity is empty';
$lang['imp_no_items'] = 'No items found';
$lang['inv_num_row_in_file'] = 'Num row of invoice in file';
$lang['inv_number'] = 'Invoice Number';
$lang['inv_type'] = 'Invoice Type';
$lang['inv_errors'] = 'Errors';
$lang['import_results'] = 'Results of import';
$lang['inv_action_history'] = 'Status action history';
$lang['search_inv_num'] = 'Invoice num:';
$lang['search_client'] = 'Client';
$lang['search_item'] = 'Item';
$lang['search_amount_from'] = 'Amount from';
$lang['search_to'] = 'to';
$lang['search_date_from'] = 'Date create from';
$lang['search_payment_type'] = 'Payment type:';
$lang['search_inv_type'] = 'Type';
$lang['search_inv_payments'] = 'Payments';
$lang['search_paied'] = 'Paid';
$lang['search_unpaied'] = 'Unpaid';
$lang['search_inv_status'] = 'Status';
$lang['search_issued'] = 'Issued';
$lang['search_sended'] = 'Sended';
$lang['search_refused'] = 'Refused';
$lang['search_accepted'] = 'Accepted';
$lang['search_canceled'] = 'Canceled';
$lang['search_draft'] = 'Draft';
$lang['search_client_name'] = 'Client name';
$lang['search_client_bulstat'] = 'Client bulstat';
$lang['search_item_name'] = 'Item name';
$lang['clear_search'] = 'Clear search';
$lang['menu_list_store'] = 'Store';
$lang['store_settings'] = 'Store settings';
$lang['my_added_stores'] = 'My stores';
$lang['store_name'] = 'Store name';
$lang['no_stores_added'] = 'No stores added';
$lang['add_new_store'] = 'Add store';
$lang['empty_store_name'] = 'Empty store name';
$lang['store_name_taken'] = 'Store name is taken';
$lang['confirm_delete_store'] = 'Are you sure want to delete this store?';
$lang['add_store_movement'] = 'Store order';
$lang['open_store_movements'] = 'Open store movements';
$lang['create_store_movement'] = 'Create movement';
$lang['movement_type_in'] = 'In';
$lang['movement_type_out'] = 'Out';
$lang['movement_type_move'] = 'Move';
$lang['movement_type_revision'] = 'Revision';
$lang['create_movement_type'] = 'Movement type:';
$lang['create_movement_id'] = 'Movement';
$lang['create_movement_date_create'] = 'Date created';
$lang['create_movement_amount'] = 'Movement amount';
$lang['choose_movem_translation'] = 'Choose Store order translation';
$lang['how_do_you_round_values_in_move'] = 'To which character do you want to round up the values in the movements';
$lang['err_create_movem_num'] = 'Movement number is empty';
$lang['err_create_movem_num_is_taken'] = 'Movement number si taken';
$lang['err_movem_create_date_create'] = 'Please enter date create';
$lang['movement_added'] = 'Movement is added';
$lang['movem_from_store'] = 'From store:';
$lang['movem_to_store'] = 'To store:';
$lang['create_movem_from_client'] = 'From client:';
$lang['create_movem_to_client'] = 'To client:';
$lang['item_is_not_in_store'] = 'Item %item% is not in this store';
$lang['item_no_enought_quantity'] = 'Item %item% dont have enought quantity in store';
$lang['allow_negative_qua_in_store'] = 'Allow negative quantities in store';
$lang['trans_bill_of_goods'] = 'Store order';
$lang['trans_date'] = 'Date';
$lang['trans_address'] = 'Address';
$lang['trans_betrayed'] = 'Betrayed';
$lang['trans_accepted'] = 'Accepted';
$lang['trans_vat'] = 'Vat';
$lang['trans_vat_amount'] = 'Vat amount';
$lang['trans_no_vat_reason'] = 'No vat reason';
$lang['trans_product_name'] = 'Product name';
$lang['trans_product_quantity'] = 'Product quantity';
$lang['trans_product_quantity_type'] = 'Product quantity type';
$lang['trans_product_amount'] = 'Product amount';
$lang['trans_payment_method'] = 'Payment method';
$lang['no_movements_yet'] = 'No movements added';
$lang['list_movement'] = 'Movement';
$lang['list_bill_of_lading'] = 'Store order';
$lang['list_movem_type'] = 'Type';
$lang['list_movem_status'] = 'Status';
$lang['list_movem_from'] = 'From';
$lang['list_movem_to'] = 'To';
$lang['movem_preview'] = 'Preview';
$lang['movem_type_in'] = 'In';
$lang['movem_type_out'] = 'Out';
$lang['movem_type_move'] = 'Move';
$lang['movem_type_revision'] = 'Revision';
$lang['movem_stat_confirmed'] = 'Confirmed';
$lang['movem_stat_cancelled'] = 'Cancelled';
$lang['search_by_store'] = 'Store:';
$lang['search_store_client'] = 'Client:';
$lang['all_stores'] = 'All stores';
$lang['preview_movem_num'] = 'Movement number:';
$lang['preview_movem_type'] = 'Movement type:';
$lang['preview_movem_currency'] = 'Movement currency:';
$lang['preview_movem_status'] = 'Movement status:';
$lang['preview_movem_from'] = 'From:';
$lang['preview_movem_to'] = 'To:';
$lang['movement_item_name'] = 'Item name';
$lang['movement_item_quantity'] = 'Quantity';
$lang['movement_item_before_revision'] = 'Before revision';
$lang['movement_item_after_revision'] = 'After revision';
$lang['movement_item_difference'] = 'Difference';
$lang['bill_of_lading'] = 'Store order';
$lang['trans_city'] = 'City';
$lang['momvem_betrayed'] = 'Betrayed';
$lang['momvem_accepted'] = 'Accepted';
$lang['store_stocks'] = 'Stocks';
$lang['preview_movem_betrayed'] = 'Betrayed:';
$lang['preview_movem_accepted'] = 'Accepted:';
$lang['no_stocks_yet'] = 'No stocks';
$lang['back_to_movements'] = 'Back to movements';
$lang['countInvoices'] = 'Count invoices:';
$lang['with_sum_of'] = 'with total amount of';
$lang['report_show_paid'] = 'Show only paid invoices';
$lang['report_show_unpaid'] = 'Show only unpaid invoices';
$lang['report_show_partly_paid'] = 'Show only partly paid invoices';
$lang['report_show_all'] = 'Show only all (paid, unpaid) invoices';
$lang['menu_list_warranties'] = 'Warranties';
$lang['no_warranties_yet'] = 'No warranties added';
$lang['add_warranty'] = 'Add warranty';
$lang['add_war_translation'] = 'Add warranty language';
$lang['create_warranty_id'] = 'Warranty';
$lang['create_warranty_from_date'] = 'Valid from date:';
$lang['create_war_item'] = 'Item';
$lang['create_war_months'] = 'Months';
$lang['create_war_serial_num'] = 'Serial Number';
$lang['open_warranties'] = 'open warranties list';
$lang['create_warranty'] = 'Create warranty';
$lang['trans_warranty_card'] = 'Warranty Card';
$lang['trans_date_valid'] = 'Date valid';
$lang['trans_product_months'] = 'Months';
$lang['trans_product_valid_to'] = 'Valid to';
$lang['trans_product_serial_num'] = 'Serial number';
$lang['trans_received'] = 'Received';
$lang['trans_warranty_conditions'] = 'Warranty conditions';
$lang['err_create_war_num'] = 'Invalid warranty number';
$lang['err_create_war_num_is_taken'] = 'Warranty number is taken';
$lang['err_create_war_no_item_month'] = 'No item month';
$lang['warranty_added'] = 'Warranty added';
$lang['delete_warranties'] = 'Delete';
$lang['list_war_number'] = 'Number';
$lang['list_war_to_inv'] = 'To invoice';
$lang['list_war_valid_from'] = 'Valid from';
$lang['list_war_client'] = 'Client';
$lang['list_war_action'] = 'Actions';
$lang['create_warranty_to_inv'] = 'To invoice number:';
$lang['edit_warranty'] = 'Edit';
$lang['warranty_updated'] = 'Warranty updated';
$lang['warranty_received'] = 'Received';
$lang['warranty_compiled'] = 'Compiled';
$lang['warranty_conditions'] = 'Conditions';
$lang['warranty_settings'] = 'Warranty settings';
$lang['add_new_condition'] = 'Add condition';
$lang['warranty_conditions'] = 'Warranty conditions';
$lang['no_conditions_added'] = 'No conditions added';
$lang['condition_title'] = 'Title (for internal use)';
$lang['condition_description'] = 'The condition for client';
$lang['confirm_delete_condition'] = 'Are you sure want to delete this condition?';
$lang['war_condit_preview_descr'] = 'Preview description';
$lang['select_saved_condition'] = 'Select saved condition';
$lang['list_war_events'] = 'Events';
$lang['war_events'] = 'Events';
$lang['add_new_war_event'] = 'Add event';
$lang['date_war_event_manupulation'] = 'Event date';
$lang['war_event_item'] = 'Item';
$lang['repair'] = 'Repair';
$lang['war_event_type'] = 'Type';
$lang['war_event_description'] = 'Description';
$lang['save_war_event'] = 'Save';
$lang['replacement'] = 'Replacement';
$lang['no_war_events_yet'] = 'No warranty events';
$lang['war_ev_item'] = 'Item:';
$lang['war_ev_type'] = 'Type:';
$lang['war_ev_date'] = 'Date:';
$lang['war_ev_descr'] = 'Description:';
$lang['menu_list_protocols'] = 'Protocols';
$lang['perm_add_movement'] = 'Can add movements';
$lang['perm_view_movement_page'] = 'Can view movements';
$lang['perm_view_store_stocks'] = 'Can view store stocks page';
$lang['perm_view_warranty_page'] = 'Can view warranty page';
$lang['perm_add_warranty'] = 'Can add warranties';
$lang['perm_view_warranty_events'] = 'Can view warranty events';
$lang['perm_add_warranty_events'] = 'Can add warranty event';
$lang['perm_view_protocols_page'] = 'Can view protocols page';
$lang['no_protocols_yet'] = 'No protocols added';
$lang['protocols_settings'] = 'Protocols settings';
$lang['add_protocol'] = 'Add protocols';
$lang['delete_protocols'] = 'Delete';
$lang['perm_add_protocol'] = 'Can add protocols';
$lang['create_protocol_acceptable'] = 'Acceptable';
$lang['create_protocol_transmitter'] = 'Transmitter';
$lang['create_protocol_type'] = 'Type';
$lang['create_protocol_from_date'] = 'From date:';
$lang['protocol_number'] = 'Protocol';
$lang['create_protocol'] = 'Create protocol';
$lang['open_protocols'] = 'Open protocols';
$lang['my_added_provider_transmits'] = 'Provider transmit texts';
$lang['no_provider_trans_txts_added'] = 'No provider transmit texts added';
$lang['provider_trans_title'] = 'Title (for internal use)';
$lang['provider_trans_description'] = 'Description for users';
$lang['add_new_provider_desc'] = 'Add';
$lang['confirm_delete_provider_trasmit'] = 'Are you sure want to delete provider transmit text?';
$lang['no_contr_txts_added'] = 'No contract texts added';
$lang['select_saved_contracts'] = 'Select from saved contracts';
$lang['protocol_contracts'] = 'Contract';
$lang['provider_transmit'] = 'Provider transmit';
$lang['select_saved_provider_trans'] = 'Select from saved texts';
$lang['add_protocol_translation'] = 'Add protocol language';
$lang['trans_protocol_number'] = 'Number';
$lang['trans_supplier'] = 'Supplier';
$lang['trans_product_final_price'] = 'Final price';
$lang['trans_final_amount'] = 'Final amount';
$lang['err_create_prot_num'] = 'Empty protocol number';
$lang['err_create_prot_num_is_taken'] = 'This protocol number is taken';
$lang['err_create_prot_no_item_qa'] = 'Empty quantity';
$lang['protocol_added'] = 'Protocol is added';
$lang['protocol_updated'] = 'Protocol is updated';
$lang['protocol_to_inv'] = 'To invoice';
$lang['protocol_from_date'] = 'From date';
$lang['protocol_client'] = 'Client';
$lang['protocols_action'] = 'Action';
$lang['create_protocol_amount'] = 'Amount';
$lang['trans_to_invoice'] = 'To invoice';
$lang['trans_transmission_protocol'] = 'Transmission protocol';
$lang['language'] = 'Language';
$lang['show_logo_in_inv'] = 'Show logo in invoices';
$lang['remove_firm_image'] = 'Remove logo';
$lang['firm_vat_number'] = 'Vat Number';
$lang['firm_is_vat_registered'] = 'Vat Registration';
$lang['firm_details_changed'] = 'Firm details are changed';
$lang['trans_vat_number'] = 'Vat Number';
$lang['partly_paid'] = 'Partly paid';
$lang['search_partly_paid'] = 'Partly paid';
$lang['logout'] = 'Logout';
$lang['home'] = 'Home';
$lang['warranties'] = 'Warranties';
$lang['protocols'] = 'Protocols';
$lang['import_export'] = 'Import/Export';
$lang['explain_inv_translation'] = 'Add/select a translation of the invoices you issue in your language';
$lang['explain_firm_translation'] = 'Select a translation of your business data';
$lang['search'] = 'Search';
$lang['explain_movem_translation'] = 'Add/select a translation of the Store order you issue in your language';
$lang['explain_protocol_translation'] = 'Add/select a translation of protocol you issue in your language';
$lang['explain_war_translation'] = 'Add/select a translation of warranty you issue in your language';
$lang['bulstat'] = 'Bulstat:';
$lang['ident_num'] = 'Ident Number:';
$lang['amount'] = 'Amount:';
$lang['employees'] = 'Employees';
$lang['global'] = 'Global settings';
$lang['warranty'] = 'Warranty';
$lang['add_employees'] = 'Add employee';
$lang['rights'] = 'Rights';
$lang['save'] = 'Save';
$lang['my_added_contracts'] = 'Contract texts';
$lang['edit_admin'] = 'administrator edit';
$lang['preview_client'] = 'Client preview';
$lang['edit'] = 'Edit';
$lang['preview_item'] = 'Item preview';
$lang['add_movement'] = 'Add movement';
$lang['stocks'] = 'Stocks';
$lang['movement_preview'] = 'Movement preview';
$lang['warranty_events'] = 'Warranty events';
$lang['cancel'] = 'Cancel';
$lang['add_warranty_event'] = 'Add warranty event';
$lang['edit_firm_info'] = 'Firm edit';
$lang['documents'] = 'Invoices';
$lang['companies'] = 'Companies';
$lang['show_main_menu'] = 'Show menu';
$lang['plan_basic'] = 'Basic';
$lang['plan_advanced'] = 'Advanced';
$lang['plan_pro'] = 'Pro';
$lang['plan_custom'] = 'Custom';
$lang['plans_most'] = 'Most';
$lang['plans_popular'] = 'Popular';
$lang['plans_month'] = 'month';
$lang['plans_choose'] = 'Choose';
$lang['plans_num_inv'] = 'Invoices';
$lang['plans_num_firms'] = 'Companies';
$lang['plans_one_m_bonus'] = '+1 month BONUS';
$lang['plan_period'] = 'Period';
$lang['plans_period'] = 'Plans period';
$lang['confirm_plan_requiest'] = 'Confirm requiest';
$lang['plan_period'] = 'Period';
$lang['plan_payment_type'] = 'Payment method';
$lang['plan_payment_bank'] = 'Bank';
$lang['plan_payment_paypal'] = 'PayPal';
$lang['plan_payment_sms'] = 'SMS';
$lang['plan_payment_easypay'] = 'EasyPay';
$lang['plan_period_month'] = 'Month';
$lang['plan_period_months'] = 'Months';
$lang['plan_period_year'] = 'Year';
$lang['my_plan_request'] = 'Plan request';
$lang['payment_awaiting'] = 'We are awaiting your payment';
$lang['plan_type'] = 'Plan type';
$lang['plan_date_generated'] = 'Date of payment request';
$lang['plan_req_num'] = 'Request number';
$lang['payment_details'] = 'Payment details';
$lang['info_box'] = 'Info!';
$lang['plan_will_started'] = 'Your plan will be activated as soon as we receive your payment and you will receive invoices to your email address';
$lang['cancel_pay_req'] = 'Cancel payment request';
$lang['confirm_cancel_req'] = 'Are you sure want to cancel this payment request?';
$lang['pay_det_name_of_rec'] = 'Name of recipient';
$lang['pay_det_iban'] = 'IBAN of recipient';
$lang['pay_det_bic'] = 'BIC of recipient';
$lang['pay_det_to_bank'] = 'To bank';
$lang['pay_det_sum'] = 'Amount';
$lang['dont_forget_req_num'] = 'Be sure to include the request number in the description';
$lang['plans_make_request'] = 'Make a request';
$lang['plan_send_us_req'] = 'What is the plan you want to use?';
$lang['send_plan_req'] = 'Send request';
$lang['plan_req_inv_per_mon'] = 'How many invoices do you want to issue per month';
$lang['plan_req_companies'] = 'How many businesses you will use';
$lang['when_we_see_plan_req'] = 'Once we review the plan you want, we will add it to the other plans page and you will be notified by email.';
$lang['plan_req_sended'] = 'Plan request sent. Expect to notify you by email within the day.';
$lang['already_have_req'] = 'You already have request for individual plan with %num_inv% invoices and %companies% companies. If you send new request the old will be rejected.';
$lang['plans_make_new_request'] = 'Make a new request';
$lang
gitextract_tlss02lk/
├── .github/
│ └── FUNDING.yml
├── .htaccess
├── README.md
├── application/
│ ├── .htaccess
│ ├── cache/
│ │ ├── .htaccess
│ │ └── index.html
│ ├── config/
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── memcached.php
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── profiler.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ └── user_agents.php
│ ├── controllers/
│ │ ├── Home.php
│ │ ├── Loader.php
│ │ ├── Registration.php
│ │ └── index.html
│ ├── core/
│ │ ├── ADMIN_Controller.php
│ │ ├── HEAD_Controller.php
│ │ ├── MY_Controller.php
│ │ ├── MY_Loader.php
│ │ ├── MY_Router.php
│ │ ├── USER_Controller.php
│ │ └── index.html
│ ├── helpers/
│ │ ├── except_letters_helper.php
│ │ ├── full_document_number_helper.php
│ │ ├── get_client_ip_address_helper.php
│ │ ├── geterror_helper.php
│ │ ├── index.html
│ │ ├── lang_url_helper.php
│ │ ├── pagination_helper.php
│ │ ├── thisyeardates_helper.php
│ │ └── uploader_helper.php
│ ├── hooks/
│ │ └── index.html
│ ├── index.html
│ ├── language/
│ │ ├── bulgarian/
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ └── all.js
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── public_lang.php
│ │ │ ├── titles_lang.php
│ │ │ ├── upload_lang.php
│ │ │ └── users_lang.php
│ │ ├── english/
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ └── all.js
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── public_lang.php
│ │ │ ├── titles_lang.php
│ │ │ ├── upload_lang.php
│ │ │ └── users_lang.php
│ │ ├── france/
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ └── all.js
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── public_lang.php
│ │ │ ├── titles_lang.php
│ │ │ ├── upload_lang.php
│ │ │ └── users_lang.php
│ │ └── index.html
│ ├── libraries/
│ │ ├── HtmlToPdf.php
│ │ ├── Language.php
│ │ ├── MailSend.php
│ │ ├── PHPExcel/
│ │ │ ├── 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/
│ │ │ │ │ ├── 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
│ │ │ │ ├── Calculation.php
│ │ │ │ ├── Cell/
│ │ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ │ ├── DataType.php
│ │ │ │ │ ├── DataValidation.php
│ │ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ │ ├── Hyperlink.php
│ │ │ │ │ └── IValueBinder.php
│ │ │ │ ├── Cell.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
│ │ │ │ ├── Chart.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/
│ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ └── Theme.php
│ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ ├── Excel5/
│ │ │ │ │ │ ├── Color/
│ │ │ │ │ │ │ ├── BIFF5.php
│ │ │ │ │ │ │ ├── BIFF8.php
│ │ │ │ │ │ │ └── BuiltIn.php
│ │ │ │ │ │ ├── Color.php
│ │ │ │ │ │ ├── ErrorCode.php
│ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ ├── MD5.php
│ │ │ │ │ │ ├── RC4.php
│ │ │ │ │ │ └── Style/
│ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ └── FillPattern.php
│ │ │ │ │ ├── Excel5.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Gnumeric.php
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── IReadFilter.php
│ │ │ │ │ ├── IReader.php
│ │ │ │ │ ├── OOCalc.php
│ │ │ │ │ └── SYLK.php
│ │ │ │ ├── ReferenceHelper.php
│ │ │ │ ├── RichText/
│ │ │ │ │ ├── ITextElement.php
│ │ │ │ │ ├── Run.php
│ │ │ │ │ └── TextElement.php
│ │ │ │ ├── RichText.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Shared/
│ │ │ │ │ ├── CodePage.php
│ │ │ │ │ ├── Date.php
│ │ │ │ │ ├── Drawing.php
│ │ │ │ │ ├── Escher/
│ │ │ │ │ │ ├── DgContainer/
│ │ │ │ │ │ │ ├── SpgrContainer/
│ │ │ │ │ │ │ │ └── SpContainer.php
│ │ │ │ │ │ │ └── SpgrContainer.php
│ │ │ │ │ │ ├── DgContainer.php
│ │ │ │ │ │ ├── DggContainer/
│ │ │ │ │ │ │ ├── BstoreContainer/
│ │ │ │ │ │ │ │ ├── BSE/
│ │ │ │ │ │ │ │ │ └── Blip.php
│ │ │ │ │ │ │ │ └── BSE.php
│ │ │ │ │ │ │ └── BstoreContainer.php
│ │ │ │ │ │ └── DggContainer.php
│ │ │ │ │ ├── Escher.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/
│ │ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ │ ├── PPS/
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ └── Root.php
│ │ │ │ │ │ └── PPS.php
│ │ │ │ │ ├── OLE.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/
│ │ │ │ │ ├── Alignment.php
│ │ │ │ │ ├── Border.php
│ │ │ │ │ ├── Borders.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Conditional.php
│ │ │ │ │ ├── Fill.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── NumberFormat.php
│ │ │ │ │ ├── Protection.php
│ │ │ │ │ └── Supervisor.php
│ │ │ │ ├── Style.php
│ │ │ │ ├── Worksheet/
│ │ │ │ │ ├── AutoFilter/
│ │ │ │ │ │ ├── Column/
│ │ │ │ │ │ │ └── Rule.php
│ │ │ │ │ │ └── Column.php
│ │ │ │ │ ├── AutoFilter.php
│ │ │ │ │ ├── BaseDrawing.php
│ │ │ │ │ ├── CellIterator.php
│ │ │ │ │ ├── Column.php
│ │ │ │ │ ├── ColumnCellIterator.php
│ │ │ │ │ ├── ColumnDimension.php
│ │ │ │ │ ├── ColumnIterator.php
│ │ │ │ │ ├── Dimension.php
│ │ │ │ │ ├── Drawing/
│ │ │ │ │ │ └── Shadow.php
│ │ │ │ │ ├── Drawing.php
│ │ │ │ │ ├── HeaderFooter.php
│ │ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ │ ├── MemoryDrawing.php
│ │ │ │ │ ├── PageMargins.php
│ │ │ │ │ ├── PageSetup.php
│ │ │ │ │ ├── Protection.php
│ │ │ │ │ ├── Row.php
│ │ │ │ │ ├── RowCellIterator.php
│ │ │ │ │ ├── RowDimension.php
│ │ │ │ │ ├── RowIterator.php
│ │ │ │ │ └── SheetView.php
│ │ │ │ ├── Worksheet.php
│ │ │ │ ├── WorksheetIterator.php
│ │ │ │ ├── Writer/
│ │ │ │ │ ├── Abstract.php
│ │ │ │ │ ├── CSV.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
│ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ ├── Excel5/
│ │ │ │ │ │ ├── BIFFwriter.php
│ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ ├── Parser.php
│ │ │ │ │ │ ├── Workbook.php
│ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ └── Xf.php
│ │ │ │ │ ├── Excel5.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── HTML.php
│ │ │ │ │ ├── IWriter.php
│ │ │ │ │ ├── OpenDocument/
│ │ │ │ │ │ ├── Cell/
│ │ │ │ │ │ │ └── Comment.php
│ │ │ │ │ │ ├── Content.php
│ │ │ │ │ │ ├── Meta.php
│ │ │ │ │ │ ├── MetaInf.php
│ │ │ │ │ │ ├── Mimetype.php
│ │ │ │ │ │ ├── Settings.php
│ │ │ │ │ │ ├── Styles.php
│ │ │ │ │ │ ├── Thumbnails.php
│ │ │ │ │ │ └── WriterPart.php
│ │ │ │ │ ├── OpenDocument.php
│ │ │ │ │ ├── PDF/
│ │ │ │ │ │ ├── Core.php
│ │ │ │ │ │ ├── DomPDF.php
│ │ │ │ │ │ ├── mPDF.php
│ │ │ │ │ │ └── tcPDF.php
│ │ │ │ │ └── PDF.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
│ │ │ └── PHPExcel.php
│ │ ├── PHPMailer/
│ │ │ ├── LICENSE
│ │ │ ├── PHPMailerAutoload.php
│ │ │ ├── VERSION
│ │ │ ├── class.phpmailer.php
│ │ │ ├── class.phpmaileroauth.php
│ │ │ ├── class.phpmaileroauthgoogle.php
│ │ │ ├── class.pop3.php
│ │ │ ├── class.smtp.php
│ │ │ ├── composer.json
│ │ │ ├── examples/
│ │ │ │ ├── DKIM.phps
│ │ │ │ ├── code_generator.phps
│ │ │ │ ├── contactform.phps
│ │ │ │ ├── contents.html
│ │ │ │ ├── contentsutf8.html
│ │ │ │ ├── exceptions.phps
│ │ │ │ ├── gmail.phps
│ │ │ │ ├── gmail_xoauth.phps
│ │ │ │ ├── index.html
│ │ │ │ ├── mail.phps
│ │ │ │ ├── mailing_list.phps
│ │ │ │ ├── pop_before_smtp.phps
│ │ │ │ ├── scripts/
│ │ │ │ │ ├── XRegExp.js
│ │ │ │ │ ├── shAutoloader.js
│ │ │ │ │ ├── shBrushPhp.js
│ │ │ │ │ ├── shCore.js
│ │ │ │ │ └── shLegacy.js
│ │ │ │ ├── send_file_upload.phps
│ │ │ │ ├── send_multiple_file_upload.phps
│ │ │ │ ├── sendmail.phps
│ │ │ │ ├── signed-mail.phps
│ │ │ │ ├── smtp.phps
│ │ │ │ ├── smtp_check.phps
│ │ │ │ ├── smtp_no_auth.phps
│ │ │ │ ├── ssl_options.phps
│ │ │ │ └── styles/
│ │ │ │ ├── shCore.css
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ ├── shCoreDjango.css
│ │ │ │ ├── shCoreEclipse.css
│ │ │ │ ├── shCoreEmacs.css
│ │ │ │ ├── shCoreFadeToGrey.css
│ │ │ │ ├── shCoreMDUltra.css
│ │ │ │ ├── shCoreMidnight.css
│ │ │ │ ├── shCoreRDark.css
│ │ │ │ ├── shThemeAppleScript.css
│ │ │ │ ├── shThemeDefault.css
│ │ │ │ ├── shThemeDjango.css
│ │ │ │ ├── shThemeEclipse.css
│ │ │ │ ├── shThemeEmacs.css
│ │ │ │ ├── shThemeFadeToGrey.css
│ │ │ │ ├── shThemeMDUltra.css
│ │ │ │ ├── shThemeMidnight.css
│ │ │ │ ├── shThemeRDark.css
│ │ │ │ └── shThemeVisualStudio.css
│ │ │ ├── extras/
│ │ │ │ ├── EasyPeasyICS.php
│ │ │ │ ├── README.md
│ │ │ │ ├── htmlfilter.php
│ │ │ │ └── ntlm_sasl_client.php
│ │ │ ├── get_oauth_token.php
│ │ │ └── language/
│ │ │ ├── phpmailer.lang-am.php
│ │ │ ├── phpmailer.lang-ar.php
│ │ │ ├── phpmailer.lang-az.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-hr.php
│ │ │ ├── phpmailer.lang-hu.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-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-rs.php
│ │ │ ├── phpmailer.lang-ru.php
│ │ │ ├── phpmailer.lang-sk.php
│ │ │ ├── phpmailer.lang-sl.php
│ │ │ ├── phpmailer.lang-sv.php
│ │ │ ├── phpmailer.lang-tr.php
│ │ │ ├── phpmailer.lang-uk.php
│ │ │ ├── phpmailer.lang-vi.php
│ │ │ ├── phpmailer.lang-zh.php
│ │ │ └── phpmailer.lang-zh_cn.php
│ │ ├── Permissions.php
│ │ ├── Plans.php
│ │ ├── dompdf/
│ │ │ ├── .travis.yml
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE.LGPL
│ │ │ ├── README.md
│ │ │ ├── VERSION
│ │ │ ├── autoload.inc.php
│ │ │ ├── composer.json
│ │ │ ├── lib/
│ │ │ │ ├── Cpdf.php
│ │ │ │ ├── fonts/
│ │ │ │ │ ├── DejaVuSans-Bold.ufm
│ │ │ │ │ ├── DejaVuSans-Bold.ufm.php
│ │ │ │ │ ├── DejaVuSans-BoldOblique.ufm
│ │ │ │ │ ├── DejaVuSans-Oblique.ufm
│ │ │ │ │ ├── DejaVuSans.ufm
│ │ │ │ │ ├── DejaVuSans.ufm.php
│ │ │ │ │ ├── DejaVuSansMono-Bold.ufm
│ │ │ │ │ ├── DejaVuSansMono-BoldOblique.ufm
│ │ │ │ │ ├── DejaVuSansMono-Oblique.ufm
│ │ │ │ │ ├── DejaVuSansMono.ufm
│ │ │ │ │ ├── DejaVuSerif-Bold.ufm
│ │ │ │ │ ├── DejaVuSerif-BoldItalic.ufm
│ │ │ │ │ ├── DejaVuSerif-Italic.ufm
│ │ │ │ │ ├── DejaVuSerif.ufm
│ │ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm
│ │ │ │ │ ├── dejavu_sans_normal_b851f57bf3783ae5089a634872aa8ce8.ufm.php
│ │ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm
│ │ │ │ │ ├── dejavu_sans_normal_da52e5b8c125dc4342e1d9c6baf20f36.ufm.php
│ │ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm
│ │ │ │ │ ├── dejavu_sans_normal_ed376817aaa57868462795ac20ea25fb.ufm.php
│ │ │ │ │ ├── dompdf_font_family_cache.dist.php
│ │ │ │ │ ├── dompdf_font_family_cache.php
│ │ │ │ │ └── mustRead.html
│ │ │ │ ├── html5lib/
│ │ │ │ │ ├── Data.php
│ │ │ │ │ ├── InputStream.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Tokenizer.php
│ │ │ │ │ ├── TreeBuilder.php
│ │ │ │ │ └── named-character-references.ser
│ │ │ │ ├── php-css-parser/
│ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── composer.json
│ │ │ │ │ └── src/
│ │ │ │ │ ├── CSSList/
│ │ │ │ │ │ ├── AtRuleBlockList.php
│ │ │ │ │ │ ├── CSSBlockList.php
│ │ │ │ │ │ ├── CSSList.php
│ │ │ │ │ │ ├── Document.php
│ │ │ │ │ │ └── KeyFrame.php
│ │ │ │ │ ├── Comment/
│ │ │ │ │ │ ├── Comment.php
│ │ │ │ │ │ └── Commentable.php
│ │ │ │ │ ├── OutputFormat.php
│ │ │ │ │ ├── OutputFormatter.php
│ │ │ │ │ ├── Parser.php
│ │ │ │ │ ├── Parsing/
│ │ │ │ │ │ ├── OutputException.php
│ │ │ │ │ │ ├── ParserState.php
│ │ │ │ │ │ ├── SourceException.php
│ │ │ │ │ │ ├── UnexpectedEOFException.php
│ │ │ │ │ │ └── UnexpectedTokenException.php
│ │ │ │ │ ├── Property/
│ │ │ │ │ │ ├── AtRule.php
│ │ │ │ │ │ ├── CSSNamespace.php
│ │ │ │ │ │ ├── Charset.php
│ │ │ │ │ │ ├── Import.php
│ │ │ │ │ │ ├── KeyframeSelector.php
│ │ │ │ │ │ └── Selector.php
│ │ │ │ │ ├── Renderable.php
│ │ │ │ │ ├── Rule/
│ │ │ │ │ │ └── Rule.php
│ │ │ │ │ ├── RuleSet/
│ │ │ │ │ │ ├── AtRuleSet.php
│ │ │ │ │ │ ├── DeclarationBlock.php
│ │ │ │ │ │ └── RuleSet.php
│ │ │ │ │ ├── Settings.php
│ │ │ │ │ └── Value/
│ │ │ │ │ ├── CSSFunction.php
│ │ │ │ │ ├── CSSString.php
│ │ │ │ │ ├── CalcFunction.php
│ │ │ │ │ ├── CalcRuleValueList.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── LineName.php
│ │ │ │ │ ├── PrimitiveValue.php
│ │ │ │ │ ├── RuleValueList.php
│ │ │ │ │ ├── Size.php
│ │ │ │ │ ├── URL.php
│ │ │ │ │ ├── Value.php
│ │ │ │ │ └── ValueList.php
│ │ │ │ ├── php-font-lib/
│ │ │ │ │ ├── .htaccess
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── bower.json
│ │ │ │ │ ├── composer.json
│ │ │ │ │ ├── index.php
│ │ │ │ │ └── src/
│ │ │ │ │ └── FontLib/
│ │ │ │ │ ├── AdobeFontMetrics.php
│ │ │ │ │ ├── Autoloader.php
│ │ │ │ │ ├── BinaryStream.php
│ │ │ │ │ ├── EOT/
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── Header.php
│ │ │ │ │ ├── EncodingMap.php
│ │ │ │ │ ├── Exception/
│ │ │ │ │ │ └── FontNotFoundException.php
│ │ │ │ │ ├── Font.php
│ │ │ │ │ ├── Glyph/
│ │ │ │ │ │ ├── Outline.php
│ │ │ │ │ │ ├── OutlineComponent.php
│ │ │ │ │ │ ├── OutlineComposite.php
│ │ │ │ │ │ └── OutlineSimple.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ ├── OpenType/
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ │ ├── Table/
│ │ │ │ │ │ ├── DirectoryEntry.php
│ │ │ │ │ │ ├── Table.php
│ │ │ │ │ │ └── Type/
│ │ │ │ │ │ ├── cmap.php
│ │ │ │ │ │ ├── glyf.php
│ │ │ │ │ │ ├── head.php
│ │ │ │ │ │ ├── hhea.php
│ │ │ │ │ │ ├── hmtx.php
│ │ │ │ │ │ ├── kern.php
│ │ │ │ │ │ ├── loca.php
│ │ │ │ │ │ ├── maxp.php
│ │ │ │ │ │ ├── name.php
│ │ │ │ │ │ ├── nameRecord.php
│ │ │ │ │ │ ├── os2.php
│ │ │ │ │ │ └── post.php
│ │ │ │ │ ├── TrueType/
│ │ │ │ │ │ ├── Collection.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ ├── Header.php
│ │ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ │ └── WOFF/
│ │ │ │ │ ├── File.php
│ │ │ │ │ ├── Header.php
│ │ │ │ │ └── TableDirectoryEntry.php
│ │ │ │ ├── php-svg-lib/
│ │ │ │ │ ├── COPYING
│ │ │ │ │ ├── COPYING.GPL
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── composer.json
│ │ │ │ │ └── src/
│ │ │ │ │ ├── Svg/
│ │ │ │ │ │ ├── DefaultStyle.php
│ │ │ │ │ │ ├── Document.php
│ │ │ │ │ │ ├── Gradient/
│ │ │ │ │ │ │ └── Stop.php
│ │ │ │ │ │ ├── Style.php
│ │ │ │ │ │ ├── Surface/
│ │ │ │ │ │ │ ├── CPdf.php
│ │ │ │ │ │ │ ├── SurfaceCpdf.php
│ │ │ │ │ │ │ ├── SurfaceGmagick.php
│ │ │ │ │ │ │ ├── SurfaceInterface.php
│ │ │ │ │ │ │ └── SurfacePDFLib.php
│ │ │ │ │ │ └── Tag/
│ │ │ │ │ │ ├── AbstractTag.php
│ │ │ │ │ │ ├── Anchor.php
│ │ │ │ │ │ ├── Circle.php
│ │ │ │ │ │ ├── ClipPath.php
│ │ │ │ │ │ ├── Ellipse.php
│ │ │ │ │ │ ├── Group.php
│ │ │ │ │ │ ├── Image.php
│ │ │ │ │ │ ├── Line.php
│ │ │ │ │ │ ├── LinearGradient.php
│ │ │ │ │ │ ├── Path.php
│ │ │ │ │ │ ├── Polygon.php
│ │ │ │ │ │ ├── Polyline.php
│ │ │ │ │ │ ├── RadialGradient.php
│ │ │ │ │ │ ├── Rect.php
│ │ │ │ │ │ ├── Shape.php
│ │ │ │ │ │ ├── Stop.php
│ │ │ │ │ │ ├── StyleTag.php
│ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ └── UseTag.php
│ │ │ │ │ └── autoload.php
│ │ │ │ └── res/
│ │ │ │ └── html.css
│ │ │ ├── phpcs.xml
│ │ │ ├── phpunit.xml.dist
│ │ │ └── src/
│ │ │ ├── Adapter/
│ │ │ │ ├── CPDF.php
│ │ │ │ ├── GD.php
│ │ │ │ └── PDFLib.php
│ │ │ ├── Autoloader.php
│ │ │ ├── Canvas.php
│ │ │ ├── CanvasFactory.php
│ │ │ ├── Cellmap.php
│ │ │ ├── Css/
│ │ │ │ ├── AttributeTranslator.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Style.php
│ │ │ │ └── Stylesheet.php
│ │ │ ├── Dompdf.php
│ │ │ ├── Exception/
│ │ │ │ └── ImageException.php
│ │ │ ├── Exception.php
│ │ │ ├── FontMetrics.php
│ │ │ ├── Frame/
│ │ │ │ ├── Factory.php
│ │ │ │ ├── FrameList.php
│ │ │ │ ├── FrameListIterator.php
│ │ │ │ ├── FrameTree.php
│ │ │ │ ├── FrameTreeIterator.php
│ │ │ │ └── FrameTreeList.php
│ │ │ ├── Frame.php
│ │ │ ├── FrameDecorator/
│ │ │ │ ├── AbstractFrameDecorator.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── ListBulletImage.php
│ │ │ │ ├── NullFrameDecorator.php
│ │ │ │ ├── Page.php
│ │ │ │ ├── Table.php
│ │ │ │ ├── TableCell.php
│ │ │ │ ├── TableRow.php
│ │ │ │ ├── TableRowGroup.php
│ │ │ │ └── Text.php
│ │ │ ├── FrameReflower/
│ │ │ │ ├── AbstractFrameReflower.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── NullFrameReflower.php
│ │ │ │ ├── Page.php
│ │ │ │ ├── Table.php
│ │ │ │ ├── TableCell.php
│ │ │ │ ├── TableRow.php
│ │ │ │ ├── TableRowGroup.php
│ │ │ │ └── Text.php
│ │ │ ├── Helpers.php
│ │ │ ├── Image/
│ │ │ │ └── Cache.php
│ │ │ ├── JavascriptEmbedder.php
│ │ │ ├── LineBox.php
│ │ │ ├── Options.php
│ │ │ ├── PhpEvaluator.php
│ │ │ ├── Positioner/
│ │ │ │ ├── Absolute.php
│ │ │ │ ├── AbstractPositioner.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Fixed.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── NullPositioner.php
│ │ │ │ ├── TableCell.php
│ │ │ │ └── TableRow.php
│ │ │ ├── Renderer/
│ │ │ │ ├── AbstractRenderer.php
│ │ │ │ ├── Block.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Inline.php
│ │ │ │ ├── ListBullet.php
│ │ │ │ ├── TableCell.php
│ │ │ │ ├── TableRowGroup.php
│ │ │ │ └── Text.php
│ │ │ └── Renderer.php
│ │ ├── exporters/
│ │ │ ├── ExcelExport.php
│ │ │ └── XmlExport.php
│ │ ├── importers/
│ │ │ └── UniversalXmlImport.php
│ │ └── index.html
│ ├── models/
│ │ ├── PublicModel.php
│ │ └── index.html
│ ├── modules/
│ │ ├── admin/
│ │ │ ├── controllers/
│ │ │ │ ├── home/
│ │ │ │ │ ├── Home.php
│ │ │ │ │ └── Login.php
│ │ │ │ └── plans/
│ │ │ │ └── Requests.php
│ │ │ ├── models/
│ │ │ │ ├── GeneralAdminModel.php
│ │ │ │ ├── HomeModel.php
│ │ │ │ ├── LanguagesModel.php
│ │ │ │ └── RequestsModel.php
│ │ │ └── views/
│ │ │ ├── home/
│ │ │ │ ├── index.php
│ │ │ │ └── login.php
│ │ │ ├── parts/
│ │ │ │ ├── general/
│ │ │ │ │ ├── footer.php
│ │ │ │ │ └── header.php
│ │ │ │ └── login/
│ │ │ │ ├── footer.php
│ │ │ │ └── header.php
│ │ │ └── plans/
│ │ │ ├── individual_plan_requests.php
│ │ │ └── requests.php
│ │ └── users/
│ │ ├── controllers/
│ │ │ ├── clients/
│ │ │ │ └── Clients.php
│ │ │ ├── home/
│ │ │ │ └── Home.php
│ │ │ ├── import_export/
│ │ │ │ └── ImportExport.php
│ │ │ ├── invoices/
│ │ │ │ ├── Invoices.php
│ │ │ │ ├── Invoiceview.php
│ │ │ │ └── Newinvoice.php
│ │ │ ├── items/
│ │ │ │ └── Items.php
│ │ │ ├── managefirms/
│ │ │ │ └── Managefirms.php
│ │ │ ├── plans/
│ │ │ │ └── PlansUsers.php
│ │ │ ├── protocols/
│ │ │ │ ├── Protocols.php
│ │ │ │ └── Protocolview.php
│ │ │ ├── reports/
│ │ │ │ └── Reports.php
│ │ │ ├── settings/
│ │ │ │ ├── Admin.php
│ │ │ │ ├── Employees.php
│ │ │ │ ├── GlobalSettings.php
│ │ │ │ ├── Invoices.php
│ │ │ │ ├── Protocols.php
│ │ │ │ ├── Settings.php
│ │ │ │ ├── Stores.php
│ │ │ │ └── Warranty.php
│ │ │ ├── store/
│ │ │ │ ├── Movementview.php
│ │ │ │ └── Store.php
│ │ │ └── warranty/
│ │ │ ├── Events.php
│ │ │ ├── Warranty.php
│ │ │ └── Warrantyview.php
│ │ ├── models/
│ │ │ ├── ClientsModel.php
│ │ │ ├── HomeModel.php
│ │ │ ├── ImportExportModel.php
│ │ │ ├── InvoicesModel.php
│ │ │ ├── ItemsModel.php
│ │ │ ├── ManagefirmsModel.php
│ │ │ ├── NewInvoiceModel.php
│ │ │ ├── PlansModel.php
│ │ │ ├── ProtocolsModel.php
│ │ │ ├── ReportsModel.php
│ │ │ ├── SettingsModel.php
│ │ │ ├── StoreModel.php
│ │ │ └── WarrantyCardModel.php
│ │ └── views/
│ │ ├── clients/
│ │ │ ├── addclient.php
│ │ │ ├── index.php
│ │ │ └── viewclient.php
│ │ ├── home/
│ │ │ ├── index.php
│ │ │ ├── noSearchResultsHtml.php
│ │ │ └── searchResultsHtml.php
│ │ ├── import_export/
│ │ │ └── index.php
│ │ ├── invoices/
│ │ │ ├── index.php
│ │ │ ├── itemTableTr.php
│ │ │ ├── listSelectorHtml.php
│ │ │ ├── modals/
│ │ │ │ ├── add_payment_method.php
│ │ │ │ ├── add_quantity_type.php
│ │ │ │ └── selector.php
│ │ │ ├── newinvoice.php
│ │ │ ├── templates/
│ │ │ │ ├── creative.php
│ │ │ │ └── toner-save.php
│ │ │ └── view.php
│ │ ├── items/
│ │ │ ├── additem.php
│ │ │ ├── index.php
│ │ │ └── viewitem.php
│ │ ├── managefirms/
│ │ │ ├── edit.php
│ │ │ └── index.php
│ │ ├── parts/
│ │ │ ├── footer.php
│ │ │ └── header.php
│ │ ├── plans/
│ │ │ ├── index.php
│ │ │ ├── period.php
│ │ │ └── request.php
│ │ ├── protocols/
│ │ │ ├── addprotocol.php
│ │ │ ├── index.php
│ │ │ ├── itemTableTr.php
│ │ │ └── templates/
│ │ │ └── default.php
│ │ ├── reports/
│ │ │ ├── index.php
│ │ │ └── reportNumInvoices.php
│ │ ├── settings/
│ │ │ ├── addEmployee.php
│ │ │ ├── admin.php
│ │ │ ├── employeeRights.php
│ │ │ ├── employees.php
│ │ │ ├── global.php
│ │ │ ├── index.php
│ │ │ ├── invoices.php
│ │ │ ├── protocols.php
│ │ │ ├── stores.php
│ │ │ └── warranty.php
│ │ ├── store/
│ │ │ ├── addmovement.php
│ │ │ ├── index.php
│ │ │ ├── itemTableTr.php
│ │ │ ├── preview.php
│ │ │ ├── stocks.php
│ │ │ └── templates/
│ │ │ └── default.php
│ │ └── warranty/
│ │ ├── add_event.php
│ │ ├── addwarranty.php
│ │ ├── events.php
│ │ ├── index.php
│ │ ├── itemTableTr.php
│ │ └── templates/
│ │ └── default.php
│ ├── third_party/
│ │ ├── MX/
│ │ │ ├── Base.php
│ │ │ ├── Ci.php
│ │ │ ├── Config.php
│ │ │ ├── Controller.php
│ │ │ ├── Lang.php
│ │ │ ├── Loader.php
│ │ │ ├── Modules.php
│ │ │ └── Router.php
│ │ └── index.html
│ └── views/
│ ├── errors/
│ │ ├── cli/
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ ├── html/
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ └── index.html
│ ├── home/
│ │ └── index.php
│ ├── index.html
│ ├── invoices_parts/
│ │ ├── footer.php
│ │ └── invoice_accept.php
│ ├── parts/
│ │ ├── footer.php
│ │ ├── header.php
│ │ └── invaccept/
│ │ ├── footer.php
│ │ └── header.php
│ └── registration/
│ ├── choosetype.php
│ ├── forgotten.php
│ ├── index.php
│ └── login.php
├── assets/
│ ├── admin/
│ │ ├── css/
│ │ │ ├── general.css
│ │ │ └── login.css
│ │ └── js/
│ │ └── general.js
│ ├── bootstrap/
│ │ └── js/
│ │ └── npm.js
│ ├── bootstrap-datepicker-1.6.4-dist/
│ │ └── css/
│ │ ├── bootstrap-datepicker.css
│ │ ├── bootstrap-datepicker.standalone.css
│ │ ├── bootstrap-datepicker3.css
│ │ └── bootstrap-datepicker3.standalone.css
│ ├── bootstrap-select-1.12.2/
│ │ ├── .github/
│ │ │ └── ISSUE_TEMPLATE.md
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── Gruntfile.js
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bower.json
│ │ ├── composer.json
│ │ ├── dist/
│ │ │ ├── css/
│ │ │ │ └── bootstrap-select.css
│ │ │ └── js/
│ │ │ ├── bootstrap-select.js
│ │ │ └── i18n/
│ │ │ ├── defaults-ar_AR.js
│ │ │ ├── defaults-bg_BG.js
│ │ │ ├── defaults-cro_CRO.js
│ │ │ ├── defaults-cs_CZ.js
│ │ │ ├── defaults-da_DK.js
│ │ │ ├── defaults-de_DE.js
│ │ │ ├── defaults-en_US.js
│ │ │ ├── defaults-es_CL.js
│ │ │ ├── defaults-es_ES.js
│ │ │ ├── defaults-eu.js
│ │ │ ├── defaults-fa_IR.js
│ │ │ ├── defaults-fi_FI.js
│ │ │ ├── defaults-fr_FR.js
│ │ │ ├── defaults-hu_HU.js
│ │ │ ├── defaults-id_ID.js
│ │ │ ├── defaults-it_IT.js
│ │ │ ├── defaults-ko_KR.js
│ │ │ ├── defaults-lt_LT.js
│ │ │ ├── defaults-nb_NO.js
│ │ │ ├── defaults-nl_NL.js
│ │ │ ├── defaults-pl_PL.js
│ │ │ ├── defaults-pt_BR.js
│ │ │ ├── defaults-pt_PT.js
│ │ │ ├── defaults-ro_RO.js
│ │ │ ├── defaults-ru_RU.js
│ │ │ ├── defaults-sk_SK.js
│ │ │ ├── defaults-sl_SI.js
│ │ │ ├── defaults-sv_SE.js
│ │ │ ├── defaults-tr_TR.js
│ │ │ ├── defaults-ua_UA.js
│ │ │ ├── defaults-zh_CN.js
│ │ │ └── defaults-zh_TW.js
│ │ ├── docs/
│ │ │ ├── custom_theme/
│ │ │ │ ├── base.html
│ │ │ │ ├── css/
│ │ │ │ │ └── base.css
│ │ │ │ ├── js/
│ │ │ │ │ └── base.js
│ │ │ │ ├── nav.html
│ │ │ │ └── toc.html
│ │ │ ├── docs/
│ │ │ │ ├── css/
│ │ │ │ │ └── custom.css
│ │ │ │ ├── dist/
│ │ │ │ │ ├── css/
│ │ │ │ │ │ └── bootstrap-select.css
│ │ │ │ │ └── js/
│ │ │ │ │ ├── bootstrap-select.js
│ │ │ │ │ └── i18n/
│ │ │ │ │ ├── defaults-ar_AR.js
│ │ │ │ │ ├── defaults-bg_BG.js
│ │ │ │ │ ├── defaults-cro_CRO.js
│ │ │ │ │ ├── defaults-cs_CZ.js
│ │ │ │ │ ├── defaults-da_DK.js
│ │ │ │ │ ├── defaults-de_DE.js
│ │ │ │ │ ├── defaults-en_US.js
│ │ │ │ │ ├── defaults-es_CL.js
│ │ │ │ │ ├── defaults-es_ES.js
│ │ │ │ │ ├── defaults-eu.js
│ │ │ │ │ ├── defaults-fa_IR.js
│ │ │ │ │ ├── defaults-fi_FI.js
│ │ │ │ │ ├── defaults-fr_FR.js
│ │ │ │ │ ├── defaults-hu_HU.js
│ │ │ │ │ ├── defaults-id_ID.js
│ │ │ │ │ ├── defaults-it_IT.js
│ │ │ │ │ ├── defaults-ko_KR.js
│ │ │ │ │ ├── defaults-lt_LT.js
│ │ │ │ │ ├── defaults-nb_NO.js
│ │ │ │ │ ├── defaults-nl_NL.js
│ │ │ │ │ ├── defaults-pl_PL.js
│ │ │ │ │ ├── defaults-pt_BR.js
│ │ │ │ │ ├── defaults-pt_PT.js
│ │ │ │ │ ├── defaults-ro_RO.js
│ │ │ │ │ ├── defaults-ru_RU.js
│ │ │ │ │ ├── defaults-sk_SK.js
│ │ │ │ │ ├── defaults-sl_SI.js
│ │ │ │ │ ├── defaults-sv_SE.js
│ │ │ │ │ ├── defaults-tr_TR.js
│ │ │ │ │ ├── defaults-ua_UA.js
│ │ │ │ │ ├── defaults-zh_CN.js
│ │ │ │ │ └── defaults-zh_TW.js
│ │ │ │ ├── examples.md
│ │ │ │ ├── index.md
│ │ │ │ ├── methods.md
│ │ │ │ ├── options.md
│ │ │ │ └── playground/
│ │ │ │ ├── index.html
│ │ │ │ ├── plnkrOpener.js
│ │ │ │ └── test.html
│ │ │ └── mkdocs.yml
│ │ ├── js/
│ │ │ ├── .jshintrc
│ │ │ ├── bootstrap-select.js
│ │ │ └── i18n/
│ │ │ ├── defaults-ar_AR.js
│ │ │ ├── defaults-bg_BG.js
│ │ │ ├── defaults-cro_CRO.js
│ │ │ ├── defaults-cs_CZ.js
│ │ │ ├── defaults-da_DK.js
│ │ │ ├── defaults-de_DE.js
│ │ │ ├── defaults-en_US.js
│ │ │ ├── defaults-es_CL.js
│ │ │ ├── defaults-es_ES.js
│ │ │ ├── defaults-eu.js
│ │ │ ├── defaults-fa_IR.js
│ │ │ ├── defaults-fi_FI.js
│ │ │ ├── defaults-fr_FR.js
│ │ │ ├── defaults-hu_HU.js
│ │ │ ├── defaults-id_ID.js
│ │ │ ├── defaults-it_IT.js
│ │ │ ├── defaults-ko_KR.js
│ │ │ ├── defaults-lt_LT.js
│ │ │ ├── defaults-nb_NO.js
│ │ │ ├── defaults-nl_NL.js
│ │ │ ├── defaults-pl_PL.js
│ │ │ ├── defaults-pt_BR.js
│ │ │ ├── defaults-pt_PT.js
│ │ │ ├── defaults-ro_RO.js
│ │ │ ├── defaults-ru_RU.js
│ │ │ ├── defaults-sk_SK.js
│ │ │ ├── defaults-sl_SI.js
│ │ │ ├── defaults-sv_SE.js
│ │ │ ├── defaults-tr_TR.js
│ │ │ ├── defaults-ua_UA.js
│ │ │ ├── defaults-zh_CN.js
│ │ │ └── defaults-zh_TW.js
│ │ ├── less/
│ │ │ ├── bootstrap-select.less
│ │ │ └── variables.less
│ │ ├── nuget/
│ │ │ ├── MyGet.ps1
│ │ │ └── bootstrap-select.nuspec
│ │ ├── package.json
│ │ ├── sass/
│ │ │ ├── bootstrap-select.scss
│ │ │ └── variables.scss
│ │ └── test.html
│ ├── ckeditor/
│ │ ├── CHANGES.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── adapters/
│ │ │ └── jquery.js
│ │ ├── build-config.js
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang/
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de-ch.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── en.js
│ │ │ ├── eo.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── gu.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── ku.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── mn.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── no.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── tt.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── plugins/
│ │ │ ├── a11yhelp/
│ │ │ │ └── dialogs/
│ │ │ │ ├── a11yhelp.js
│ │ │ │ └── lang/
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── cy.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de-ch.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-gb.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── gu.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── id.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── ku.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mk.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── si.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sq.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── tt.js
│ │ │ │ ├── ug.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── about/
│ │ │ │ └── dialogs/
│ │ │ │ └── about.js
│ │ │ ├── clipboard/
│ │ │ │ └── dialogs/
│ │ │ │ └── paste.js
│ │ │ ├── codemirror/
│ │ │ │ ├── lang/
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── bn.js
│ │ │ │ │ ├── bs.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-au.js
│ │ │ │ │ ├── en-ca.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fo.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── gu.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── is.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── ka.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── mn.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── theme/
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── liquibyte.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── ttcn.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ └── zenburn.css
│ │ │ ├── colordialog/
│ │ │ │ └── dialogs/
│ │ │ │ └── colordialog.js
│ │ │ ├── dialog/
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── div/
│ │ │ │ └── dialogs/
│ │ │ │ └── div.js
│ │ │ ├── find/
│ │ │ │ └── dialogs/
│ │ │ │ └── find.js
│ │ │ ├── flash/
│ │ │ │ └── dialogs/
│ │ │ │ └── flash.js
│ │ │ ├── forms/
│ │ │ │ └── dialogs/
│ │ │ │ ├── button.js
│ │ │ │ ├── checkbox.js
│ │ │ │ ├── form.js
│ │ │ │ ├── hiddenfield.js
│ │ │ │ ├── radio.js
│ │ │ │ ├── select.js
│ │ │ │ ├── textarea.js
│ │ │ │ └── textfield.js
│ │ │ ├── iframe/
│ │ │ │ └── dialogs/
│ │ │ │ └── iframe.js
│ │ │ ├── image/
│ │ │ │ └── dialogs/
│ │ │ │ └── image.js
│ │ │ ├── link/
│ │ │ │ └── dialogs/
│ │ │ │ ├── anchor.js
│ │ │ │ └── link.js
│ │ │ ├── liststyle/
│ │ │ │ └── dialogs/
│ │ │ │ └── liststyle.js
│ │ │ ├── pastefromword/
│ │ │ │ └── filter/
│ │ │ │ └── default.js
│ │ │ ├── preview/
│ │ │ │ └── preview.html
│ │ │ ├── scayt/
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ └── dialogs/
│ │ │ │ ├── options.js
│ │ │ │ └── toolbar.css
│ │ │ ├── smiley/
│ │ │ │ └── dialogs/
│ │ │ │ └── smiley.js
│ │ │ ├── specialchar/
│ │ │ │ └── dialogs/
│ │ │ │ ├── lang/
│ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ ├── af.js
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── cy.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de-ch.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en-gb.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── eo.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── ku.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── no.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-br.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── si.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sl.js
│ │ │ │ │ ├── sq.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── tt.js
│ │ │ │ │ ├── ug.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh.js
│ │ │ │ └── specialchar.js
│ │ │ ├── table/
│ │ │ │ └── dialogs/
│ │ │ │ └── table.js
│ │ │ ├── tabletools/
│ │ │ │ └── dialogs/
│ │ │ │ └── tableCell.js
│ │ │ ├── templates/
│ │ │ │ ├── dialogs/
│ │ │ │ │ ├── templates.css
│ │ │ │ │ └── templates.js
│ │ │ │ └── templates/
│ │ │ │ └── default.js
│ │ │ └── wsc/
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ └── dialogs/
│ │ │ ├── ciframe.html
│ │ │ ├── tmpFrameset.html
│ │ │ ├── wsc.css
│ │ │ ├── wsc.js
│ │ │ └── wsc_ie.js
│ │ ├── samples/
│ │ │ ├── css/
│ │ │ │ └── samples.css
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ ├── sample.js
│ │ │ │ └── sf.js
│ │ │ ├── old/
│ │ │ │ ├── ajax.html
│ │ │ │ ├── api.html
│ │ │ │ ├── appendto.html
│ │ │ │ ├── assets/
│ │ │ │ │ ├── outputxhtml/
│ │ │ │ │ │ └── outputxhtml.css
│ │ │ │ │ ├── posteddata.php
│ │ │ │ │ └── uilanguages/
│ │ │ │ │ └── languages.js
│ │ │ │ ├── datafiltering.html
│ │ │ │ ├── dialog/
│ │ │ │ │ ├── assets/
│ │ │ │ │ │ └── my_dialog.js
│ │ │ │ │ └── dialog.html
│ │ │ │ ├── divreplace.html
│ │ │ │ ├── enterkey/
│ │ │ │ │ └── enterkey.html
│ │ │ │ ├── htmlwriter/
│ │ │ │ │ ├── assets/
│ │ │ │ │ │ └── outputforflash/
│ │ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ │ ├── outputforflash.swf
│ │ │ │ │ │ └── swfobject.js
│ │ │ │ │ ├── outputforflash.html
│ │ │ │ │ └── outputhtml.html
│ │ │ │ ├── index.html
│ │ │ │ ├── inlineall.html
│ │ │ │ ├── inlinebycode.html
│ │ │ │ ├── inlinetextarea.html
│ │ │ │ ├── jquery.html
│ │ │ │ ├── magicline/
│ │ │ │ │ └── magicline.html
│ │ │ │ ├── readonly.html
│ │ │ │ ├── replacebyclass.html
│ │ │ │ ├── replacebycode.html
│ │ │ │ ├── sample.css
│ │ │ │ ├── sample.js
│ │ │ │ ├── sample_posteddata.php
│ │ │ │ ├── tabindex.html
│ │ │ │ ├── toolbar/
│ │ │ │ │ └── toolbar.html
│ │ │ │ ├── uicolor.html
│ │ │ │ ├── uilanguages.html
│ │ │ │ ├── wysiwygarea/
│ │ │ │ │ └── fullpage.html
│ │ │ │ └── xhtmlstyle.html
│ │ │ └── toolbarconfigurator/
│ │ │ ├── css/
│ │ │ │ └── fontello.css
│ │ │ ├── font/
│ │ │ │ ├── LICENSE.txt
│ │ │ │ └── config.json
│ │ │ ├── index.html
│ │ │ ├── js/
│ │ │ │ ├── abstracttoolbarmodifier.js
│ │ │ │ ├── fulltoolbareditor.js
│ │ │ │ ├── toolbarmodifier.js
│ │ │ │ └── toolbartextmodifier.js
│ │ │ └── lib/
│ │ │ └── codemirror/
│ │ │ ├── LICENSE
│ │ │ ├── codemirror.css
│ │ │ ├── codemirror.js
│ │ │ ├── javascript.js
│ │ │ ├── neo.css
│ │ │ ├── show-hint.css
│ │ │ └── show-hint.js
│ │ ├── skins/
│ │ │ ├── moono/
│ │ │ │ ├── dialog.css
│ │ │ │ ├── dialog_ie.css
│ │ │ │ ├── dialog_ie7.css
│ │ │ │ ├── dialog_ie8.css
│ │ │ │ ├── dialog_iequirks.css
│ │ │ │ ├── editor.css
│ │ │ │ ├── editor_gecko.css
│ │ │ │ ├── editor_ie.css
│ │ │ │ ├── editor_ie7.css
│ │ │ │ ├── editor_ie8.css
│ │ │ │ ├── editor_iequirks.css
│ │ │ │ └── readme.md
│ │ │ └── moonocolor/
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_iequirks.css
│ │ │ └── readme.md
│ │ └── styles.js
│ ├── font-awesome/
│ │ └── fonts/
│ │ └── FontAwesome.otf
│ ├── font-awesome-4.7.0/
│ │ ├── HELP-US-OUT.txt
│ │ ├── css/
│ │ │ └── font-awesome.css
│ │ ├── fonts/
│ │ │ └── FontAwesome.otf
│ │ ├── less/
│ │ │ ├── animated.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── core.less
│ │ │ ├── fixed-width.less
│ │ │ ├── font-awesome.less
│ │ │ ├── icons.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── mixins.less
│ │ │ ├── path.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── screen-reader.less
│ │ │ ├── stacked.less
│ │ │ └── variables.less
│ │ └── scss/
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _screen-reader.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
│ ├── highcharts/
│ │ ├── css/
│ │ │ └── highcharts.css
│ │ ├── highcharts-3d.js
│ │ ├── highcharts-3d.src.js
│ │ ├── highcharts-more.js
│ │ ├── highcharts-more.src.js
│ │ ├── highcharts.js
│ │ ├── highcharts.src.js
│ │ ├── js/
│ │ │ ├── highcharts-3d.js
│ │ │ ├── highcharts-3d.src.js
│ │ │ ├── highcharts-more.js
│ │ │ ├── highcharts-more.src.js
│ │ │ ├── highcharts.js
│ │ │ ├── highcharts.src.js
│ │ │ ├── modules/
│ │ │ │ ├── accessibility.js
│ │ │ │ ├── accessibility.src.js
│ │ │ │ ├── annotations.js
│ │ │ │ ├── annotations.src.js
│ │ │ │ ├── boost-canvas.js
│ │ │ │ ├── boost-canvas.src.js
│ │ │ │ ├── boost.js
│ │ │ │ ├── boost.src.js
│ │ │ │ ├── broken-axis.js
│ │ │ │ ├── broken-axis.src.js
│ │ │ │ ├── data.js
│ │ │ │ ├── data.src.js
│ │ │ │ ├── drilldown.js
│ │ │ │ ├── drilldown.src.js
│ │ │ │ ├── export-data.js
│ │ │ │ ├── export-data.src.js
│ │ │ │ ├── exporting.js
│ │ │ │ ├── exporting.src.js
│ │ │ │ ├── funnel.js
│ │ │ │ ├── funnel.src.js
│ │ │ │ ├── gantt.js
│ │ │ │ ├── gantt.src.js
│ │ │ │ ├── grid-axis.js
│ │ │ │ ├── grid-axis.src.js
│ │ │ │ ├── heatmap.js
│ │ │ │ ├── heatmap.src.js
│ │ │ │ ├── no-data-to-display.js
│ │ │ │ ├── no-data-to-display.src.js
│ │ │ │ ├── offline-exporting.js
│ │ │ │ ├── offline-exporting.src.js
│ │ │ │ ├── overlapping-datalabels.js
│ │ │ │ ├── overlapping-datalabels.src.js
│ │ │ │ ├── series-label.js
│ │ │ │ ├── series-label.src.js
│ │ │ │ ├── solid-gauge.js
│ │ │ │ ├── solid-gauge.src.js
│ │ │ │ ├── static-scale.js
│ │ │ │ ├── static-scale.src.js
│ │ │ │ ├── stock.js
│ │ │ │ ├── stock.src.js
│ │ │ │ ├── treemap.js
│ │ │ │ ├── treemap.src.js
│ │ │ │ ├── xrange-series.js
│ │ │ │ └── xrange-series.src.js
│ │ │ └── themes/
│ │ │ ├── dark-blue.js
│ │ │ ├── dark-green.js
│ │ │ ├── dark-unica.js
│ │ │ ├── gray.js
│ │ │ ├── grid-light.js
│ │ │ ├── grid.js
│ │ │ ├── sand-signika.js
│ │ │ └── skies.js
│ │ ├── lib/
│ │ │ ├── canvg.js
│ │ │ ├── canvg.src.js
│ │ │ ├── jspdf.js
│ │ │ ├── jspdf.src.js
│ │ │ ├── rgbcolor.js
│ │ │ ├── rgbcolor.src.js
│ │ │ ├── svg2pdf.js
│ │ │ └── svg2pdf.src.js
│ │ ├── modules/
│ │ │ ├── accessibility.js
│ │ │ ├── accessibility.src.js
│ │ │ ├── annotations.js
│ │ │ ├── annotations.src.js
│ │ │ ├── boost-canvas.js
│ │ │ ├── boost-canvas.src.js
│ │ │ ├── boost.js
│ │ │ ├── boost.src.js
│ │ │ ├── broken-axis.js
│ │ │ ├── broken-axis.src.js
│ │ │ ├── data.js
│ │ │ ├── data.src.js
│ │ │ ├── drilldown.js
│ │ │ ├── drilldown.src.js
│ │ │ ├── export-data.js
│ │ │ ├── export-data.src.js
│ │ │ ├── exporting.js
│ │ │ ├── exporting.src.js
│ │ │ ├── funnel.js
│ │ │ ├── funnel.src.js
│ │ │ ├── gantt.js
│ │ │ ├── gantt.src.js
│ │ │ ├── grid-axis.js
│ │ │ ├── grid-axis.src.js
│ │ │ ├── heatmap.js
│ │ │ ├── heatmap.src.js
│ │ │ ├── no-data-to-display.js
│ │ │ ├── no-data-to-display.src.js
│ │ │ ├── offline-exporting.js
│ │ │ ├── offline-exporting.src.js
│ │ │ ├── overlapping-datalabels.js
│ │ │ ├── overlapping-datalabels.src.js
│ │ │ ├── series-label.js
│ │ │ ├── series-label.src.js
│ │ │ ├── solid-gauge.js
│ │ │ ├── solid-gauge.src.js
│ │ │ ├── static-scale.js
│ │ │ ├── static-scale.src.js
│ │ │ ├── stock.js
│ │ │ ├── stock.src.js
│ │ │ ├── treemap.js
│ │ │ ├── treemap.src.js
│ │ │ ├── xrange-series.js
│ │ │ └── xrange-series.src.js
│ │ ├── readme.txt
│ │ └── themes/
│ │ ├── dark-blue.js
│ │ ├── dark-green.js
│ │ ├── dark-unica.js
│ │ ├── gray.js
│ │ ├── grid-light.js
│ │ ├── grid.js
│ │ ├── sand-signika.js
│ │ └── skies.js
│ ├── jquery/
│ │ └── jquery-ui-1.12.1.custom/
│ │ ├── AUTHORS.txt
│ │ ├── LICENSE.txt
│ │ ├── external/
│ │ │ └── jquery/
│ │ │ └── jquery.js
│ │ ├── index.html
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.js
│ │ ├── jquery-ui.structure.css
│ │ ├── jquery-ui.theme.css
│ │ └── package.json
│ ├── plugins/
│ │ └── jquery.eqheight.js
│ ├── psd/
│ │ ├── customers-label.psd
│ │ ├── fbCover.psd
│ │ ├── fbLogo.psd
│ │ ├── first-mac.psd
│ │ ├── home_steps.psd
│ │ ├── pm-subpages.psd
│ │ ├── pmInvoice-Logo.psd
│ │ ├── responsive.psd
│ │ └── support-image.psd
│ ├── public/
│ │ ├── css/
│ │ │ ├── general.css
│ │ │ ├── stabilizator_bg.css
│ │ │ ├── stabilizator_en.css
│ │ │ └── stabilizator_fr.css
│ │ └── js/
│ │ └── general.js
│ ├── tagsinput/
│ │ ├── bootstrap-tagsinput.css
│ │ └── bootstrap-tagsinput.js
│ └── users/
│ ├── css/
│ │ ├── bill-of-lading-templates.css
│ │ ├── general.css
│ │ ├── invoices-templates.css
│ │ ├── protocols-templates.css
│ │ └── warranty-cards-templates.css
│ └── js/
│ └── general.js
├── database.sql
├── design/
│ ├── public/
│ │ ├── card_icons.psd
│ │ └── first-mac.psd
│ └── user/
│ ├── CMS.psd
│ └── sprite-icons.psd
├── index.php
├── pdfs.log
└── system/
├── .htaccess
├── core/
│ ├── Benchmark.php
│ ├── CodeIgniter.php
│ ├── Common.php
│ ├── Config.php
│ ├── Controller.php
│ ├── Exceptions.php
│ ├── Hooks.php
│ ├── Input.php
│ ├── Lang.php
│ ├── Loader.php
│ ├── Log.php
│ ├── Model.php
│ ├── Output.php
│ ├── Router.php
│ ├── Security.php
│ ├── URI.php
│ ├── Utf8.php
│ ├── compat/
│ │ ├── hash.php
│ │ ├── index.html
│ │ ├── mbstring.php
│ │ ├── password.php
│ │ └── standard.php
│ └── index.html
├── database/
│ ├── DB.php
│ ├── DB_cache.php
│ ├── DB_driver.php
│ ├── DB_forge.php
│ ├── DB_query_builder.php
│ ├── DB_result.php
│ ├── DB_utility.php
│ ├── drivers/
│ │ ├── cubrid/
│ │ │ ├── cubrid_driver.php
│ │ │ ├── cubrid_forge.php
│ │ │ ├── cubrid_result.php
│ │ │ ├── cubrid_utility.php
│ │ │ └── index.html
│ │ ├── ibase/
│ │ │ ├── ibase_driver.php
│ │ │ ├── ibase_forge.php
│ │ │ ├── ibase_result.php
│ │ │ ├── ibase_utility.php
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── mssql/
│ │ │ ├── index.html
│ │ │ ├── mssql_driver.php
│ │ │ ├── mssql_forge.php
│ │ │ ├── mssql_result.php
│ │ │ └── mssql_utility.php
│ │ ├── mysql/
│ │ │ ├── index.html
│ │ │ ├── mysql_driver.php
│ │ │ ├── mysql_forge.php
│ │ │ ├── mysql_result.php
│ │ │ └── mysql_utility.php
│ │ ├── mysqli/
│ │ │ ├── index.html
│ │ │ ├── mysqli_driver.php
│ │ │ ├── mysqli_forge.php
│ │ │ ├── mysqli_result.php
│ │ │ └── mysqli_utility.php
│ │ ├── oci8/
│ │ │ ├── index.html
│ │ │ ├── oci8_driver.php
│ │ │ ├── oci8_forge.php
│ │ │ ├── oci8_result.php
│ │ │ └── oci8_utility.php
│ │ ├── odbc/
│ │ │ ├── index.html
│ │ │ ├── odbc_driver.php
│ │ │ ├── odbc_forge.php
│ │ │ ├── odbc_result.php
│ │ │ └── odbc_utility.php
│ │ ├── pdo/
│ │ │ ├── index.html
│ │ │ ├── pdo_driver.php
│ │ │ ├── pdo_forge.php
│ │ │ ├── pdo_result.php
│ │ │ ├── pdo_utility.php
│ │ │ └── subdrivers/
│ │ │ ├── index.html
│ │ │ ├── pdo_4d_driver.php
│ │ │ ├── pdo_4d_forge.php
│ │ │ ├── pdo_cubrid_driver.php
│ │ │ ├── pdo_cubrid_forge.php
│ │ │ ├── pdo_dblib_driver.php
│ │ │ ├── pdo_dblib_forge.php
│ │ │ ├── pdo_firebird_driver.php
│ │ │ ├── pdo_firebird_forge.php
│ │ │ ├── pdo_ibm_driver.php
│ │ │ ├── pdo_ibm_forge.php
│ │ │ ├── pdo_informix_driver.php
│ │ │ ├── pdo_informix_forge.php
│ │ │ ├── pdo_mysql_driver.php
│ │ │ ├── pdo_mysql_forge.php
│ │ │ ├── pdo_oci_driver.php
│ │ │ ├── pdo_oci_forge.php
│ │ │ ├── pdo_odbc_driver.php
│ │ │ ├── pdo_odbc_forge.php
│ │ │ ├── pdo_pgsql_driver.php
│ │ │ ├── pdo_pgsql_forge.php
│ │ │ ├── pdo_sqlite_driver.php
│ │ │ ├── pdo_sqlite_forge.php
│ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ └── pdo_sqlsrv_forge.php
│ │ ├── postgre/
│ │ │ ├── index.html
│ │ │ ├── postgre_driver.php
│ │ │ ├── postgre_forge.php
│ │ │ ├── postgre_result.php
│ │ │ └── postgre_utility.php
│ │ ├── sqlite/
│ │ │ ├── index.html
│ │ │ ├── sqlite_driver.php
│ │ │ ├── sqlite_forge.php
│ │ │ ├── sqlite_result.php
│ │ │ └── sqlite_utility.php
│ │ ├── sqlite3/
│ │ │ ├── index.html
│ │ │ ├── sqlite3_driver.php
│ │ │ ├── sqlite3_forge.php
│ │ │ ├── sqlite3_result.php
│ │ │ └── sqlite3_utility.php
│ │ └── sqlsrv/
│ │ ├── index.html
│ │ ├── sqlsrv_driver.php
│ │ ├── sqlsrv_forge.php
│ │ ├── sqlsrv_result.php
│ │ └── sqlsrv_utility.php
│ └── index.html
├── fonts/
│ └── index.html
├── helpers/
│ ├── array_helper.php
│ ├── captcha_helper.php
│ ├── cookie_helper.php
│ ├── date_helper.php
│ ├── directory_helper.php
│ ├── download_helper.php
│ ├── email_helper.php
│ ├── file_helper.php
│ ├── form_helper.php
│ ├── html_helper.php
│ ├── index.html
│ ├── inflector_helper.php
│ ├── language_helper.php
│ ├── number_helper.php
│ ├── path_helper.php
│ ├── security_helper.php
│ ├── smiley_helper.php
│ ├── string_helper.php
│ ├── text_helper.php
│ ├── typography_helper.php
│ ├── url_helper.php
│ └── xml_helper.php
├── index.html
├── language/
│ ├── english/
│ │ ├── calendar_lang.php
│ │ ├── date_lang.php
│ │ ├── db_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── ftp_lang.php
│ │ ├── imglib_lang.php
│ │ ├── index.html
│ │ ├── migration_lang.php
│ │ ├── number_lang.php
│ │ ├── pagination_lang.php
│ │ ├── profiler_lang.php
│ │ ├── unit_test_lang.php
│ │ └── upload_lang.php
│ └── index.html
└── libraries/
├── Cache/
│ ├── Cache.php
│ ├── drivers/
│ │ ├── Cache_apc.php
│ │ ├── Cache_dummy.php
│ │ ├── Cache_file.php
│ │ ├── Cache_memcached.php
│ │ ├── Cache_redis.php
│ │ ├── Cache_wincache.php
│ │ └── index.html
│ └── index.html
├── Calendar.php
├── Cart.php
├── Driver.php
├── Email.php
├── Encrypt.php
├── Encryption.php
├── Form_validation.php
├── Ftp.php
├── Image_lib.php
├── Javascript/
│ ├── Jquery.php
│ └── index.html
├── Javascript.php
├── Migration.php
├── Pagination.php
├── Parser.php
├── Profiler.php
├── Session/
│ ├── CI_Session_driver_interface.php
│ ├── OldSessionWrapper.php
│ ├── PHP8SessionWrapper.php
│ ├── Session.php
│ ├── SessionHandlerInterface.php
│ ├── SessionUpdateTimestampHandlerInterface.php
│ ├── Session_driver.php
│ ├── drivers/
│ │ ├── Session_database_driver.php
│ │ ├── Session_files_driver.php
│ │ ├── Session_memcached_driver.php
│ │ ├── Session_redis_driver.php
│ │ └── index.html
│ └── index.html
├── Table.php
├── Trackback.php
├── Typography.php
├── Unit_test.php
├── Upload.php
├── User_agent.php
├── Xmlrpc.php
├── Xmlrpcs.php
├── Zip.php
└── index.html
Showing preview only (802K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (9227 symbols across 764 files)
FILE: application/controllers/Home.php
class Home (line 5) | class Home extends MY_Controller
method __construct (line 10) | public function __construct()
method index (line 15) | public function index()
method logout (line 24) | public function logout()
method getInvoiceFooter (line 36) | public function getInvoiceFooter()
method publicAcceptInvoice (line 49) | public function publicAcceptInvoice($uniqid)
FILE: application/controllers/Loader.php
class Loader (line 7) | class Loader extends MY_Controller
method __construct (line 10) | public function __construct()
method jsFile (line 20) | public function jsFile($file = null)
FILE: application/controllers/Registration.php
class Registration (line 5) | class Registration extends MY_Controller
method index (line 8) | public function index()
method login (line 40) | public function login()
method loginCheck (line 52) | private function loginCheck()
FILE: application/core/ADMIN_Controller.php
class ADMIN_Controller (line 11) | class ADMIN_Controller extends HEAD_Controller
method __construct (line 16) | public function __construct()
method render (line 25) | protected function render($view, $head, $data = null)
method login_check (line 37) | private function login_check()
method saveHistory (line 46) | protected function saveHistory($activity)
FILE: application/core/HEAD_Controller.php
class HEAD_Controller (line 3) | class HEAD_Controller extends MX_Controller
method __construct (line 6) | public function __construct()
FILE: application/core/MY_Controller.php
class MY_Controller (line 3) | class MY_Controller extends HEAD_Controller
method __construct (line 6) | public function __construct()
method render (line 11) | public function render($view, $head, $data = null)
method setUserLogin (line 18) | public function setUserLogin($email, $type)
FILE: application/core/MY_Loader.php
class MY_Loader (line 6) | class MY_Loader extends MX_Loader {}
FILE: application/core/MY_Router.php
class MY_Router (line 6) | class MY_Router extends MX_Router {}
FILE: application/core/USER_Controller.php
class USER_Controller (line 3) | class USER_Controller extends HEAD_Controller
method __construct (line 11) | public function __construct()
method render (line 27) | public function render($view, $head, $data = null)
method loginCheck (line 46) | private function loginCheck()
method loadPermissions (line 69) | private function loadPermissions()
method firmCkecker (line 84) | private function firmCkecker()
method checkExceededLimitOfCompanies (line 136) | private function checkExceededLimitOfCompanies()
method saveHistory (line 153) | public function saveHistory()
method validateCompanyDetails (line 158) | protected function validateCompanyDetails($checkBulstat = true)
method addCompanyFolders (line 194) | protected function addCompanyFolders($companyId)
method checkBulstatIsFree (line 201) | private function checkBulstatIsFree()
method loadValueStores (line 207) | private function loadValueStores()
FILE: application/helpers/except_letters_helper.php
function except_letters (line 7) | function except_letters($str)
FILE: application/helpers/full_document_number_helper.php
function full_document_number (line 6) | function full_document_number($inv, $length = 10, $padding = '0')
FILE: application/helpers/get_client_ip_address_helper.php
function get_client_ip_address (line 7) | function get_client_ip_address()
FILE: application/helpers/geterror_helper.php
function geterror (line 9) | function geterror($input)
FILE: application/helpers/lang_url_helper.php
function lang_url (line 12) | function lang_url($goto = null)
FILE: application/helpers/pagination_helper.php
function pagination (line 10) | function pagination($url, $rowscount, $per_page, $segment = 2)
FILE: application/helpers/thisyeardates_helper.php
function thisyeardates (line 11) | function thisyeardates()
FILE: application/helpers/uploader_helper.php
function uploader (line 7) | function uploader($path, $inputName = false)
FILE: application/libraries/HtmlToPdf.php
class HtmlToPdf (line 9) | class HtmlToPdf
method generatePdf (line 15) | public function generatePdf(
method setNum (line 112) | public function setNum($num)
method setType (line 117) | public function setType($type)
method setPageTranslate (line 122) | public function setPageTranslate($translation)
FILE: application/libraries/Language.php
class Language (line 11) | class Language
method __construct (line 17) | public function __construct()
method setLanguage (line 25) | private function setLanguage()
method getUrlAbbrevation (line 62) | public function getUrlAbbrevation()
FILE: application/libraries/MailSend.php
class MailSend (line 9) | class MailSend
method loadMailerSettings (line 14) | public function loadMailerSettings()
method sendTo (line 28) | public function sendTo($toEmail, $recipientName, $subject, $msg)
FILE: application/libraries/PHPExcel/PHPExcel.php
class PHPExcel (line 34) | class PHPExcel
method hasMacros (line 146) | public function hasMacros()
method setHasMacros (line 156) | public function setHasMacros($hasMacros = false)
method setMacrosCode (line 166) | public function setMacrosCode($MacrosCode = null)
method getMacrosCode (line 177) | public function getMacrosCode()
method setMacrosCertificate (line 187) | public function setMacrosCertificate($Certificate = null)
method hasMacrosCertificate (line 197) | public function hasMacrosCertificate()
method getMacrosCertificate (line 207) | public function getMacrosCertificate()
method discardMacros (line 216) | public function discardMacros()
method setRibbonXMLData (line 227) | public function setRibbonXMLData($Target = null, $XMLData = null)
method getRibbonXMLData (line 241) | public function getRibbonXMLData($What = 'all') //we need some constan...
method setRibbonBinObjects (line 264) | public function setRibbonBinObjects($BinObjectsNames = null, $BinObjec...
method getExtensionOnly (line 276) | private function getExtensionOnly($ThePath)
method getRibbonBinObjects (line 285) | public function getRibbonBinObjects($What = 'all')
method hasRibbon (line 317) | public function hasRibbon()
method hasRibbonBinObjects (line 327) | public function hasRibbonBinObjects()
method sheetCodeNameExists (line 338) | public function sheetCodeNameExists($pSheetCodeName)
method getSheetByCodeName (line 349) | public function getSheetByCodeName($pName = '')
method __construct (line 364) | public function __construct()
method __destruct (line 396) | public function __destruct()
method disconnectWorksheets (line 407) | public function disconnectWorksheets()
method getCalculationEngine (line 423) | public function getCalculationEngine()
method getProperties (line 433) | public function getProperties()
method setProperties (line 443) | public function setProperties(PHPExcel_DocumentProperties $pValue)
method getSecurity (line 453) | public function getSecurity()
method setSecurity (line 463) | public function setSecurity(PHPExcel_DocumentSecurity $pValue)
method getActiveSheet (line 475) | public function getActiveSheet()
method createSheet (line 487) | public function createSheet($iSheetIndex = null)
method sheetNameExists (line 500) | public function sheetNameExists($pSheetName)
method addSheet (line 513) | public function addSheet(PHPExcel_Worksheet $pSheet, $iSheetIndex = null)
method removeSheetByIndex (line 554) | public function removeSheetByIndex($pIndex = 0)
method getSheet (line 580) | public function getSheet($pIndex = 0)
method getAllSheets (line 597) | public function getAllSheets()
method getSheetByName (line 608) | public function getSheetByName($pName = '')
method getIndex (line 627) | public function getIndex(PHPExcel_Worksheet $pSheet)
method setIndexByName (line 646) | public function setIndexByName($sheetName, $newIndex)
method getSheetCount (line 668) | public function getSheetCount()
method getActiveSheetIndex (line 678) | public function getActiveSheetIndex()
method setActiveSheetIndex (line 690) | public function setActiveSheetIndex($pIndex = 0)
method setActiveSheetIndexByName (line 711) | public function setActiveSheetIndexByName($pValue = '')
method getSheetNames (line 726) | public function getSheetNames()
method addExternalSheet (line 745) | public function addExternalSheet(PHPExcel_Worksheet $pSheet, $iSheetIn...
method getNamedRanges (line 776) | public function getNamedRanges()
method addNamedRange (line 787) | public function addNamedRange(PHPExcel_NamedRange $namedRange)
method getNamedRange (line 806) | public function getNamedRange($namedRange, PHPExcel_Worksheet $pSheet ...
method removeNamedRange (line 832) | public function removeNamedRange($namedRange, PHPExcel_Worksheet $pShe...
method getWorksheetIterator (line 851) | public function getWorksheetIterator()
method copy (line 861) | public function copy()
method __clone (line 877) | public function __clone()
method getCellXfCollection (line 891) | public function getCellXfCollection()
method getCellXfByIndex (line 902) | public function getCellXfByIndex($pIndex = 0)
method getCellXfByHashCode (line 913) | public function getCellXfByHashCode($pValue = '')
method cellXfExists (line 929) | public function cellXfExists($pCellStyle = null)
method getDefaultStyle (line 940) | public function getDefaultStyle()
method addCellXf (line 953) | public function addCellXf(PHPExcel_Style $style)
method removeCellXfByIndex (line 965) | public function removeCellXfByIndex($pIndex = 0)
method getCellXfSupervisor (line 995) | public function getCellXfSupervisor()
method getCellStyleXfCollection (line 1005) | public function getCellStyleXfCollection()
method getCellStyleXfByIndex (line 1016) | public function getCellStyleXfByIndex($pIndex = 0)
method getCellStyleXfByHashCode (line 1027) | public function getCellStyleXfByHashCode($pValue = '')
method addCellStyleXf (line 1042) | public function addCellStyleXf(PHPExcel_Style $pStyle)
method removeCellStyleXfByIndex (line 1054) | public function removeCellStyleXfByIndex($pIndex = 0)
method garbageCollect (line 1067) | public function garbageCollect()
method getID (line 1149) | public function getID()
FILE: application/libraries/PHPExcel/PHPExcel/Autoloader.php
class PHPExcel_Autoloader (line 38) | class PHPExcel_Autoloader
method register (line 44) | public static function register()
method load (line 63) | public static function load($pClassName)
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/APC.php
class PHPExcel_CachedObjectStorage_APC (line 28) | class PHPExcel_CachedObjectStorage_APC extends PHPExcel_CachedObjectStor...
method storeData (line 54) | protected function storeData()
method addCacheData (line 81) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method isDataSet (line 103) | public function isDataSet($pCoord)
method getCacheData (line 130) | public function getCacheData($pCoord)
method getCellList (line 165) | public function getCellList()
method deleteCacheData (line 181) | public function deleteCacheData($pCoord)
method copyCellCollection (line 198) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 227) | public function unsetWorksheetCells()
method __construct (line 249) | public function __construct(PHPExcel_Worksheet $parent, $arguments)
method __destruct (line 265) | public function __destruct()
method cacheMethodIsAvailable (line 279) | public static function cacheMethodIsAvailable()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/CacheBase.php
class PHPExcel_CachedObjectStorage_CacheBase (line 28) | abstract class PHPExcel_CachedObjectStorage_CacheBase
method __construct (line 71) | public function __construct(PHPExcel_Worksheet $parent)
method getParent (line 84) | public function getParent()
method isDataSet (line 95) | public function isDataSet($pCoord)
method moveCell (line 111) | public function moveCell($fromAddress, $toAddress)
method updateCacheData (line 132) | public function updateCacheData(PHPExcel_Cell $cell)
method deleteCacheData (line 143) | public function deleteCacheData($pCoord)
method getCellList (line 162) | public function getCellList()
method getSortedCellList (line 172) | public function getSortedCellList()
method getHighestRowAndColumn (line 189) | public function getHighestRowAndColumn()
method getCurrentAddress (line 216) | public function getCurrentAddress()
method getCurrentColumn (line 226) | public function getCurrentColumn()
method getCurrentRow (line 237) | public function getCurrentRow()
method getHighestColumn (line 250) | public function getHighestColumn($row = null)
method getHighestRow (line 275) | public function getHighestRow($column = null)
method getUniqueID (line 299) | protected function getUniqueID()
method copyCellCollection (line 315) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method removeRow (line 332) | public function removeRow($row)
method removeColumn (line 348) | public function removeColumn($column)
method cacheMethodIsAvailable (line 364) | public static function cacheMethodIsAvailable()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/DiscISAM.php
class PHPExcel_CachedObjectStorage_DiscISAM (line 28) | class PHPExcel_CachedObjectStorage_DiscISAM extends PHPExcel_CachedObjec...
method storeData (line 58) | protected function storeData()
method addCacheData (line 82) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 102) | public function getCacheData($pCoord)
method getCellList (line 131) | public function getCellList()
method copyCellCollection (line 145) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 162) | public function unsetWorksheetCells()
method __construct (line 183) | public function __construct(PHPExcel_Worksheet $parent, $arguments)
method __destruct (line 200) | public function __destruct()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/ICache.php
type PHPExcel_CachedObjectStorage_ICache (line 28) | interface PHPExcel_CachedObjectStorage_ICache
method addCacheData (line 38) | public function addCacheData($pCoord, PHPExcel_Cell $cell);
method updateCacheData (line 47) | public function updateCacheData(PHPExcel_Cell $cell);
method getCacheData (line 56) | public function getCacheData($pCoord);
method deleteCacheData (line 64) | public function deleteCacheData($pCoord);
method isDataSet (line 72) | public function isDataSet($pCoord);
method getCellList (line 79) | public function getCellList();
method getSortedCellList (line 86) | public function getSortedCellList();
method copyCellCollection (line 94) | public function copyCellCollection(PHPExcel_Worksheet $parent);
method cacheMethodIsAvailable (line 102) | public static function cacheMethodIsAvailable();
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Igbinary.php
class PHPExcel_CachedObjectStorage_Igbinary (line 28) | class PHPExcel_CachedObjectStorage_Igbinary extends PHPExcel_CachedObjec...
method storeData (line 37) | protected function storeData()
method addCacheData (line 57) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 78) | public function getCacheData($pCoord)
method getCellList (line 107) | public function getCellList()
method unsetWorksheetCells (line 122) | public function unsetWorksheetCells()
method cacheMethodIsAvailable (line 141) | public static function cacheMethodIsAvailable()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Memcache.php
class PHPExcel_CachedObjectStorage_Memcache (line 28) | class PHPExcel_CachedObjectStorage_Memcache extends PHPExcel_CachedObjec...
method storeData (line 59) | protected function storeData()
method addCacheData (line 85) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method isDataSet (line 107) | public function isDataSet($pCoord)
method getCacheData (line 134) | public function getCacheData($pCoord)
method getCellList (line 169) | public function getCellList()
method deleteCacheData (line 184) | public function deleteCacheData($pCoord)
method copyCellCollection (line 199) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 228) | public function unsetWorksheetCells()
method __construct (line 250) | public function __construct(PHPExcel_Worksheet $parent, $arguments)
method failureCallback (line 278) | public function failureCallback($host, $port)
method __destruct (line 286) | public function __destruct()
method cacheMethodIsAvailable (line 300) | public static function cacheMethodIsAvailable()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Memory.php
class PHPExcel_CachedObjectStorage_Memory (line 28) | class PHPExcel_CachedObjectStorage_Memory extends PHPExcel_CachedObjectS...
method storeData (line 35) | protected function storeData()
method addCacheData (line 47) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 65) | public function getCacheData($pCoord)
method copyCellCollection (line 87) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 104) | public function unsetWorksheetCells()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/MemoryGZip.php
class PHPExcel_CachedObjectStorage_MemoryGZip (line 28) | class PHPExcel_CachedObjectStorage_MemoryGZip extends PHPExcel_CachedObj...
method storeData (line 37) | protected function storeData()
method addCacheData (line 57) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 78) | public function getCacheData($pCoord)
method getCellList (line 107) | public function getCellList()
method unsetWorksheetCells (line 122) | public function unsetWorksheetCells()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/MemorySerialized.php
class PHPExcel_CachedObjectStorage_MemorySerialized (line 28) | class PHPExcel_CachedObjectStorage_MemorySerialized extends PHPExcel_Cac...
method storeData (line 37) | protected function storeData()
method addCacheData (line 56) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 76) | public function getCacheData($pCoord)
method getCellList (line 104) | public function getCellList()
method unsetWorksheetCells (line 118) | public function unsetWorksheetCells()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/PHPTemp.php
class PHPExcel_CachedObjectStorage_PHPTemp (line 28) | class PHPExcel_CachedObjectStorage_PHPTemp extends PHPExcel_CachedObject...
method storeData (line 51) | protected function storeData()
method addCacheData (line 76) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 97) | public function getCacheData($pCoord)
method getCellList (line 126) | public function getCellList()
method copyCellCollection (line 141) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 159) | public function unsetWorksheetCells()
method __construct (line 180) | public function __construct(PHPExcel_Worksheet $parent, $arguments)
method __destruct (line 193) | public function __destruct()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/SQLite.php
class PHPExcel_CachedObjectStorage_SQLite (line 28) | class PHPExcel_CachedObjectStorage_SQLite extends PHPExcel_CachedObjectS...
method storeData (line 51) | protected function storeData()
method addCacheData (line 72) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 92) | public function getCacheData($pCoord)
method isDataSet (line 126) | public function isDataSet($pCoord)
method deleteCacheData (line 150) | public function deleteCacheData($pCoord)
method moveCell (line 173) | public function moveCell($fromAddress, $toAddress)
method getCellList (line 199) | public function getCellList()
method copyCellCollection (line 225) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 247) | public function unsetWorksheetCells()
method __construct (line 265) | public function __construct(PHPExcel_Worksheet $parent)
method __destruct (line 285) | public function __destruct()
method cacheMethodIsAvailable (line 299) | public static function cacheMethodIsAvailable()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/SQLite3.php
class PHPExcel_CachedObjectStorage_SQLite3 (line 28) | class PHPExcel_CachedObjectStorage_SQLite3 extends PHPExcel_CachedObject...
method storeData (line 79) | protected function storeData()
method addCacheData (line 103) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method getCacheData (line 123) | public function getCacheData($pCoord)
method isDataSet (line 158) | public function isDataSet($pCoord)
method deleteCacheData (line 181) | public function deleteCacheData($pCoord)
method moveCell (line 205) | public function moveCell($fromAddress, $toAddress)
method getCellList (line 232) | public function getCellList()
method copyCellCollection (line 258) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 280) | public function unsetWorksheetCells()
method __construct (line 298) | public function __construct(PHPExcel_Worksheet $parent)
method __destruct (line 323) | public function __destruct()
method cacheMethodIsAvailable (line 338) | public static function cacheMethodIsAvailable()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Wincache.php
class PHPExcel_CachedObjectStorage_Wincache (line 28) | class PHPExcel_CachedObjectStorage_Wincache extends PHPExcel_CachedObjec...
method storeData (line 52) | protected function storeData()
method addCacheData (line 83) | public function addCacheData($pCoord, PHPExcel_Cell $cell)
method isDataSet (line 103) | public function isDataSet($pCoord)
method getCacheData (line 130) | public function getCacheData($pCoord)
method getCellList (line 168) | public function getCellList()
method deleteCacheData (line 183) | public function deleteCacheData($pCoord)
method copyCellCollection (line 198) | public function copyCellCollection(PHPExcel_Worksheet $parent)
method unsetWorksheetCells (line 229) | public function unsetWorksheetCells()
method __construct (line 251) | public function __construct(PHPExcel_Worksheet $parent, $arguments)
method __destruct (line 267) | public function __destruct()
method cacheMethodIsAvailable (line 281) | public static function cacheMethodIsAvailable()
FILE: application/libraries/PHPExcel/PHPExcel/CachedObjectStorageFactory.php
class PHPExcel_CachedObjectStorageFactory (line 28) | class PHPExcel_CachedObjectStorageFactory
method getCacheStorageMethod (line 119) | public static function getCacheStorageMethod()
method getCacheStorageClass (line 129) | public static function getCacheStorageClass()
method getAllCacheStorageMethods (line 139) | public static function getAllCacheStorageMethods()
method getCacheStorageMethods (line 149) | public static function getCacheStorageMethods()
method initialize (line 169) | public static function initialize($method = self::cache_in_memory, $ar...
method getInstance (line 201) | public static function getInstance(PHPExcel_Worksheet $parent)
method finalize (line 225) | public static function finalize()
FILE: application/libraries/PHPExcel/PHPExcel/CalcEngine/CyclicReferenceStack.php
class PHPExcel_CalcEngine_CyclicReferenceStack (line 28) | class PHPExcel_CalcEngine_CyclicReferenceStack
method count (line 42) | public function count()
method push (line 52) | public function push($value)
method pop (line 62) | public function pop()
method onStack (line 72) | public function onStack($value)
method clear (line 80) | public function clear()
method showStack (line 90) | public function showStack()
FILE: application/libraries/PHPExcel/PHPExcel/CalcEngine/Logger.php
class PHPExcel_CalcEngine_Logger (line 28) | class PHPExcel_CalcEngine_Logger
method __construct (line 68) | public function __construct(PHPExcel_CalcEngine_CyclicReferenceStack $...
method setWriteDebugLog (line 78) | public function setWriteDebugLog($pValue = false)
method getWriteDebugLog (line 88) | public function getWriteDebugLog()
method setEchoDebugLog (line 98) | public function setEchoDebugLog($pValue = false)
method getEchoDebugLog (line 108) | public function getEchoDebugLog()
method writeDebugLog (line 116) | public function writeDebugLog()
method clearLog (line 137) | public function clearLog()
method getLog (line 147) | public function getLog()
FILE: application/libraries/PHPExcel/PHPExcel/Calculation.php
class PHPExcel_Calculation (line 52) | class PHPExcel_Calculation
method __construct (line 2071) | public function __construct(PHPExcel $workbook = null)
method loadLocales (line 2081) | private static function loadLocales()
method getInstance (line 2100) | public static function getInstance(PHPExcel $workbook = null)
method __destruct (line 2120) | public function __destruct()
method flushInstance (line 2132) | public function flushInstance()
method getDebugLog (line 2144) | public function getDebugLog()
method __clone (line 2155) | final public function __clone()
method getTRUE (line 2167) | public static function getTRUE()
method getFALSE (line 2178) | public static function getFALSE()
method setArrayReturnType (line 2190) | public static function setArrayReturnType($returnType)
method getArrayReturnType (line 2208) | public static function getArrayReturnType()
method getCalculationCacheEnabled (line 2220) | public function getCalculationCacheEnabled()
method setCalculationCacheEnabled (line 2231) | public function setCalculationCacheEnabled($pValue = true)
method enableCalculationCache (line 2241) | public function enableCalculationCache()
method disableCalculationCache (line 2250) | public function disableCalculationCache()
method clearCalculationCache (line 2259) | public function clearCalculationCache()
method clearCalculationCacheForWorksheet (line 2269) | public function clearCalculationCacheForWorksheet($worksheetName)
method renameCalculationCacheForWorksheet (line 2282) | public function renameCalculationCacheForWorksheet($fromWorksheetName,...
method getLocale (line 2296) | public function getLocale()
method setLocale (line 2308) | public function setLocale($locale = 'en_us')
method translateSeparator (line 2388) | public static function translateSeparator($fromSeparator, $toSeparator...
method translateFormula (line 2409) | private static function translateFormula($from, $to, $formula, $fromSe...
method _translateFormulaToLocale (line 2443) | public function _translateFormulaToLocale($formula)
method _translateFormulaToEnglish (line 2473) | public function _translateFormulaToEnglish($formula)
method localeFunc (line 2499) | public static function localeFunc($function)
method wrapResult (line 2523) | public static function wrapResult($value)
method unwrapResult (line 2548) | public static function unwrapResult($value)
method calculate (line 2573) | public function calculate(PHPExcel_Cell $pCell = null)
method calculateCellValue (line 2592) | public function calculateCellValue(PHPExcel_Cell $pCell = null, $reset...
method parseFormula (line 2667) | public function parseFormula($formula)
function calculateFormula (line 2694) | function calculateFormula($formula, $cellID = null, PHPExcel_Cell $pCell...
function getValueFromCache (line 2727) | function getValueFromCache($cellReference, &$cellValue)
function saveValueToCache (line 2741) | function saveValueToCache($cellReference, $cellValue)
function _calculateFormulaValue (line 2757) | function _calculateFormulaValue($formula, $cellID = null, PHPExcel_Cell ...
function resizeMatricesExtend (line 2933) | function resizeMatricesExtend(&$matrix1, &$matrix2, $matrix1Rows, $matri...
function showValue (line 2977) | function showValue($value)
function showTypeDetails (line 3013) | function showTypeDetails($value)
function convertMatrixReferences (line 3045) | function convertMatrixReferences($formula)
function mkMatrix (line 3097) | function mkMatrix()
function dataTestReference (line 3492) | function dataTestReference(&$operandData)
function processTokenStack (line 3508) | function processTokenStack($tokens, $cellID = null, PHPExcel_Cell $pCell...
function validateBinaryOperand (line 3923) | function validateBinaryOperand($cellID, &$operand, &$stack)
function executeBinaryComparisonOperation (line 3960) | function executeBinaryComparisonOperation($cellID, $operand1, $operand2,...
function strcmpLowercaseFirst (line 4086) | function strcmpLowercaseFirst($str1, $str2)
function executeNumericBinaryOperation (line 4094) | function executeNumericBinaryOperation($cellID, $operand1, $operand2, $o...
function raiseFormulaError (line 4169) | function raiseFormulaError($errorMessage)
function extractCellRange (line 4189) | function extractCellRange(&$pRange = 'A1', PHPExcel_Worksheet $pSheet = ...
function extractNamedRange (line 4247) | function extractNamedRange(&$pRange = 'A1', PHPExcel_Worksheet $pSheet =...
function isImplemented (line 4331) | function isImplemented($pFunction = '')
function listFunctions (line 4347) | function listFunctions()
function listAllFunctionNames (line 4370) | function listAllFunctionNames()
function listFunctionNames (line 4380) | function listFunctionNames()
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Database.php
class PHPExcel_Calculation_Database (line 37) | class PHPExcel_Calculation_Database
method fieldExtract (line 57) | private static function fieldExtract($database, $field)
method filter (line 89) | private static function filter($database, $criteria)
method getFilteredColumn (line 145) | private static function getFilteredColumn($database, $field, $criteria)
method DAVERAGE (line 185) | public static function DAVERAGE($database, $field, $criteria)
method DCOUNT (line 233) | public static function DCOUNT($database, $field, $criteria)
method DCOUNTA (line 277) | public static function DCOUNTA($database, $field, $criteria)
method DGET (line 327) | public static function DGET($database, $field, $criteria)
method DMAX (line 372) | public static function DMAX($database, $field, $criteria)
method DMIN (line 414) | public static function DMIN($database, $field, $criteria)
method DPRODUCT (line 455) | public static function DPRODUCT($database, $field, $criteria)
method DSTDEV (line 497) | public static function DSTDEV($database, $field, $criteria)
method DSTDEVP (line 539) | public static function DSTDEVP($database, $field, $criteria)
method DSUM (line 580) | public static function DSUM($database, $field, $criteria)
method DVAR (line 622) | public static function DVAR($database, $field, $criteria)
method DVARP (line 664) | public static function DVARP($database, $field, $criteria)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/DateTime.php
class PHPExcel_Calculation_DateTime (line 37) | class PHPExcel_Calculation_DateTime
method isLeapYear (line 45) | public static function isLeapYear($year)
method dateDiff360 (line 63) | private static function dateDiff360($startDay, $startMonth, $startYear...
method getDateValue (line 94) | public static function getDateValue($dateValue)
method getTimeValue (line 120) | private static function getTimeValue($timeValue)
method adjustDateByMonths (line 130) | private static function adjustDateByMonths($dateValue = 0, $adjustment...
method DATETIMENOW (line 176) | public static function DATETIMENOW()
method DATENOW (line 217) | public static function DATENOW()
method DATE (line 290) | public static function DATE($year = 0, $month = 1, $day = 1)
method TIME (line 385) | public static function TIME($hour = 0, $minute = 0, $second = 0)
method DATEVALUE (line 493) | public static function DATEVALUE($dateValue = 1)
method TIMEVALUE (line 614) | public static function TIMEVALUE($timeValue)
method DATEDIF (line 657) | public static function DATEDIF($startDate = 0, $endDate = 0, $unit = 'D')
method DAYS360 (line 780) | public static function DAYS360($startDate = 0, $endDate = 0, $method =...
method YEARFRAC (line 836) | public static function YEARFRAC($startDate = 0, $endDate = 0, $method ...
method NETWORKDAYS (line 932) | public static function NETWORKDAYS($startDate, $endDate)
method WORKDAY (line 1019) | public static function WORKDAY($startDate, $endDays)
method DAYOFMONTH (line 1124) | public static function DAYOFMONTH($dateValue = 1)
method DAYOFWEEK (line 1162) | public static function DAYOFWEEK($dateValue = 1, $style = 1)
method WEEKOFYEAR (line 1238) | public static function WEEKOFYEAR($dateValue = 1, $method = 1)
method MONTHOFYEAR (line 1285) | public static function MONTHOFYEAR($dateValue = 1)
method YEAR (line 1317) | public static function YEAR($dateValue = 1)
method HOUROFDAY (line 1349) | public static function HOUROFDAY($timeValue = 0)
method MINUTEOFHOUR (line 1390) | public static function MINUTEOFHOUR($timeValue = 0)
method SECONDOFMINUTE (line 1431) | public static function SECONDOFMINUTE($timeValue = 0)
method EDATE (line 1478) | public static function EDATE($dateValue = 1, $adjustmentMonths = 0)
method EOMONTH (line 1524) | public static function EOMONTH($dateValue = 1, $adjustmentMonths = 0)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Engineering.php
class PHPExcel_Calculation_Engineering (line 40) | class PHPExcel_Calculation_Engineering
method parseComplex (line 755) | public static function parseComplex($complexNumber)
method cleanComplex (line 810) | private static function cleanComplex($complexNumber)
method nbrConversionFormat (line 834) | private static function nbrConversionFormat($xVal, $places)
method BESSELI (line 867) | public static function BESSELI($x, $ord)
method BESSELJ (line 920) | public static function BESSELJ($x, $ord)
method besselK0 (line 957) | private static function besselK0($fNum)
method besselK1 (line 975) | private static function besselK1($fNum)
method BESSELK (line 1012) | public static function BESSELK($x, $ord)
method besselY0 (line 1043) | private static function besselY0($fNum)
method besselY1 (line 1062) | private static function besselY1($fNum)
method BESSELY (line 1096) | public static function BESSELY($x, $ord)
method BINTODEC (line 1145) | public static function BINTODEC($x)
method BINTOHEX (line 1198) | public static function BINTOHEX($x, $places = null)
method BINTOOCT (line 1253) | public static function BINTOOCT($x, $places = null)
method DECTOBIN (line 1312) | public static function DECTOBIN($x, $places = null)
method DECTOHEX (line 1369) | public static function DECTOHEX($x, $places = null)
method DECTOOCT (line 1424) | public static function DECTOOCT($x, $places = null)
method HEXTOBIN (line 1482) | public static function HEXTOBIN($x, $places = null)
method HEXTODEC (line 1519) | public static function HEXTODEC($x)
method HEXTOOCT (line 1566) | public static function HEXTOOCT($x, $places = null)
method OCTTOBIN (line 1618) | public static function OCTTOBIN($x, $places = null)
method OCTTODEC (line 1655) | public static function OCTTODEC($x)
method OCTTOHEX (line 1699) | public static function OCTTOHEX($x, $places = null)
method COMPLEX (line 1733) | public static function COMPLEX($realNumber = 0.0, $imaginary = 0.0, $s...
method IMAGINARY (line 1787) | public static function IMAGINARY($complexNumber)
method IMREAL (line 1809) | public static function IMREAL($complexNumber)
method IMABS (line 1829) | public static function IMABS($complexNumber)
method IMARGUMENT (line 1854) | public static function IMARGUMENT($complexNumber)
method IMCONJUGATE (line 1889) | public static function IMCONJUGATE($complexNumber)
method IMCOS (line 1920) | public static function IMCOS($complexNumber)
method IMSIN (line 1951) | public static function IMSIN($complexNumber)
method IMSQRT (line 1980) | public static function IMSQRT($complexNumber)
method IMLN (line 2010) | public static function IMLN($complexNumber)
method IMLOG10 (line 2042) | public static function IMLOG10($complexNumber)
method IMLOG2 (line 2069) | public static function IMLOG2($complexNumber)
method IMEXP (line 2096) | public static function IMEXP($complexNumber)
method IMPOWER (line 2130) | public static function IMPOWER($complexNumber, $realNumber)
method IMDIV (line 2166) | public static function IMDIV($complexDividend, $complexDivisor)
method IMSUB (line 2211) | public static function IMSUB($complexNumber1, $complexNumber2)
method IMSUM (line 2244) | public static function IMSUM()
method IMPRODUCT (line 2283) | public static function IMPRODUCT()
method DELTA (line 2326) | public static function DELTA($a, $b = 0)
method GESTEP (line 2350) | public static function GESTEP($number, $step = 0)
method erfVal (line 2364) | public static function erfVal($x)
method ERF (line 2405) | public static function ERF($lower, $upper = null)
method erfcVal (line 2427) | private static function erfcVal($x)
method ERFC (line 2471) | public static function ERFC($x)
method getConversionGroups (line 2488) | public static function getConversionGroups()
method getConversionGroupUnits (line 2505) | public static function getConversionGroupUnits($group = null)
method getConversionGroupUnitDetails (line 2523) | public static function getConversionGroupUnitDetails($group = null)
method getConversionMultipliers (line 2544) | public static function getConversionMultipliers()
method CONVERTUOM (line 2566) | public static function CONVERTUOM($value, $fromUOM, $toUOM)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Exception.php
class PHPExcel_Calculation_Exception (line 28) | class PHPExcel_Calculation_Exception extends PHPExcel_Exception
method errorHandlerCallback (line 39) | public static function errorHandlerCallback($code, $string, $file, $li...
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/ExceptionHandler.php
class PHPExcel_Calculation_ExceptionHandler (line 28) | class PHPExcel_Calculation_ExceptionHandler
method __construct (line 33) | public function __construct()
method __destruct (line 41) | public function __destruct()
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Financial.php
class PHPExcel_Calculation_Financial (line 43) | class PHPExcel_Calculation_Financial
method isLastDayOfMonth (line 53) | private static function isLastDayOfMonth($testDate)
method isFirstDayOfMonth (line 67) | private static function isFirstDayOfMonth($testDate)
method couponFirstPeriodDate (line 73) | private static function couponFirstPeriodDate($settlement, $maturity, ...
method isValidFrequency (line 95) | private static function isValidFrequency($frequency)
method daysPerYear (line 122) | private static function daysPerYear($year, $basis = 0)
method interestAndPrincipal (line 143) | private static function interestAndPrincipal($rate = 0, $per = 0, $npe...
method ACCRINT (line 191) | public static function ACCRINT($issue, $firstinterest, $settlement, $r...
method ACCRINTM (line 243) | public static function ACCRINTM($issue, $settlement, $rate, $par = 100...
method AMORDEGRC (line 300) | public static function AMORDEGRC($cost, $purchased, $firstPeriod, $sal...
method AMORLINC (line 377) | public static function AMORLINC($cost, $purchased, $firstPeriod, $salv...
method COUPDAYBS (line 444) | public static function COUPDAYBS($settlement, $maturity, $frequency, $...
method COUPDAYS (line 503) | public static function COUPDAYS($settlement, $maturity, $frequency, $b...
method COUPDAYSNC (line 576) | public static function COUPDAYSNC($settlement, $maturity, $frequency, ...
method COUPNCD (line 636) | public static function COUPNCD($settlement, $maturity, $frequency, $ba...
method COUPNUM (line 693) | public static function COUPNUM($settlement, $maturity, $frequency, $ba...
method COUPPCD (line 765) | public static function COUPPCD($settlement, $maturity, $frequency, $ba...
method CUMIPMT (line 810) | public static function CUMIPMT($rate, $nper, $pv, $start, $end, $type ...
method CUMPRINC (line 858) | public static function CUMPRINC($rate, $nper, $pv, $start, $end, $type...
method DB (line 911) | public static function DB($cost, $salvage, $life, $period, $month = 12)
method DDB (line 979) | public static function DDB($cost, $salvage, $life, $period, $factor = ...
method DISC (line 1041) | public static function DISC($settlement, $maturity, $price, $redemptio...
method DOLLARDE (line 1085) | public static function DOLLARDE($fractional_dollar = null, $fraction = 0)
method DOLLARFR (line 1122) | public static function DOLLARFR($decimal_dollar = null, $fraction = 0)
method EFFECT (line 1158) | public static function EFFECT($nominal_rate = 0, $npery = 0)
method FV (line 1194) | public static function FV($rate = 0, $nper = 0, $pmt = 0, $pv = 0, $ty...
method FVSCHEDULE (line 1228) | public static function FVSCHEDULE($principal, $schedule)
method INTRATE (line 1263) | public static function INTRATE($settlement, $maturity, $investment, $r...
method IPMT (line 1307) | public static function IPMT($rate, $per, $nper, $pv, $fv = 0, $type = 0)
method IRR (line 1348) | public static function IRR($values, $guess = 0.1)
method ISPMT (line 1415) | public static function ISPMT()
method MIRR (line 1457) | public static function MIRR($values, $finance_rate, $reinvestment_rate)
method NOMINAL (line 1499) | public static function NOMINAL($effect_rate = 0, $npery = 0)
method NPER (line 1526) | public static function NPER($rate = 0, $pmt = 0, $pv = 0, $fv = 0, $ty...
method NPV (line 1559) | public static function NPV()
method PMT (line 1592) | public static function PMT($rate = 0, $nper = 0, $pv = 0, $fv = 0, $ty...
method PPMT (line 1626) | public static function PPMT($rate, $per, $nper, $pv, $fv = 0, $type = 0)
method PRICE (line 1649) | public static function PRICE($settlement, $maturity, $rate, $yield, $r...
method PRICEDISC (line 1710) | public static function PRICEDISC($settlement, $maturity, $discount, $r...
method PRICEMAT (line 1755) | public static function PRICEMAT($settlement, $maturity, $issue, $rate,...
method PV (line 1812) | public static function PV($rate = 0, $nper = 0, $pmt = 0, $fv = 0, $ty...
method RATE (line 1863) | public static function RATE($nper, $pmt, $pv, $fv = 0.0, $type = 0, $g...
method RECEIVED (line 1926) | public static function RECEIVED($settlement, $maturity, $investment, $...
method SLN (line 1961) | public static function SLN($cost, $salvage, $life)
method SYD (line 1989) | public static function SYD($cost, $salvage, $life, $period)
method TBILLEQ (line 2019) | public static function TBILLEQ($settlement, $maturity, $discount)
method TBILLPRICE (line 2058) | public static function TBILLPRICE($settlement, $maturity, $discount)
method TBILLYIELD (line 2111) | public static function TBILLYIELD($settlement, $maturity, $price)
method XIRR (line 2144) | public static function XIRR($values, $dates, $guess = 0.1)
method XNPV (line 2217) | public static function XNPV($rate, $values, $dates)
method YIELDDISC (line 2266) | public static function YIELDDISC($settlement, $maturity, $price, $rede...
method YIELDMAT (line 2316) | public static function YIELDMAT($settlement, $maturity, $issue, $rate,...
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/FormulaParser.php
method __construct (line 93) | public function __construct($pFormula = '')
method getFormula (line 111) | public function getFormula()
method getToken (line 123) | public function getToken($pId = 0)
method getTokenCount (line 137) | public function getTokenCount()
method getTokens (line 147) | public function getTokens()
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/FormulaToken.php
class PHPExcel_Calculation_FormulaToken (line 53) | class PHPExcel_Calculation_FormulaToken
method __construct (line 109) | public function __construct($pValue, $pTokenType = PHPExcel_Calculatio...
method getValue (line 122) | public function getValue()
method setValue (line 132) | public function setValue($value)
method getTokenType (line 142) | public function getTokenType()
method setTokenType (line 152) | public function setTokenType($value = PHPExcel_Calculation_FormulaToke...
method getTokenSubType (line 162) | public function getTokenSubType()
method setTokenSubType (line 172) | public function setTokenSubType($value = PHPExcel_Calculation_FormulaT...
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Function.php
class PHPExcel_Calculation_Function (line 28) | class PHPExcel_Calculation_Function
method __construct (line 72) | public function __construct($pCategory = null, $pExcelName = null, $pP...
method getCategory (line 89) | public function getCategory()
method setCategory (line 100) | public function setCategory($value = null)
method getExcelName (line 114) | public function getExcelName()
method setExcelName (line 124) | public function setExcelName($value)
method getPHPExcelName (line 134) | public function getPHPExcelName()
method setPHPExcelName (line 144) | public function setPHPExcelName($value)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Functions.php
class PHPExcel_Calculation_Functions (line 51) | class PHPExcel_Calculation_Functions
method setCompatibilityMode (line 110) | public static function setCompatibilityMode($compatibilityMode)
method getCompatibilityMode (line 133) | public static function getCompatibilityMode()
method setReturnDateType (line 151) | public static function setReturnDateType($returnDateType)
method getReturnDateType (line 174) | public static function getReturnDateType()
method DUMMY (line 187) | public static function DUMMY()
method DIV0 (line 200) | public static function DIV0()
method NA (line 219) | public static function NA()
method NaN (line 234) | public static function NaN()
method NAME (line 249) | public static function NAME()
method REF (line 264) | public static function REF()
method NULL (line 279) | public static function NULL()
method VALUE (line 294) | public static function VALUE()
method isMatrixValue (line 300) | public static function isMatrixValue($idx)
method isValue (line 306) | public static function isValue($idx)
method isCellValue (line 312) | public static function isCellValue($idx)
method ifCondition (line 318) | public static function ifCondition($condition)
function ERROR_TYPE (line 348) | function ERROR_TYPE($value = '')
function IS_BLANK (line 369) | function IS_BLANK($value = null)
function IS_ERR (line 385) | function IS_ERR($value = '')
function IS_ERROR (line 399) | function IS_ERROR($value = '')
function IS_NA (line 416) | function IS_NA($value = '')
function IS_EVEN (line 430) | function IS_EVEN($value = null)
function IS_ODD (line 450) | function IS_ODD($value = null)
function IS_NUMBER (line 470) | function IS_NUMBER($value = null)
function IS_LOGICAL (line 487) | function IS_LOGICAL($value = null)
function IS_TEXT (line 501) | function IS_TEXT($value = null)
function IS_NONTEXT (line 515) | function IS_NONTEXT($value = null)
function VERSION (line 526) | function VERSION()
function N (line 547) | function N($value = null)
function TYPE (line 585) | function TYPE($value = null)
function flattenArray (line 627) | function flattenArray($array)
function flattenArrayIndexed (line 660) | function flattenArrayIndexed($array)
function flattenSingleValue (line 693) | function flattenSingleValue($value = '')
function acosh (line 710) | function acosh($x)
function asinh (line 717) | function asinh($x)
function atanh (line 724) | function atanh($x)
function mb_str_replace (line 737) | function mb_str_replace($search, $replace, $subject)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Logical.php
class PHPExcel_Calculation_Logical (line 37) | class PHPExcel_Calculation_Logical
method TRUE (line 51) | public static function TRUE()
method FALSE (line 69) | public static function FALSE()
method LOGICAL_AND (line 96) | public static function LOGICAL_AND()
method LOGICAL_OR (line 152) | public static function LOGICAL_OR()
method NOT (line 207) | public static function NOT($logical = false)
method STATEMENT_IF (line 256) | public static function STATEMENT_IF($condition = true, $returnIfTrue =...
method IFERROR (line 278) | public static function IFERROR($testValue = '', $errorpart = '')
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/LookupRef.php
class PHPExcel_Calculation_LookupRef (line 37) | class PHPExcel_Calculation_LookupRef
method CELL_ADDRESS (line 60) | public static function CELL_ADDRESS($row, $column, $relativity = 1, $r...
method COLUMN (line 113) | public static function COLUMN($cellAddress = null)
method COLUMNS (line 156) | public static function COLUMNS($cellAddress = null)
method ROW (line 190) | public static function ROW($cellAddress = null)
method ROWS (line 234) | public static function ROWS($cellAddress = null)
method HYPERLINK (line 267) | public static function HYPERLINK($linkURL = '', $displayName = null, P...
method INDIRECT (line 308) | public static function INDIRECT($cellAddress = null, PHPExcel_Cell $pC...
method OFFSET (line 375) | public static function OFFSET($cellAddress = null, $rows = 0, $columns...
method CHOOSE (line 463) | public static function CHOOSE()
method MATCH (line 503) | public static function MATCH($lookup_value, $lookup_array, $match_type...
method INDEX (line 600) | public static function INDEX($arrayValues, $rowNum = 0, $columnNum = 0)
method TRANSPOSE (line 654) | public static function TRANSPOSE($matrixData)
method vlookupSort (line 674) | private static function vlookupSort($a, $b)
method VLOOKUP (line 694) | public static function VLOOKUP($lookup_value, $lookup_array, $index_nu...
method HLOOKUP (line 757) | public static function HLOOKUP($lookup_value, $lookup_array, $index_nu...
method LOOKUP (line 820) | public static function LOOKUP($lookup_value, $lookup_vector, $result_v...
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/MathTrig.php
class PHPExcel_Calculation_MathTrig (line 37) | class PHPExcel_Calculation_MathTrig
method factors (line 42) | private static function factors($value)
method romanCut (line 65) | private static function romanCut($num, $n)
method ATAN2 (line 93) | public static function ATAN2($xCoordinate = null, $yCoordinate = null)
method CEILING (line 133) | public static function CEILING($number, $significance = null)
method COMBIN (line 171) | public static function COMBIN($numObjs, $numInSet)
method EVEN (line 205) | public static function EVEN($number)
method FACT (line 237) | public static function FACT($factVal)
method FACTDOUBLE (line 275) | public static function FACTDOUBLE($factVal)
method FLOOR (line 309) | public static function FLOOR($number, $significance = null)
method GCD (line 350) | public static function GCD()
method INT (line 425) | public static function INT($number)
method LCM (line 457) | public static function LCM()
method LOG_BASE (line 508) | public static function LOG_BASE($number = null, $base = 10)
method MDETERM (line 536) | public static function MDETERM($matrixValues)
method MINVERSE (line 587) | public static function MINVERSE($matrixValues)
method MMULT (line 632) | public static function MMULT($matrixData1, $matrixData2)
method MOD (line 695) | public static function MOD($a = 1, $b = 1)
method MROUND (line 721) | public static function MROUND($number, $multiple)
method MULTINOMIAL (line 748) | public static function MULTINOMIAL()
method ODD (line 783) | public static function ODD($number)
method POWER (line 817) | public static function POWER($x = 0, $y = 2)
method PRODUCT (line 848) | public static function PRODUCT()
method QUOTIENT (line 887) | public static function QUOTIENT()
method RAND (line 920) | public static function RAND($min = 0, $max = 0)
method ROMAN (line 933) | public static function ROMAN($aValue, $style = 0)
method ROUNDUP (line 975) | public static function ROUNDUP($number, $digits)
method ROUNDDOWN (line 1001) | public static function ROUNDDOWN($number, $digits)
method SERIESSUM (line 1029) | public static function SERIESSUM()
method SIGN (line 1066) | public static function SIGN($number)
method SQRTPI (line 1091) | public static function SQRTPI($number)
method SUBTOTAL (line 1115) | public static function SUBTOTAL()
method SUM (line 1165) | public static function SUM()
method SUMIF (line 1195) | public static function SUMIF($aArgs, $condition, $sumArgs = array())
method SUMIFS (line 1237) | public static function SUMIFS() {
method SUMPRODUCT (line 1294) | public static function SUMPRODUCT()
method SUMSQ (line 1339) | public static function SUMSQ()
method SUMX2MY2 (line 1362) | public static function SUMX2MY2($matrixData1, $matrixData2)
method SUMX2PY2 (line 1387) | public static function SUMX2PY2($matrixData1, $matrixData2)
method SUMXMY2 (line 1412) | public static function SUMXMY2($matrixData1, $matrixData2)
method TRUNC (line 1439) | public static function TRUNC($value = 0, $digits = 0)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Statistical.php
class PHPExcel_Calculation_Statistical (line 53) | class PHPExcel_Calculation_Statistical
method checkTrendArrays (line 55) | private static function checkTrendArrays(&$array1, &$array2)
method beta (line 94) | private static function beta($p, $q)
method incompleteBeta (line 116) | private static function incompleteBeta($x, $p, $q)
method logBeta (line 147) | private static function logBeta($p, $q)
method betaFraction (line 167) | private static function betaFraction($x, $p, $q)
method logGamma (line 261) | private static function logGamma($x)
method incompleteGamma (line 438) | private static function incompleteGamma($a, $x)
method gamma (line 456) | private static function gamma($data)
method inverseNcdf (line 492) | private static function inverseNcdf($p)
method inverseNcdf2 (line 566) | private static function inverseNcdf2($prob)
method inverseNcdf3 (line 610) | private static function inverseNcdf3($p)
method AVEDEV (line 725) | public static function AVEDEV()
method AVERAGE (line 774) | public static function AVERAGE()
method AVERAGEA (line 817) | public static function AVERAGEA()
method AVERAGEIF (line 866) | public static function AVERAGEIF($aArgs, $condition, $averageArgs = ar...
method BETADIST (line 910) | public static function BETADIST($value, $alpha, $beta, $rMin = 0, $rMa...
method BETAINV (line 949) | public static function BETAINV($probability, $alpha, $beta, $rMin = 0,...
method BINOMDIST (line 1008) | public static function BINOMDIST($value, $trials, $probability, $cumul...
method CHIDIST (line 1046) | public static function CHIDIST($value, $degrees)
method CHIINV (line 1076) | public static function CHIINV($probability, $degrees)
method CONFIDENCE (line 1134) | public static function CONFIDENCE($alpha, $stdDev, $size)
method CORREL (line 1162) | public static function CORREL($yValues, $xValues = null)
method COUNT (line 1197) | public static function COUNT()
method COUNTA (line 1231) | public static function COUNTA()
method COUNTBLANK (line 1261) | public static function COUNTBLANK()
method COUNTIF (line 1292) | public static function COUNTIF($aArgs, $condition)
method COVAR (line 1323) | public static function COVAR($yValues, $xValues)
method CRITBINOM (line 1361) | public static function CRITBINOM($trials, $probability, $alpha)
method DEVSQ (line 1479) | public static function DEVSQ()
method EXPONDIST (line 1529) | public static function EXPONDIST($value, $lambda, $cumulative)
method FISHER (line 1561) | public static function FISHER($value)
method FISHERINV (line 1585) | public static function FISHERINV($value)
method FORECAST (line 1606) | public static function FORECAST($xValue, $yValues, $xValues)
method GAMMADIST (line 1640) | public static function GAMMADIST($value, $a, $b, $cumulative)
method GAMMAINV (line 1673) | public static function GAMMAINV($probability, $alpha, $beta)
method GAMMALN (line 1732) | public static function GAMMALN($value)
method GEOMEAN (line 1761) | public static function GEOMEAN()
method GROWTH (line 1787) | public static function GROWTH($yValues, $xValues = array(), $newValues...
method HARMEAN (line 1822) | public static function HARMEAN()
method HYPGEOMDIST (line 1870) | public static function HYPGEOMDIST($sampleSuccesses, $sampleNumber, $p...
method INTERCEPT (line 1904) | public static function INTERCEPT($yValues, $xValues)
method KURT (line 1934) | public static function KURT()
method LARGE (line 1980) | public static function LARGE()
method LINEST (line 2019) | public static function LINEST($yValues, $xValues = null, $const = true...
method LOGEST (line 2079) | public static function LOGEST($yValues, $xValues = null, $const = true...
method LOGINV (line 2147) | public static function LOGINV($probability, $mean, $stdDev)
method LOGNORMDIST (line 2174) | public static function LOGNORMDIST($value, $mean, $stdDev)
method MAX (line 2204) | public static function MAX()
method MAXA (line 2239) | public static function MAXA()
method MAXIF (line 2280) | public static function MAXIF($aArgs, $condition, $sumArgs = array())
method MEDIAN (line 2319) | public static function MEDIAN()
method MIN (line 2363) | public static function MIN()
method MINA (line 2398) | public static function MINA()
method MINIF (line 2439) | public static function MINIF($aArgs, $condition, $sumArgs = array())
method modeCalc (line 2470) | private static function modeCalc($data)
method MODE (line 2516) | public static function MODE()
method NEGBINOMDIST (line 2554) | public static function NEGBINOMDIST($failures, $successes, $probability)
method NORMDIST (line 2591) | public static function NORMDIST($value, $mean, $stdDev, $cumulative)
method NORMINV (line 2624) | public static function NORMINV($probability, $mean, $stdDev)
method NORMSDIST (line 2653) | public static function NORMSDIST($value)
method NORMSINV (line 2669) | public static function NORMSINV($value)
method PERCENTILE (line 2689) | public static function PERCENTILE()
method PERCENTRANK (line 2736) | public static function PERCENTRANK($valueSet, $value, $significance = 3)
method PERMUT (line 2786) | public static function PERMUT($numObjs, $numInSet)
method POISSON (line 2815) | public static function POISSON($value, $mean, $cumulative)
method QUARTILE (line 2854) | public static function QUARTILE()
method RANK (line 2882) | public static function RANK($value, $valueSet, $order = 0)
method RSQ (line 2917) | public static function RSQ($yValues, $xValues)
method SKEW (line 2947) | public static function SKEW()
method SLOPE (line 2983) | public static function SLOPE($yValues, $xValues)
method SMALL (line 3017) | public static function SMALL()
method STANDARDIZE (line 3054) | public static function STANDARDIZE($value, $mean, $stdDev)
method STDEV (line 3084) | public static function STDEV()
method STDEVA (line 3132) | public static function STDEVA()
method STDEVP (line 3183) | public static function STDEVP()
method STDEVPA (line 3229) | public static function STDEVPA()
method STEYX (line 3276) | public static function STEYX($yValues, $xValues)
method TDIST (line 3305) | public static function TDIST($value, $degrees, $tails)
method TINV (line 3368) | public static function TINV($probability, $degrees)
method TREND (line 3426) | public static function TREND($yValues, $xValues = array(), $newValues ...
method TRIMMEAN (line 3463) | public static function TRIMMEAN()
method VARFunc (line 3506) | public static function VARFunc()
method VARA (line 3549) | public static function VARA()
method VARP (line 3601) | public static function VARP()
method VARPA (line 3645) | public static function VARPA()
method WEIBULL (line 3697) | public static function WEIBULL($value, $alpha, $beta, $cumulative)
method ZTEST (line 3732) | public static function ZTEST($dataSet, $m0, $sigma = null)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/TextData.php
class PHPExcel_Calculation_TextData (line 37) | class PHPExcel_Calculation_TextData
method unicodeToOrd (line 41) | private static function unicodeToOrd($c)
FILE: application/libraries/PHPExcel/PHPExcel/Calculation/Token/Stack.php
class PHPExcel_Calculation_Token_Stack (line 28) | class PHPExcel_Calculation_Token_Stack
method count (line 49) | public function count()
method push (line 61) | public function push($type, $value, $reference = null)
method pop (line 81) | public function pop()
method last (line 95) | public function last($n = 1)
method clear (line 106) | public function clear()
FILE: application/libraries/PHPExcel/PHPExcel/Cell.php
method notifyCacheController (line 96) | public function notifyCacheController()
method detach (line 103) | public function detach()
method attach (line 108) | public function attach(PHPExcel_CachedObjectStorage_CacheBase $parent)
method __construct (line 122) | public function __construct($pValue = null, $pDataType = null, PHPExcel_...
method getColumn (line 146) | public function getColumn()
method getRow (line 156) | public function getRow()
method getCoordinate (line 166) | public function getCoordinate()
method getValue (line 176) | public function getValue()
method getFormattedValue (line 186) | public function getFormattedValue()
method setValue (line 204) | public function setValue($pValue = null)
method setValueExplicit (line 220) | public function setValueExplicit($pValue = null, $pDataType = PHPExcel_C...
method getCalculatedValue (line 268) | public function getCalculatedValue($resetLog = true)
method setCalculatedValue (line 316) | public function setCalculatedValue($pValue = null)
method getOldCalculatedValue (line 335) | public function getOldCalculatedValue()
method getDataType (line 345) | public function getDataType()
method setDataType (line 356) | public function setDataType($pDataType = PHPExcel_Cell_DataType::TYPE_ST...
method isFormula (line 371) | public function isFormula()
method hasDataValidation (line 382) | public function hasDataValidation()
method getDataValidation (line 397) | public function getDataValidation()
method setDataValidation (line 413) | public function setDataValidation(PHPExcel_Cell_DataValidation $pDataVal...
method hasHyperlink (line 430) | public function hasHyperlink()
method getHyperlink (line 445) | public function getHyperlink()
method setHyperlink (line 461) | public function setHyperlink(PHPExcel_Cell_Hyperlink $pHyperlink = null)
method getParent (line 477) | public function getParent()
method getWorksheet (line 487) | public function getWorksheet()
method isInMergeRange (line 497) | public function isInMergeRange()
method isMergeRangeValueCell (line 507) | public function isMergeRangeValueCell()
method getMergeRange (line 524) | public function getMergeRange()
method getStyle (line 539) | public function getStyle()
method rebindParent (line 550) | public function rebindParent(PHPExcel_Worksheet $parent)
method isInRange (line 563) | public function isInRange($pRange = 'A1:A1')
method coordinateFromString (line 584) | public static function coordinateFromString($pCoordinateString = 'A1')
method absoluteReference (line 605) | public static function absoluteReference($pCoordinateString = 'A1')
method absoluteCoordinate (line 637) | public static function absoluteCoordinate($pCoordinateString = 'A1')
method splitRange (line 668) | public static function splitRange($pRange = 'A1:A1')
method buildRange (line 690) | public static function buildRange($pRange)
method rangeBoundaries (line 715) | public static function rangeBoundaries($pRange = 'A1:A1')
method rangeDimension (line 749) | public static function rangeDimension($pRange = 'A1:A1')
method getRangeBoundaries (line 764) | public static function getRangeBoundaries($pRange = 'A1:A1')
FILE: application/libraries/PHPExcel/PHPExcel/Cell/AdvancedValueBinder.php
class PHPExcel_Cell_AdvancedValueBinder (line 37) | class PHPExcel_Cell_AdvancedValueBinder extends PHPExcel_Cell_DefaultVal...
method bindValue (line 46) | public function bindValue(PHPExcel_Cell $cell, $value = null)
FILE: application/libraries/PHPExcel/PHPExcel/Cell/DataType.php
class PHPExcel_Cell_DataType (line 28) | class PHPExcel_Cell_DataType
method getErrorCodes (line 60) | public static function getErrorCodes()
method dataTypeForValue (line 72) | public static function dataTypeForValue($pValue = null)
method checkString (line 83) | public static function checkString($pValue = null)
method checkErrorCode (line 105) | public static function checkErrorCode($pValue = null)
FILE: application/libraries/PHPExcel/PHPExcel/Cell/DataValidation.php
class PHPExcel_Cell_DataValidation (line 28) | class PHPExcel_Cell_DataValidation
method __construct (line 149) | public function __construct()
method getFormula1 (line 172) | public function getFormula1()
method setFormula1 (line 183) | public function setFormula1($value = '')
method getFormula2 (line 194) | public function getFormula2()
method setFormula2 (line 205) | public function setFormula2($value = '')
method getType (line 216) | public function getType()
method setType (line 227) | public function setType($value = PHPExcel_Cell_DataValidation::TYPE_NONE)
method getErrorStyle (line 238) | public function getErrorStyle()
method setErrorStyle (line 249) | public function setErrorStyle($value = PHPExcel_Cell_DataValidation::S...
method getOperator (line 260) | public function getOperator()
method setOperator (line 271) | public function setOperator($value = '')
method getAllowBlank (line 282) | public function getAllowBlank()
method setAllowBlank (line 293) | public function setAllowBlank($value = false)
method getShowDropDown (line 304) | public function getShowDropDown()
method setShowDropDown (line 315) | public function setShowDropDown($value = false)
method getShowInputMessage (line 326) | public function getShowInputMessage()
method setShowInputMessage (line 337) | public function setShowInputMessage($value = false)
method getShowErrorMessage (line 348) | public function getShowErrorMessage()
method setShowErrorMessage (line 359) | public function setShowErrorMessage($value = false)
method getErrorTitle (line 370) | public function getErrorTitle()
method setErrorTitle (line 381) | public function setErrorTitle($value = '')
method getError (line 392) | public function getError()
method setError (line 403) | public function setError($value = '')
method getPromptTitle (line 414) | public function getPromptTitle()
method setPromptTitle (line 425) | public function setPromptTitle($value = '')
method getPrompt (line 436) | public function getPrompt()
method setPrompt (line 447) | public function setPrompt($value = '')
method getHashCode (line 458) | public function getHashCode()
method __clone (line 481) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Cell/DefaultValueBinder.php
class PHPExcel_Cell_DefaultValueBinder (line 37) | class PHPExcel_Cell_DefaultValueBinder implements PHPExcel_Cell_IValueBi...
method bindValue (line 46) | public function bindValue(PHPExcel_Cell $cell, $value = null)
method dataTypeForValue (line 73) | public static function dataTypeForValue($pValue = null)
FILE: application/libraries/PHPExcel/PHPExcel/Cell/Hyperlink.php
class PHPExcel_Cell_Hyperlink (line 28) | class PHPExcel_Cell_Hyperlink
method __construct (line 50) | public function __construct($pUrl = '', $pTooltip = '')
method getUrl (line 62) | public function getUrl()
method setUrl (line 73) | public function setUrl($value = '')
method getTooltip (line 84) | public function getTooltip()
method setTooltip (line 95) | public function setTooltip($value = '')
method isInternal (line 106) | public function isInternal()
method getHashCode (line 116) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Cell/IValueBinder.php
type PHPExcel_Cell_IValueBinder (line 37) | interface PHPExcel_Cell_IValueBinder
method bindValue (line 46) | public function bindValue(PHPExcel_Cell $cell, $value = null);
FILE: application/libraries/PHPExcel/PHPExcel/Chart.php
class PHPExcel_Chart (line 28) | class PHPExcel_Chart
method __construct (line 172) | public function __construct($name, PHPExcel_Chart_Title $title = null,...
method getName (line 193) | public function getName()
method getWorksheet (line 203) | public function getWorksheet()
method setWorksheet (line 215) | public function setWorksheet(PHPExcel_Worksheet $pValue = null)
method getTitle (line 227) | public function getTitle()
method setTitle (line 238) | public function setTitle(PHPExcel_Chart_Title $title)
method getLegend (line 250) | public function getLegend()
method setLegend (line 261) | public function setLegend(PHPExcel_Chart_Legend $legend)
method getXAxisLabel (line 273) | public function getXAxisLabel()
method setXAxisLabel (line 284) | public function setXAxisLabel(PHPExcel_Chart_Title $label)
method getYAxisLabel (line 296) | public function getYAxisLabel()
method setYAxisLabel (line 307) | public function setYAxisLabel(PHPExcel_Chart_Title $label)
method getPlotArea (line 319) | public function getPlotArea()
method getPlotVisibleOnly (line 329) | public function getPlotVisibleOnly()
method setPlotVisibleOnly (line 340) | public function setPlotVisibleOnly($plotVisibleOnly = true)
method getDisplayBlanksAs (line 352) | public function getDisplayBlanksAs()
method setDisplayBlanksAs (line 363) | public function setDisplayBlanksAs($displayBlanksAs = '0')
method getChartAxisY (line 374) | public function getChartAxisY()
method getChartAxisX (line 388) | public function getChartAxisX()
method getMajorGridlines (line 402) | public function getMajorGridlines()
method getMinorGridlines (line 416) | public function getMinorGridlines()
method setTopLeftPosition (line 434) | public function setTopLeftPosition($cell, $xOffset = null, $yOffset = ...
method getTopLeftPosition (line 452) | public function getTopLeftPosition()
method getTopLeftCell (line 466) | public function getTopLeftCell()
method setTopLeftCell (line 477) | public function setTopLeftCell($cell)
method setTopLeftOffset (line 491) | public function setTopLeftOffset($xOffset = null, $yOffset = null)
method getTopLeftOffset (line 508) | public function getTopLeftOffset()
method setTopLeftXOffset (line 516) | public function setTopLeftXOffset($xOffset)
method getTopLeftXOffset (line 523) | public function getTopLeftXOffset()
method setTopLeftYOffset (line 528) | public function setTopLeftYOffset($yOffset)
method getTopLeftYOffset (line 535) | public function getTopLeftYOffset()
method setBottomRightPosition (line 548) | public function setBottomRightPosition($cell, $xOffset = null, $yOffse...
method getBottomRightPosition (line 566) | public function getBottomRightPosition()
method setBottomRightCell (line 575) | public function setBottomRightCell($cell)
method getBottomRightCell (line 587) | public function getBottomRightCell()
method setBottomRightOffset (line 599) | public function setBottomRightOffset($xOffset = null, $yOffset = null)
method getBottomRightOffset (line 616) | public function getBottomRightOffset()
method setBottomRightXOffset (line 624) | public function setBottomRightXOffset($xOffset)
method getBottomRightXOffset (line 631) | public function getBottomRightXOffset()
method setBottomRightYOffset (line 636) | public function setBottomRightYOffset($yOffset)
method getBottomRightYOffset (line 643) | public function getBottomRightYOffset()
method refresh (line 649) | public function refresh()
method render (line 656) | public function render($outputDestination = null)
FILE: application/libraries/PHPExcel/PHPExcel/Chart/Axis.php
class PHPExcel_Chart_Axis (line 10) | class PHPExcel_Chart_Axis extends PHPExcel_Chart_Properties
method setAxisNumberProperties (line 138) | public function setAxisNumberProperties($format_code)
method getAxisNumberFormat (line 149) | public function getAxisNumberFormat()
method getAxisNumberSourceLinked (line 159) | public function getAxisNumberSourceLinked()
method setAxisOptionsProperties (line 179) | public function setAxisOptionsProperties($axis_labels, $horizontal_cro...
method getAxisOptionsProperty (line 201) | public function getAxisOptionsProperty($property)
method setAxisOrientation (line 212) | public function setAxisOrientation($orientation)
method setFillParameters (line 225) | public function setFillParameters($color, $alpha = 0, $type = self::EX...
method setLineParameters (line 238) | public function setLineParameters($color, $alpha = 0, $type = self::EX...
method getFillProperty (line 250) | public function getFillProperty($property)
method getLineProperty (line 262) | public function getLineProperty($property)
method setLineStyleProperties (line 281) | public function setLineStyleProperties($line_width = null, $compound_t...
method getLineStyleProperty (line 301) | public function getLineStyleProperty($elements)
method getLineStyleArrowWidth (line 313) | public function getLineStyleArrowWidth($arrow)
method getLineStyleArrowLength (line 325) | public function getLineStyleArrowLength($arrow)
method setShadowProperties (line 342) | public function setShadowProperties($sh_presets, $sh_color_value = nul...
method setShadowPresetsProperties (line 362) | private function setShadowPresetsProperties($shadow_presets)
method setShadowProperiesMapValues (line 378) | private function setShadowProperiesMapValues(array $properties_map, &$...
method setShadowColor (line 410) | private function setShadowColor($color, $alpha, $type)
method setShadowBlur (line 424) | private function setShadowBlur($blur)
method setShadowAngle (line 440) | private function setShadowAngle($angle)
method setShadowDistance (line 456) | private function setShadowDistance($distance)
method getShadowProperty (line 473) | public function getShadowProperty($elements)
method setGlowProperties (line 486) | public function setGlowProperties($size, $color_value = null, $color_a...
method getGlowProperty (line 503) | public function getGlowProperty($property)
method setGlowSize (line 515) | private function setGlowSize($size)
method setGlowColor (line 533) | private function setGlowColor($color, $alpha, $type)
method setSoftEdges (line 545) | public function setSoftEdges($size)
method getSoftEdgesSize (line 557) | public function getSoftEdgesSize()
FILE: application/libraries/PHPExcel/PHPExcel/Chart/DataSeries.php
class PHPExcel_Chart_DataSeries (line 36) | class PHPExcel_Chart_DataSeries
method __construct (line 139) | public function __construct($plotType = null, $plotGrouping = null, $p...
method getPlotType (line 169) | public function getPlotType()
method setPlotType (line 180) | public function setPlotType($plotType = '')
method getPlotGrouping (line 191) | public function getPlotGrouping()
method setPlotGrouping (line 202) | public function setPlotGrouping($groupingType = null)
method getPlotDirection (line 213) | public function getPlotDirection()
method setPlotDirection (line 224) | public function setPlotDirection($plotDirection = null)
method getPlotOrder (line 235) | public function getPlotOrder()
method getPlotLabels (line 245) | public function getPlotLabels()
method getPlotLabelByIndex (line 255) | public function getPlotLabelByIndex($index)
method getPlotCategories (line 271) | public function getPlotCategories()
method getPlotCategoryByIndex (line 281) | public function getPlotCategoryByIndex($index)
method getPlotStyle (line 297) | public function getPlotStyle()
method setPlotStyle (line 308) | public function setPlotStyle($plotStyle = null)
method getPlotValues (line 319) | public function getPlotValues()
method getPlotValuesByIndex (line 329) | public function getPlotValuesByIndex($index)
method getPlotSeriesCount (line 345) | public function getPlotSeriesCount()
method getSmoothLine (line 355) | public function getSmoothLine()
method setSmoothLine (line 366) | public function setSmoothLine($smoothLine = true)
method refresh (line 372) | public function refresh(PHPExcel_Worksheet $worksheet)
FILE: application/libraries/PHPExcel/PHPExcel/Chart/DataSeriesValues.php
class PHPExcel_Chart_DataSeriesValues (line 28) | class PHPExcel_Chart_DataSeriesValues
method __construct (line 84) | public function __construct($dataType = self::DATASERIES_TYPE_NUMBER, ...
method getDataType (line 99) | public function getDataType()
method setDataType (line 115) | public function setDataType($dataType = self::DATASERIES_TYPE_NUMBER)
method getDataSource (line 130) | public function getDataSource()
method setDataSource (line 141) | public function setDataSource($dataSource = null, $refreshDataValues =...
method getPointMarker (line 157) | public function getPointMarker()
method setPointMarker (line 168) | public function setPointMarker($marker = null)
method getFormatCode (line 180) | public function getFormatCode()
method setFormatCode (line 191) | public function setFormatCode($formatCode = null)
method getPointCount (line 203) | public function getPointCount()
method isMultiLevelSeries (line 213) | public function isMultiLevelSeries()
method multiLevelCount (line 226) | public function multiLevelCount()
method getDataValues (line 240) | public function getDataValues()
method getDataValue (line 250) | public function getDataValue()
method setDataValues (line 270) | public function setDataValues($dataValues = array(), $refreshDataSourc...
method stripNulls (line 282) | private function stripNulls($var)
method refresh (line 287) | public function refresh(PHPExcel_Worksheet $worksheet, $flatten = true)
FILE: application/libraries/PHPExcel/PHPExcel/Chart/Exception.php
class PHPExcel_Chart_Exception (line 28) | class PHPExcel_Chart_Exception extends PHPExcel_Exception
method errorHandlerCallback (line 39) | public static function errorHandlerCallback($code, $string, $file, $li...
FILE: application/libraries/PHPExcel/PHPExcel/Chart/GridLines.php
class PHPExcel_Chart_GridLines (line 10) | class PHPExcel_Chart_GridLines extends PHPExcel_Chart_Properties
method getObjectState (line 89) | public function getObjectState()
method activateObject (line 100) | private function activateObject()
method setLineColorProperties (line 115) | public function setLineColorProperties($value, $alpha = 0, $type = sel...
method setLineStyleProperties (line 139) | public function setLineStyleProperties($line_width = null, $compound_t...
method getLineColorProperty (line 179) | public function getLineColorProperty($parameter)
method getLineStyleProperty (line 192) | public function getLineStyleProperty($elements)
method setGlowProperties (line 207) | public function setGlowProperties($size, $color_value = null, $color_a...
method getGlowColor (line 223) | public function getGlowColor($property)
method getGlowSize (line 234) | public function getGlowSize()
method setGlowSize (line 247) | private function setGlowSize($size)
method setGlowColor (line 264) | private function setGlowColor($color, $alpha, $type)
method getLineStyleArrowParameters (line 288) | public function getLineStyleArrowParameters($arrow_selector, $property...
method setShadowProperties (line 306) | public function setShadowProperties($sh_presets, $sh_color_value = nul...
method setShadowPresetsProperties (line 328) | private function setShadowPresetsProperties($shadow_presets)
method setShadowProperiesMapValues (line 345) | private function setShadowProperiesMapValues(array $properties_map, &$...
method setShadowColor (line 376) | private function setShadowColor($color, $alpha, $type)
method setShadowBlur (line 398) | private function setShadowBlur($blur)
method setShadowAngle (line 414) | private function setShadowAngle($angle)
method setShadowDistance (line 429) | private function setShadowDistance($distance)
method getShadowProperty (line 445) | public function getShadowProperty($elements)
method setSoftEdgesSize (line 455) | public function setSoftEdgesSize($size)
method getSoftEdgesSize (line 468) | public function getSoftEdgesSize()
FILE: application/libraries/PHPExcel/PHPExcel/Chart/Layout.php
class PHPExcel_Chart_Layout (line 36) | class PHPExcel_Chart_Layout
method __construct (line 146) | public function __construct($layout = array())
method getLayoutTarget (line 176) | public function getLayoutTarget()
method setLayoutTarget (line 187) | public function setLayoutTarget($value)
method getXMode (line 198) | public function getXMode()
method setXMode (line 209) | public function setXMode($value)
method getYMode (line 220) | public function getYMode()
method setYMode (line 231) | public function setYMode($value)
method getXPosition (line 242) | public function getXPosition()
method setXPosition (line 253) | public function setXPosition($value)
method getYPosition (line 264) | public function getYPosition()
method setYPosition (line 275) | public function setYPosition($value)
method getWidth (line 286) | public function getWidth()
method setWidth (line 297) | public function setWidth($value)
method getHeight (line 308) | public function getHeight()
method setHeight (line 319) | public function setHeight($value)
method getShowLegendKey (line 331) | public function getShowLegendKey()
method setShowLegendKey (line 343) | public function setShowLegendKey($value)
method getShowVal (line 354) | public function getShowVal()
method setShowVal (line 366) | public function setShowVal($value)
method getShowCatName (line 377) | public function getShowCatName()
method setShowCatName (line 389) | public function setShowCatName($value)
method getShowSerName (line 400) | public function getShowSerName()
method setShowSerName (line 412) | public function setShowSerName($value)
method getShowPercent (line 423) | public function getShowPercent()
method setShowPercent (line 435) | public function setShowPercent($value)
method getShowBubbleSize (line 446) | public function getShowBubbleSize()
method setShowBubbleSize (line 458) | public function setShowBubbleSize($value)
method getShowLeaderLines (line 469) | public function getShowLeaderLines()
method setShowLeaderLines (line 481) | public function setShowLeaderLines($value)
FILE: application/libraries/PHPExcel/PHPExcel/Chart/Legend.php
class PHPExcel_Chart_Legend (line 28) | class PHPExcel_Chart_Legend
method __construct (line 78) | public function __construct($position = self::POSITION_RIGHT, PHPExcel...
method getPosition (line 90) | public function getPosition()
method setPosition (line 100) | public function setPosition($position = self::POSITION_RIGHT)
method getPositionXL (line 115) | public function getPositionXL()
method setPositionXL (line 125) | public function setPositionXL($positionXL = self::xlLegendPositionRight)
method getOverlay (line 140) | public function getOverlay()
method setOverlay (line 151) | public function setOverlay($overlay = false)
method getLayout (line 166) | public function getLayout()
FILE: application/libraries/PHPExcel/PHPExcel/Chart/PlotArea.php
class PHPExcel_Chart_PlotArea (line 28) | class PHPExcel_Chart_PlotArea
method __construct (line 47) | public function __construct(PHPExcel_Chart_Layout $layout = null, $plo...
method getLayout (line 58) | public function getLayout()
method getPlotGroupCount (line 68) | public function getPlotGroupCount()
method getPlotSeriesCount (line 78) | public function getPlotSeriesCount()
method getPlotGroup (line 92) | public function getPlotGroup()
method getPlotGroupByIndex (line 102) | public function getPlotGroupByIndex($index)
method setPlotSeries (line 113) | public function setPlotSeries($plotSeries = array())
method refresh (line 120) | public function refresh(PHPExcel_Worksheet $worksheet)
FILE: application/libraries/PHPExcel/PHPExcel/Chart/Properties.php
class PHPExcel_Chart_Properties (line 9) | abstract class PHPExcel_Chart_Properties
method getExcelPointsWidth (line 116) | protected function getExcelPointsWidth($width)
method getExcelPointsAngle (line 121) | protected function getExcelPointsAngle($angle)
method getTrueAlpha (line 126) | protected function getTrueAlpha($alpha)
method setColorProperties (line 131) | protected function setColorProperties($color, $alpha, $type)
method getLineStyleArrowSize (line 140) | protected function getLineStyleArrowSize($array_selector, $array_kay_s...
method getShadowPresetsMap (line 157) | protected function getShadowPresetsMap($shadow_presets_option)
method getArrayElementsValue (line 350) | protected function getArrayElementsValue($properties, $elements)
FILE: application/libraries/PHPExcel/PHPExcel/Chart/Renderer/jpgraph.php
class PHPExcel_Chart_Renderer_jpgraph (line 30) | class PHPExcel_Chart_Renderer_jpgraph
method formatPointMarker (line 66) | private function formatPointMarker($seriesPlot, $markerID)
method formatDataSetLabels (line 94) | private function formatDataSetLabels($groupID, $datasetLabels, $labelC...
method percentageSumCalculation (line 124) | private function percentageSumCalculation($groupID, $seriesCount)
method percentageAdjustValues (line 146) | private function percentageAdjustValues($dataValues, $sumValues)
method getCaption (line 156) | private function getCaption($captionElement)
method renderTitle (line 172) | private function renderTitle()
method renderLegend (line 181) | private function renderLegend()
method renderCartesianPlotArea (line 213) | private function renderCartesianPlotArea($type = 'textlin')
method renderPiePlotArea (line 251) | private function renderPiePlotArea($doughnut = false)
method renderRadarPlotArea (line 259) | private function renderRadarPlotArea()
method renderPlotLine (line 268) | private function renderPlotLine($groupID, $filled = false, $combinatio...
method renderPlotBar (line 332) | private function renderPlotBar($groupID, $dimensions = '2d')
method renderPlotScatter (line 418) | private function renderPlotScatter($groupID, $bubble)
method renderPlotRadar (line 464) | private function renderPlotRadar($groupID)
method renderPlotContour (line 503) | private function renderPlotContour($groupID)
method renderPlotStock (line 524) | private function renderPlotStock($groupID)
method renderAreaChart (line 564) | private function renderAreaChart($groupCount, $dimensions = '2d')
method renderLineChart (line 576) | private function renderLineChart($groupCount, $dimensions = '2d')
method renderBarChart (line 588) | private function renderBarChart($groupCount, $dimensions = '2d')
method renderScatterChart (line 600) | private function renderScatterChart($groupCount)
method renderBubbleChart (line 614) | private function renderBubbleChart($groupCount)
method renderPieChart (line 626) | private function renderPieChart($groupCount, $dimensions = '2d', $doug...
method renderRadarChart (line 703) | private function renderRadarChart($groupCount)
method renderStockChart (line 715) | private function renderStockChart($groupCount)
method renderContourChart (line 727) | private function renderContourChart($groupCount, $dimensions)
method renderCombinationChart (line 739) | private function renderCombinationChart($groupCount, $dimensions, $out...
method render (line 790) | public function render($outputDestination)
method __construct (line 878) | public function __construct(PHPExcel_Chart $chart)
FILE: application/libraries/PHPExcel/PHPExcel/Chart/Title.php
class PHPExcel_Chart_Title (line 28) | class PHPExcel_Chart_Title
method __construct (line 48) | public function __construct($caption = null, PHPExcel_Chart_Layout $la...
method getCaption (line 59) | public function getCaption()
method setCaption (line 70) | public function setCaption($caption = null)
method getLayout (line 82) | public function getLayout()
FILE: application/libraries/PHPExcel/PHPExcel/Comment.php
class PHPExcel_Comment (line 28) | class PHPExcel_Comment implements PHPExcel_IComparable
method __construct (line 98) | public function __construct()
method getAuthor (line 112) | public function getAuthor()
method setAuthor (line 123) | public function setAuthor($pValue = '')
method getText (line 134) | public function getText()
method setText (line 145) | public function setText(PHPExcel_RichText $pValue)
method getWidth (line 156) | public function getWidth()
method setWidth (line 167) | public function setWidth($value = '96pt')
method getHeight (line 178) | public function getHeight()
method setHeight (line 189) | public function setHeight($value = '55.5pt')
method getMarginLeft (line 200) | public function getMarginLeft()
method setMarginLeft (line 211) | public function setMarginLeft($value = '59.25pt')
method getMarginTop (line 222) | public function getMarginTop()
method setMarginTop (line 233) | public function setMarginTop($value = '1.5pt')
method getVisible (line 244) | public function getVisible()
method setVisible (line 255) | public function setVisible($value = false)
method getFillColor (line 266) | public function getFillColor()
method setAlignment (line 277) | public function setAlignment($pValue = PHPExcel_Style_Alignment::HORIZ...
method getAlignment (line 288) | public function getAlignment()
method getHashCode (line 298) | public function getHashCode()
method __clone (line 317) | public function __clone()
method __toString (line 334) | public function __toString()
FILE: application/libraries/PHPExcel/PHPExcel/DocumentProperties.php
class PHPExcel_DocumentProperties (line 28) | class PHPExcel_DocumentProperties
method __construct (line 126) | public function __construct()
method getCreator (line 139) | public function getCreator()
method setCreator (line 150) | public function setCreator($pValue = '')
method getLastModifiedBy (line 161) | public function getLastModifiedBy()
method setLastModifiedBy (line 172) | public function setLastModifiedBy($pValue = '')
method getCreated (line 183) | public function getCreated()
method setCreated (line 194) | public function setCreated($pValue = null)
method getModified (line 215) | public function getModified()
method setModified (line 226) | public function setModified($pValue = null)
method getTitle (line 247) | public function getTitle()
method setTitle (line 258) | public function setTitle($pValue = '')
method getDescription (line 269) | public function getDescription()
method setDescription (line 280) | public function setDescription($pValue = '')
method getSubject (line 291) | public function getSubject()
method setSubject (line 302) | public function setSubject($pValue = '')
method getKeywords (line 313) | public function getKeywords()
method setKeywords (line 324) | public function setKeywords($pValue = '')
method getCategory (line 335) | public function getCategory()
method setCategory (line 346) | public function setCategory($pValue = '')
method getCompany (line 357) | public function getCompany()
method setCompany (line 368) | public function setCompany($pValue = '')
method getManager (line 379) | public function getManager()
method setManager (line 390) | public function setManager($pValue = '')
method getCustomProperties (line 401) | public function getCustomProperties()
method isCustomPropertySet (line 412) | public function isCustomPropertySet($propertyName)
method getCustomPropertyValue (line 423) | public function getCustomPropertyValue($propertyName)
method getCustomPropertyType (line 437) | public function getCustomPropertyType($propertyName)
method setCustomProperty (line 458) | public function setCustomProperty($propertyName, $propertyValue = '', ...
method __clone (line 488) | public function __clone()
method convertProperty (line 500) | public static function convertProperty($propertyValue, $propertyType)
method convertPropertyType (line 559) | public static function convertPropertyType($propertyType)
FILE: application/libraries/PHPExcel/PHPExcel/DocumentSecurity.php
class PHPExcel_DocumentSecurity (line 28) | class PHPExcel_DocumentSecurity
method __construct (line 68) | public function __construct()
method isSecurityEnabled (line 83) | public function isSecurityEnabled()
method getLockRevision (line 95) | public function getLockRevision()
method setLockRevision (line 106) | public function setLockRevision($pValue = false)
method getLockStructure (line 117) | public function getLockStructure()
method setLockStructure (line 128) | public function setLockStructure($pValue = false)
method getLockWindows (line 139) | public function getLockWindows()
method setLockWindows (line 150) | public function setLockWindows($pValue = false)
method getRevisionsPassword (line 161) | public function getRevisionsPassword()
method setRevisionsPassword (line 173) | public function setRevisionsPassword($pValue = '', $pAlreadyHashed = f...
method getWorkbookPassword (line 187) | public function getWorkbookPassword()
method setWorkbookPassword (line 199) | public function setWorkbookPassword($pValue = '', $pAlreadyHashed = fa...
method __clone (line 211) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Exception.php
class PHPExcel_Exception (line 36) | class PHPExcel_Exception extends Exception
method errorHandlerCallback (line 47) | public static function errorHandlerCallback($code, $string, $file, $li...
FILE: application/libraries/PHPExcel/PHPExcel/HashTable.php
class PHPExcel_HashTable (line 28) | class PHPExcel_HashTable
method __construct (line 50) | public function __construct($pSource = null)
method addFromSource (line 64) | public function addFromSource($pSource = null)
method add (line 84) | public function add(PHPExcel_IComparable $pSource = null)
method remove (line 99) | public function remove(PHPExcel_IComparable $pSource = null)
method clear (line 123) | public function clear()
method count (line 134) | public function count()
method getIndexForHashCode (line 145) | public function getIndexForHashCode($pHashCode = '')
method getByIndex (line 157) | public function getByIndex($pIndex = 0)
method getByHashCode (line 173) | public function getByHashCode($pHashCode = '')
method toArray (line 187) | public function toArray()
method __clone (line 195) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Helper/HTML.php
class PHPExcel_Helper_HTML (line 3) | class PHPExcel_Helper_HTML
method initialise (line 576) | protected function initialise()
method toRichTextObject (line 586) | public function toRichTextObject($html)
method cleanWhitespace (line 608) | protected function cleanWhitespace()
method buildTextRun (line 622) | protected function buildTextRun()
method rgbToColour (line 660) | protected function rgbToColour($rgb)
method colourNameLookup (line 669) | protected function colourNameLookup($rgb)
method startFontTag (line 674) | protected function startFontTag($tag)
method endFontTag (line 694) | protected function endFontTag()
method startBoldTag (line 699) | protected function startBoldTag()
method endBoldTag (line 704) | protected function endBoldTag()
method startItalicTag (line 709) | protected function startItalicTag()
method endItalicTag (line 714) | protected function endItalicTag()
method startUnderlineTag (line 719) | protected function startUnderlineTag()
method endUnderlineTag (line 724) | protected function endUnderlineTag()
method startSubscriptTag (line 729) | protected function startSubscriptTag()
method endSubscriptTag (line 734) | protected function endSubscriptTag()
method startSuperscriptTag (line 739) | protected function startSuperscriptTag()
method endSuperscriptTag (line 744) | protected function endSuperscriptTag()
method startStrikethruTag (line 749) | protected function startStrikethruTag()
method endStrikethruTag (line 754) | protected function endStrikethruTag()
method breakTag (line 759) | protected function breakTag()
method parseTextNode (line 764) | protected function parseTextNode(DOMText $textNode)
method handleCallback (line 775) | protected function handleCallback($element, $callbackTag, $callbacks)
method parseElementNode (line 785) | protected function parseElementNode(DOMElement $element)
method parseElements (line 798) | protected function parseElements(DOMNode $element)
FILE: application/libraries/PHPExcel/PHPExcel/IComparable.php
type PHPExcel_IComparable (line 26) | interface PHPExcel_IComparable
method getHashCode (line 33) | public function getHashCode();
FILE: application/libraries/PHPExcel/PHPExcel/IOFactory.php
class PHPExcel_IOFactory (line 37) | class PHPExcel_IOFactory
method __construct (line 72) | private function __construct()
method getSearchLocations (line 83) | public static function getSearchLocations()
method setSearchLocations (line 96) | public static function setSearchLocations($value)
method addSearchLocation (line 114) | public static function addSearchLocation($type = '', $location = '', $...
method createWriter (line 129) | public static function createWriter(PHPExcel $phpExcel, $writerType = '')
method createReader (line 159) | public static function createReader($readerType = '')
method load (line 189) | public static function load($pFilename)
method identify (line 204) | public static function identify($pFilename)
method createReaderForFile (line 222) | public static function createReaderForFile($pFilename)
FILE: application/libraries/PHPExcel/PHPExcel/NamedRange.php
class PHPExcel_NamedRange (line 28) | class PHPExcel_NamedRange
method __construct (line 75) | public function __construct($pName = null, PHPExcel_Worksheet $pWorksh...
method getName (line 95) | public function getName()
method setName (line 106) | public function setName($value = null)
method getWorksheet (line 134) | public function getWorksheet()
method setWorksheet (line 145) | public function setWorksheet(PHPExcel_Worksheet $value = null)
method getRange (line 158) | public function getRange()
method setRange (line 169) | public function setRange($value = null)
method getLocalOnly (line 182) | public function getLocalOnly()
method setLocalOnly (line 193) | public function setLocalOnly($value = false)
method getScope (line 205) | public function getScope()
method setScope (line 216) | public function setScope(PHPExcel_Worksheet $value = null)
method resolveRange (line 230) | public static function resolveRange($pNamedRange = '', PHPExcel_Worksh...
method __clone (line 238) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Abstract.php
class PHPExcel_Reader_Abstract (line 28) | abstract class PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader
method getReadDataOnly (line 81) | public function getReadDataOnly()
method setReadDataOnly (line 95) | public function setReadDataOnly($pValue = false)
method getReadEmptyCells (line 108) | public function getReadEmptyCells()
method setReadEmptyCells (line 122) | public function setReadEmptyCells($pValue = true)
method getIncludeCharts (line 136) | public function getIncludeCharts()
method setIncludeCharts (line 151) | public function setIncludeCharts($pValue = false)
method getLoadSheetsOnly (line 164) | public function getLoadSheetsOnly()
method setLoadSheetsOnly (line 178) | public function setLoadSheetsOnly($value = null)
method setLoadAllSheets (line 194) | public function setLoadAllSheets()
method getReadFilter (line 205) | public function getReadFilter()
method setReadFilter (line 216) | public function setReadFilter(PHPExcel_Reader_IReadFilter $pValue)
method openFile (line 229) | protected function openFile($pFilename)
method canRead (line 250) | public function canRead($pFilename)
method securityScan (line 270) | public function securityScan($xml)
method securityScanFile (line 285) | public function securityScanFile($filestream)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/CSV.php
class PHPExcel_Reader_CSV (line 37) | class PHPExcel_Reader_CSV extends PHPExcel_Reader_Abstract implements PH...
method __construct (line 90) | public function __construct()
method isValidFormat (line 100) | protected function isValidFormat()
method setInputEncoding (line 110) | public function setInputEncoding($pValue = 'UTF-8')
method getInputEncoding (line 121) | public function getInputEncoding()
method skipBOM (line 130) | protected function skipBOM()
method checkSeparator (line 164) | protected function checkSeparator()
method listWorksheetInfo (line 184) | public function listWorksheetInfo($pFilename)
method load (line 229) | public function load($pFilename)
method loadIntoExisting (line 246) | public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel)
method getDelimiter (line 318) | public function getDelimiter()
method setDelimiter (line 329) | public function setDelimiter($pValue = ',')
method getEnclosure (line 340) | public function getEnclosure()
method setEnclosure (line 351) | public function setEnclosure($pValue = '"')
method getSheetIndex (line 365) | public function getSheetIndex()
method setSheetIndex (line 376) | public function setSheetIndex($pValue = 0)
method setContiguous (line 387) | public function setContiguous($contiguous = false)
method getContiguous (line 402) | public function getContiguous()
FILE: application/libraries/PHPExcel/PHPExcel/Reader/DefaultReadFilter.php
class PHPExcel_Reader_DefaultReadFilter (line 37) | class PHPExcel_Reader_DefaultReadFilter implements PHPExcel_Reader_IRead...
method readCell (line 47) | public function readCell($column, $row, $worksheetName = '')
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel2003XML.php
class PHPExcel_Reader_Excel2003XML (line 37) | class PHPExcel_Reader_Excel2003XML extends PHPExcel_Reader_Abstract impl...
method __construct (line 56) | public function __construct()
method canRead (line 69) | public function canRead($pFilename)
method listWorksheetNames (line 120) | public function listWorksheetNames($pFilename)
method listWorksheetInfo (line 151) | public function listWorksheetInfo($pFilename)
method load (line 223) | public function load($pFilename)
method identifyFixedStyleValue (line 233) | protected static function identifyFixedStyleValue($styleList, &$styleA...
method pixel2WidthUnits (line 250) | protected static function pixel2WidthUnits($pxs)
method widthUnits2Pixel (line 264) | protected static function widthUnits2Pixel($widthUnits)
method hex2str (line 272) | protected static function hex2str($hex)
method loadIntoExisting (line 285) | public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel)
method convertStringEncoding (line 784) | protected static function convertStringEncoding($string, $charset)
method parseRichText (line 793) | protected function parseRichText($is = '')
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel2007.php
class PHPExcel_Reader_Excel2007 (line 37) | class PHPExcel_Reader_Excel2007 extends PHPExcel_Reader_Abstract impleme...
method __construct (line 56) | public function __construct()
method canRead (line 69) | public function canRead($pFilename)
method listWorksheetNames (line 114) | public function listWorksheetNames($pFilename)
method listWorksheetInfo (line 160) | public function listWorksheetInfo($pFilename)
method castToBoolean (line 234) | private static function castToBoolean($c)
method castToError (line 248) | private static function castToError($c)
method castToString (line 254) | private static function castToString($c)
method castToFormula (line 260) | private function castToFormula($c, $r, &$cellDataType, &$value, &$calc...
method getFromZipArchive (line 302) | private function getFromZipArchive($archive, $fileName = '')
method load (line 334) | public function load($pFilename)
method readColor (line 1739) | private static function readColor($color, $background = false)
method readStyle (line 1762) | private static function readStyle($docStyle, $style)
method readBorder (line 1894) | private static function readBorder($docBorder, $eleBorder)
method parseRichText (line 1904) | private function parseRichText($is = null)
method readRibbon (line 1962) | private function readRibbon($excel, $customUITarget, $zip)
method getArrayItem (line 2000) | private static function getArrayItem($array, $key = 0)
method dirAdd (line 2005) | private static function dirAdd($base, $add)
method toCSSArray (line 2010) | private static function toCSSArray($style)
method boolean (line 2041) | private static function boolean($value = null)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel2007/Chart.php
class PHPExcel_Reader_Excel2007_Chart (line 35) | class PHPExcel_Reader_Excel2007_Chart
method getAttribute (line 37) | private static function getAttribute($component, $name, $format)
method readColor (line 55) | private static function readColor($color, $background = false)
method readChart (line 64) | public static function readChart($chartElements, $chartName)
method chartTitle (line 206) | private static function chartTitle($titleDetails, $namespacesChartMeta...
method chartLayoutDetails (line 231) | private static function chartLayoutDetails($chartDetail, $namespacesCh...
method chartDataSeries (line 248) | private static function chartDataSeries($chartDetail, $namespacesChart...
method chartDataSeriesValueSet (line 300) | private static function chartDataSeriesValueSet($seriesDetail, $namesp...
method chartDataSeriesValues (line 329) | private static function chartDataSeriesValues($seriesValueSet, $dataTy...
method chartDataSeriesValuesMultiLevel (line 361) | private static function chartDataSeriesValuesMultiLevel($seriesValueSe...
method parseRichText (line 395) | private static function parseRichText($titleDetailPart = null)
method readChartAttributes (line 462) | private static function readChartAttributes($chartDetail)
method setChartAttributes (line 492) | private static function setChartAttributes($plotArea, $plotAttributes)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel2007/Theme.php
class PHPExcel_Reader_Excel2007_Theme (line 36) | class PHPExcel_Reader_Excel2007_Theme
method __construct (line 72) | public function __construct($themeName, $colourSchemeName, $colourMap)
method getThemeName (line 85) | public function getThemeName()
method getColourSchemeName (line 95) | public function getColourSchemeName()
method getColourByIndex (line 105) | public function getColourByIndex($index = 0)
method __clone (line 116) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5.php
class PHPExcel_Reader_Excel5 (line 68) | class PHPExcel_Reader_Excel5 extends PHPExcel_Reader_Abstract implements...
method __construct (line 417) | public function __construct()
method canRead (line 429) | public function canRead($pFilename)
method listWorksheetNames (line 454) | public function listWorksheetNames($pFilename)
method listWorksheetInfo (line 511) | public function listWorksheetInfo($pFilename)
method load (line 619) | public function load($pFilename)
method readRecordData (line 1234) | private function readRecordData($data, $pos, $len)
method loadOLE (line 1285) | private function loadOLE($pFilename)
method readSummaryInformation (line 1305) | private function readSummaryInformation()
method readDocumentSummaryInformation (line 1440) | private function readDocumentSummaryInformation()
method readDefault (line 1577) | private function readDefault()
method readNote (line 1591) | private function readNote()
method readTextObject (line 1654) | private function readTextObject()
method readBof (line 1694) | private function readBof()
method readFilepass (line 1744) | private function readFilepass()
method makeKey (line 1775) | private function makeKey($block, $valContext)
method verifyPassword (line 1809) | private function verifyPassword($password, $docid, $salt_data, $hashed...
method readCodepage (line 1891) | private function readCodepage()
method readDateMode (line 1918) | private function readDateMode()
method readFont (line 1937) | private function readFont()
method readFormat (line 2039) | private function readFormat()
method readXf (line 2077) | private function readXf()
function readVerticalPageBreaks (line 3136) | function readVerticalPageBreaks()
function readHeader (line 3164) | function readHeader()
function readFooter (line 3192) | function readFooter()
function readHcenter (line 3219) | function readHcenter()
function readVcenter (line 3239) | function readVcenter()
function readLeftMargin (line 3259) | function readLeftMargin()
function readRightMargin (line 3277) | function readRightMargin()
function readTopMargin (line 3295) | function readTopMargin()
function readBottomMargin (line 3313) | function readBottomMargin()
function readPageSetup (line 3331) | function readPageSetup()
function readProtect (line 3393) | function readProtect()
function readScenProtect (line 3416) | function readScenProtect()
function readObjectProtect (line 3440) | function readObjectProtect()
function readPassword (line 3464) | function readPassword()
function readDefColWidth (line 3483) | function readDefColWidth()
function readColInfo (line 3502) | function readColInfo()
function readRow (line 3560) | function readRow()
function readRk (line 3630) | function readRk()
function readLabelSst (line 3675) | function readLabelSst()
function readMulRk (line 3760) | function readMulRk()
function readNumber (line 3814) | function readNumber()
function readFormula (line 3856) | function readFormula()
function readMsoDrawing (line 4220) | function readMsoDrawing()
function readObj (line 4235) | function readObj()
function readWindow2 (line 4280) | function readWindow2()
function readPageLayoutView (line 4351) | function readPageLayoutView()
function readScl (line 4390) | function readScl()
function readPane (line 4412) | function readPane()
function readSelection (line 4440) | function readSelection()
function includeCellRangeFiltered (line 4488) | function includeCellRangeFiltered($cellRangeAddress)
function readMergedCells (line 4517) | function readMergedCells()
function readHyperLink (line 4540) | function readHyperLink()
function readDataValidations (line 4712) | function readDataValidations()
function readDataValidation (line 4725) | function readDataValidation()
function readSheetLayout (line 4916) | function readSheetLayout()
function readSheetProtection (line 4955) | function readSheetProtection()
function readRangeProtection (line 5056) | function readRangeProtection()
function readImData (line 5117) | function readImData()
function readContinue (line 5197) | function readContinue()
function getSplicedRecordData (line 5249) | function getSplicedRecordData()
function getFormulaFromStructure (line 5289) | function getFormulaFromStructure($formulaStructure, $baseCell = 'A1')
function getFormulaFromData (line 5328) | function getFormulaFromData($formulaData, $additionalData = '', $baseCel...
function createFormulaFromTokens (line 5355) | function createFormulaFromTokens($tokens, $additionalData)
function getNextToken (line 5519) | function getNextToken($formulaData, $baseCell = 'A1')
function readBIFF8CellAddress (line 6806) | function readBIFF8CellAddress($cellAddressStructure)
function readBIFF8CellAddressB (line 6837) | function readBIFF8CellAddressB($cellAddressStructure, $baseCell = 'A1')
function readBIFF5CellRangeAddressFixed (line 6880) | function readBIFF5CellRangeAddressFixed($subData)
function readBIFF8CellRangeAddressList (line 7092) | function readBIFF8CellRangeAddressList($subData)
function readBIFF5CellRangeAddressList (line 7120) | function readBIFF5CellRangeAddressList($subData)
function readSheetRangeByRefIndex (line 7151) | function readSheetRangeByRefIndex($index)
function readBIFF8ConstantArray (line 7205) | function readBIFF8ConstantArray($arrayData)
function readBIFF8Constant (line 7244) | function readBIFF8Constant($valueData)
function readRGB (line 7294) | function readRGB($rgb)
function encodeUTF16 (line 7516) | function encodeUTF16($string, $compressed = '')
function uncompressByteString (line 7531) | function uncompressByteString($string)
function decodeCodepage (line 7548) | function decodeCodepage($string)
function getInt2d (line 7560) | function getInt2d($data, $pos)
function getInt4d (line 7572) | function getInt4d($data, $pos)
function parseRichText (line 7587) | function parseRichText($is = '')
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color.php
class PHPExcel_Reader_Excel5_Color (line 3) | class PHPExcel_Reader_Excel5_Color
method map (line 12) | public static function map($color, $palette, $version)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF5.php
class PHPExcel_Reader_Excel5_Color_BIFF5 (line 3) | class PHPExcel_Reader_Excel5_Color_BIFF5
method lookup (line 70) | public static function lookup($color)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF8.php
class PHPExcel_Reader_Excel5_Color_BIFF8 (line 3) | class PHPExcel_Reader_Excel5_Color_BIFF8
method lookup (line 70) | public static function lookup($color)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color/BuiltIn.php
class PHPExcel_Reader_Excel5_Color_BuiltIn (line 3) | class PHPExcel_Reader_Excel5_Color_BuiltIn
method lookup (line 24) | public static function lookup($color)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/ErrorCode.php
class PHPExcel_Reader_Excel5_ErrorCode (line 3) | class PHPExcel_Reader_Excel5_ErrorCode
method lookup (line 21) | public static function lookup($code)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Escher.php
class PHPExcel_Reader_Excel5_Escher (line 28) | class PHPExcel_Reader_Excel5_Escher
method __construct (line 82) | public function __construct($object)
method load (line 92) | public function load($data)
method readDefault (line 173) | private function readDefault()
method readDggContainer (line 194) | private function readDggContainer()
method readDgg (line 212) | private function readDgg()
method readBstoreContainer (line 224) | private function readBstoreContainer()
method readBSE (line 242) | private function readBSE()
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/MD5.php
class PHPExcel_Reader_Excel5_MD5 (line 28) | class PHPExcel_Reader_Excel5_MD5
method __construct (line 39) | public function __construct()
method reset (line 47) | public function reset()
method getContext (line 60) | public function getContext()
method add (line 79) | public function add($data)
method f (line 171) | private static function f($X, $Y, $Z)
method g (line 176) | private static function g($X, $Y, $Z)
method h (line 181) | private static function h($X, $Y, $Z)
method i (line 186) | private static function i($X, $Y, $Z)
method step (line 191) | private static function step($func, &$A, $B, $C, $D, $M, $s, $t)
method rotate (line 198) | private static function rotate($decimal, $bits)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/RC4.php
class PHPExcel_Reader_Excel5_RC4 (line 28) | class PHPExcel_Reader_Excel5_RC4
method __construct (line 40) | public function __construct($key)
method RC4 (line 65) | public function RC4($data)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Style/Border.php
class PHPExcel_Reader_Excel5_Style_Border (line 3) | class PHPExcel_Reader_Excel5_Style_Border
method lookup (line 29) | public static function lookup($index)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Style/FillPattern.php
class PHPExcel_Reader_Excel5_Style_FillPattern (line 3) | class PHPExcel_Reader_Excel5_Style_FillPattern
method lookup (line 34) | public static function lookup($index)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Exception.php
class PHPExcel_Reader_Exception (line 28) | class PHPExcel_Reader_Exception extends PHPExcel_Exception
method errorHandlerCallback (line 39) | public static function errorHandlerCallback($code, $string, $file, $li...
FILE: application/libraries/PHPExcel/PHPExcel/Reader/Gnumeric.php
class PHPExcel_Reader_Gnumeric (line 37) | class PHPExcel_Reader_Gnumeric extends PHPExcel_Reader_Abstract implemen...
method __construct (line 58) | public function __construct()
method canRead (line 71) | public function canRead($pFilename)
method listWorksheetNames (line 101) | public function listWorksheetNames($pFilename)
method listWorksheetInfo (line 132) | public function listWorksheetInfo($pFilename)
method gzfileGetContents (line 176) | private function gzfileGetContents($filename)
method load (line 196) | public function load($pFilename)
method loadIntoExisting (line 213) | public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel)
method parseBorderAttributes (line 780) | private static function parseBorderAttributes($borderAttributes)
method parseRichText (line 834) | private function parseRichText($is = '')
method parseGnumericColour (line 842) | private static function parseGnumericColour($gnmColour)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/HTML.php
class PHPExcel_Reader_HTML (line 37) | class PHPExcel_Reader_HTML extends PHPExcel_Reader_Abstract implements P...
method __construct (line 121) | public function __construct()
method isValidFormat (line 131) | protected function isValidFormat()
method load (line 150) | public function load($pFilename)
method setInputEncoding (line 164) | public function setInputEncoding($pValue = 'ANSI')
method getInputEncoding (line 176) | public function getInputEncoding()
method setTableStartColumn (line 186) | protected function setTableStartColumn($column)
method getTableStartColumn (line 197) | protected function getTableStartColumn()
method releaseTableStartColumn (line 202) | protected function releaseTableStartColumn()
method flushCell (line 209) | protected function flushCell($sheet, $column, $row, &$cellContent)
method processDomElement (line 229) | protected function processDomElement(DOMNode $element, $sheet, &$row, ...
method loadIntoExisting (line 475) | public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel)
method getSheetIndex (line 517) | public function getSheetIndex()
method setSheetIndex (line 528) | public function setSheetIndex($pValue = 0)
method securityScan (line 541) | public function securityScan($xml)
FILE: application/libraries/PHPExcel/PHPExcel/Reader/IReadFilter.php
type PHPExcel_Reader_IReadFilter (line 28) | interface PHPExcel_Reader_IReadFilter
method readCell (line 38) | public function readCell($column, $row, $worksheetName = '');
FILE: application/libraries/PHPExcel/PHPExcel/Reader/IReader.php
type PHPExcel_Reader_IReader (line 28) | interface PHPExcel_Reader_IReader
method canRead (line 36) | public function canRead($pFilename);
method load (line 45) | public function load($pFilename);
FILE: application/libraries/PHPExcel/PHPExcel/Reader/OOCalc.php
class PHPExcel_Reader_OOCalc (line 37) | class PHPExcel_Reader_OOCalc extends PHPExcel_Reader_Abstract implements...
method __construct (line 49) | public function __construct()
method canRead (line 61) | public function canRead($pFilename)
method listWorksheetNames (line 113) | public function listWorksheetNames($pFilename)
method listWorksheetInfo (line 165) | public function listWorksheetInfo($pFilename)
method load (line 291) | public function load($pFilename)
method identifyFixedStyleValue (line 300) | private static function identifyFixedStyleValue($styleList, &$styleAtt...
method loadIntoExisting (line 320) | public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel)
method parseRichText (line 688) | private function parseRichText($is = '')
FILE: application/libraries/PHPExcel/PHPExcel/Reader/SYLK.php
class PHPExcel_Reader_SYLK (line 37) | class PHPExcel_Reader_SYLK extends PHPExcel_Reader_Abstract implements P...
method __construct (line 70) | public function __construct()
method isValidFormat (line 80) | protected function isValidFormat()
method setInputEncoding (line 105) | public function setInputEncoding($pValue = 'ANSI')
method getInputEncoding (line 116) | public function getInputEncoding()
method listWorksheetInfo (line 127) | public function listWorksheetInfo($pFilename)
function load (line 197) | function load($pFilename)
function loadIntoExisting (line 214) | function loadIntoExisting($pFilename, PHPExcel $objPHPExcel)
function getSheetIndex (line 462) | function getSheetIndex()
function setSheetIndex (line 473) | function setSheetIndex($pValue = 0)
FILE: application/libraries/PHPExcel/PHPExcel/ReferenceHelper.php
class PHPExcel_ReferenceHelper (line 28) | class PHPExcel_ReferenceHelper
method getInstance (line 49) | public static function getInstance()
method __construct (line 61) | protected function __construct()
method columnSort (line 73) | public static function columnSort($a, $b)
method columnReverseSort (line 86) | public static function columnReverseSort($a, $b)
method cellSort (line 99) | public static function cellSort($a, $b)
method cellReverseSort (line 118) | public static function cellReverseSort($a, $b)
method cellAddressInDeleteRange (line 139) | private static function cellAddressInDeleteRange($cellAddress, $before...
method adjustPageBreaks (line 166) | protected function adjustPageBreaks(PHPExcel_Worksheet $pSheet, $pBefo...
method adjustComments (line 200) | protected function adjustComments($pSheet, $pBefore, $beforeColumnInde...
method adjustHyperlinks (line 227) | protected function adjustHyperlinks($pSheet, $pBefore, $beforeColumnIn...
method adjustDataValidations (line 251) | protected function adjustDataValidations($pSheet, $pBefore, $beforeCol...
method adjustMergeCells (line 275) | protected function adjustMergeCells($pSheet, $pBefore, $beforeColumnIn...
method adjustProtectedCells (line 296) | protected function adjustProtectedCells($pSheet, $pBefore, $beforeColu...
method adjustColumnDimensions (line 321) | protected function adjustColumnDimensions($pSheet, $pBefore, $beforeCo...
method adjustRowDimensions (line 346) | protected function adjustRowDimensions($pSheet, $pBefore, $beforeColum...
method insertNewBefore (line 379) | public function insertNewBefore($pBefore = 'A1', $pNumCols = 0, $pNumR...
method updateFormulaReferences (line 640) | public function updateFormulaReferences($pFormula = '', $pBefore = 'A1...
method updateCellReference (line 780) | public function updateCellReference($pCellRange = 'A1', $pBefore = 'A1...
method updateNamedFormulas (line 805) | public function updateNamedFormulas(PHPExcel $pPhpExcel, $oldName = ''...
method updateCellRange (line 836) | private function updateCellRange($pCellRange = 'A1:A1', $pBefore = 'A1...
method updateSingleCellReference (line 874) | private function updateSingleCellReference($pCellReference = 'A1', $pB...
method __clone (line 909) | final public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/RichText.php
class PHPExcel_RichText (line 28) | class PHPExcel_RichText implements PHPExcel_IComparable
method __construct (line 43) | public function __construct(PHPExcel_Cell $pCell = null)
method addText (line 69) | public function addText(PHPExcel_RichText_ITextElement $pText = null)
method createText (line 82) | public function createText($pText = '')
method createTextRun (line 96) | public function createTextRun($pText = '')
method getPlainText (line 108) | public function getPlainText()
method __toString (line 127) | public function __toString()
method getRichTextElements (line 137) | public function getRichTextElements()
method setRichTextElements (line 149) | public function setRichTextElements($pElements = null)
method getHashCode (line 164) | public function getHashCode()
method __clone (line 180) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/RichText/ITextElement.php
type PHPExcel_RichText_ITextElement (line 26) | interface PHPExcel_RichText_ITextElement
method getText (line 33) | public function getText();
method setText (line 41) | public function setText($pText = '');
method getFont (line 48) | public function getFont();
method getHashCode (line 55) | public function getHashCode();
FILE: application/libraries/PHPExcel/PHPExcel/RichText/Run.php
class PHPExcel_RichText_Run (line 26) | class PHPExcel_RichText_Run extends PHPExcel_RichText_TextElement implem...
method __construct (line 40) | public function __construct($pText = '')
method getFont (line 52) | public function getFont()
method setFont (line 64) | public function setFont(PHPExcel_Style_Font $pFont = null)
method getHashCode (line 75) | public function getHashCode()
method __clone (line 87) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/RichText/TextElement.php
class PHPExcel_RichText_TextElement (line 26) | class PHPExcel_RichText_TextElement implements PHPExcel_RichText_ITextEl...
method __construct (line 40) | public function __construct($pText = '')
method getText (line 51) | public function getText()
method setText (line 62) | public function setText($pText = '')
method getFont (line 73) | public function getFont()
method getHashCode (line 83) | public function getHashCode()
method __clone (line 94) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Settings.php
class PHPExcel_Settings (line 37) | class PHPExcel_Settings
method setZipClass (line 121) | public static function setZipClass($zipClass)
method getZipClass (line 140) | public static function getZipClass()
method getCacheStorageMethod (line 151) | public static function getCacheStorageMethod()
method getCacheStorageClass (line 162) | public static function getCacheStorageClass()
method setCacheStorageMethod (line 175) | public static function setCacheStorageMethod($method = PHPExcel_Cached...
method setLocale (line 187) | public static function setLocale($locale = 'en_us')
method setChartRenderer (line 202) | public static function setChartRenderer($libraryName, $libraryBaseDir)
method setChartRendererName (line 219) | public static function setChartRendererName($libraryName)
method setChartRendererPath (line 236) | public static function setChartRendererPath($libraryBaseDir)
method getChartRendererName (line 254) | public static function getChartRendererName()
method getChartRendererPath (line 266) | public static function getChartRendererPath()
method setPdfRenderer (line 283) | public static function setPdfRenderer($libraryName, $libraryBaseDir)
method setPdfRendererName (line 302) | public static function setPdfRendererName($libraryName)
method setPdfRendererPath (line 319) | public static function setPdfRendererPath($libraryBaseDir)
method getPdfRendererName (line 339) | public static function getPdfRendererName()
method getPdfRendererPath (line 350) | public static function getPdfRendererPath()
method setLibXmlLoaderOptions (line 360) | public static function setLibXmlLoaderOptions($options = null)
method getLibXmlLoaderOptions (line 377) | public static function getLibXmlLoaderOptions()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/CodePage.php
class PHPExcel_Shared_CodePage (line 28) | class PHPExcel_Shared_CodePage
method NumberToName (line 38) | public static function NumberToName($codePage = 1252)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Date.php
class PHPExcel_Shared_Date (line 28) | class PHPExcel_Shared_Date
method setExcelCalendar (line 84) | public static function setExcelCalendar($baseDate)
method getExcelCalendar (line 100) | public static function getExcelCalendar()
method ExcelToPHP (line 115) | public static function ExcelToPHP($dateValue = 0, $adjustToTimezone = ...
method ExcelToPHPObject (line 155) | public static function ExcelToPHPObject($dateValue = 0)
method PHPToExcel (line 181) | public static function PHPToExcel($dateValue = 0, $adjustToTimezone = ...
method FormattedPHPToExcel (line 217) | public static function FormattedPHPToExcel($year, $month, $day, $hours...
method isDateTime (line 259) | public static function isDateTime(PHPExcel_Cell $pCell)
method isDateTimeFormat (line 275) | public static function isDateTimeFormat(PHPExcel_Style_NumberFormat $p...
method isDateTimeFormatCode (line 289) | public static function isDateTimeFormatCode($pFormatCode = '')
method stringToExcel (line 361) | public static function stringToExcel($dateValue = '')
method monthStringToNumber (line 392) | public static function monthStringToNumber($month)
method dayStringToNumber (line 410) | public static function dayStringToNumber($day)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Drawing.php
class PHPExcel_Shared_Drawing (line 36) | class PHPExcel_Shared_Drawing
method pixelsToEMU (line 44) | public static function pixelsToEMU($pValue = 0)
method EMUToPixels (line 55) | public static function EMUToPixels($pValue = 0)
method pixelsToCellDimension (line 73) | public static function pixelsToCellDimension($pValue = 0, PHPExcel_Sty...
method cellDimensionToPixels (line 98) | public static function cellDimensionToPixels($pValue = 0, PHPExcel_Sty...
method pixelsToPoints (line 125) | public static function pixelsToPoints($pValue = 0)
method pointsToPixels (line 136) | public static function pointsToPixels($pValue = 0)
method degreesToAngle (line 151) | public static function degreesToAngle($pValue = 0)
method angleToDegrees (line 162) | public static function angleToDegrees($pValue = 0)
method imagecreatefrombmp (line 178) | public static function imagecreatefrombmp($p_sFile)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher.php
class PHPExcel_Shared_Escher (line 28) | class PHPExcel_Shared_Escher
method getDggContainer (line 49) | public function getDggContainer()
method setDggContainer (line 59) | public function setDggContainer($dggContainer)
method getDgContainer (line 69) | public function getDgContainer()
method setDgContainer (line 79) | public function setDgContainer($dgContainer)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher/DgContainer.php
class PHPExcel_Shared_Escher_DgContainer (line 28) | class PHPExcel_Shared_Escher_DgContainer
method getDgId (line 46) | public function getDgId()
method setDgId (line 51) | public function setDgId($value)
method getLastSpId (line 56) | public function getLastSpId()
method setLastSpId (line 61) | public function setLastSpId($value)
method getSpgrContainer (line 66) | public function getSpgrContainer()
method setSpgrContainer (line 71) | public function setSpgrContainer($spgrContainer)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php
class PHPExcel_Shared_Escher_DgContainer_SpgrContainer (line 28) | class PHPExcel_Shared_Escher_DgContainer_SpgrContainer
method setParent (line 49) | public function setParent($parent)
method getParent (line 59) | public function getParent()
method addChild (line 69) | public function addChild($child)
method getChildren (line 78) | public function getChildren()
method getAllSpContainers (line 88) | public function getAllSpContainers()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php
class PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer (line 28) | class PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer
method setParent (line 119) | public function setParent($parent)
method getParent (line 129) | public function getParent()
method setSpgr (line 139) | public function setSpgr($value = false)
method getSpgr (line 149) | public function getSpgr()
method setSpType (line 159) | public function setSpType($value)
method getSpType (line 169) | public function getSpType()
method setSpFlag (line 179) | public function setSpFlag($value)
method getSpFlag (line 189) | public function getSpFlag()
method setSpId (line 199) | public function setSpId($value)
method getSpId (line 209) | public function getSpId()
method setOPT (line 220) | public function setOPT($property, $value)
method getOPT (line 231) | public function getOPT($property)
method getOPTCollection (line 244) | public function getOPTCollection()
method setStartCoordinates (line 254) | public function setStartCoordinates($value = 'A1')
method getStartCoordinates (line 264) | public function getStartCoordinates()
method setStartOffsetX (line 274) | public function setStartOffsetX($startOffsetX = 0)
method getStartOffsetX (line 284) | public function getStartOffsetX()
method setStartOffsetY (line 294) | public function setStartOffsetY($startOffsetY = 0)
method getStartOffsetY (line 304) | public function getStartOffsetY()
method setEndCoordinates (line 314) | public function setEndCoordinates($value = 'A1')
method getEndCoordinates (line 324) | public function getEndCoordinates()
method setEndOffsetX (line 334) | public function setEndOffsetX($endOffsetX = 0)
method getEndOffsetX (line 344) | public function getEndOffsetX()
method setEndOffsetY (line 354) | public function setEndOffsetY($endOffsetY = 0)
method getEndOffsetY (line 364) | public function getEndOffsetY()
method getNestingLevel (line 376) | public function getNestingLevel()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer.php
class PHPExcel_Shared_Escher_DggContainer (line 28) | class PHPExcel_Shared_Escher_DggContainer
method getSpIdMax (line 77) | public function getSpIdMax()
method setSpIdMax (line 87) | public function setSpIdMax($value)
method getCDgSaved (line 97) | public function getCDgSaved()
method setCDgSaved (line 107) | public function setCDgSaved($value)
method getCSpSaved (line 117) | public function getCSpSaved()
method setCSpSaved (line 127) | public function setCSpSaved($value)
method getBstoreContainer (line 137) | public function getBstoreContainer()
method setBstoreContainer (line 147) | public function setBstoreContainer($bstoreContainer)
method setOPT (line 158) | public function setOPT($property, $value)
method getOPT (line 169) | public function getOPT($property)
method getIDCLs (line 182) | public function getIDCLs()
method setIDCLs (line 192) | public function setIDCLs($pValue)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php
class PHPExcel_Shared_Escher_DggContainer_BstoreContainer (line 28) | class PHPExcel_Shared_Escher_DggContainer_BstoreContainer
method addBSE (line 42) | public function addBSE($BSE)
method getBSECollection (line 53) | public function getBSECollection()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php
class PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE (line 28) | class PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE
method setParent (line 67) | public function setParent($parent)
method getBlip (line 77) | public function getBlip()
method setBlip (line 87) | public function setBlip($blip)
method getBlipType (line 98) | public function getBlipType()
method setBlipType (line 108) | public function setBlipType($blipType)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php
class PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip (line 28) | class PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip
method getData (line 49) | public function getData()
method setData (line 59) | public function setData($data)
method setParent (line 69) | public function setParent($parent)
method getParent (line 79) | public function getParent()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Excel5.php
class PHPExcel_Shared_Excel5 (line 28) | class PHPExcel_Shared_Excel5
method sizeCol (line 39) | public static function sizeCol($sheet, $col = 'A')
method sizeRow (line 81) | public static function sizeRow($sheet, $row = 1)
method getDistanceX (line 126) | public static function getDistanceX(PHPExcel_Worksheet $sheet, $startC...
method getDistanceY (line 157) | public static function getDistanceY(PHPExcel_Worksheet $sheet, $startR...
method oneAnchor2twoAnchor (line 227) | public static function oneAnchor2twoAnchor($sheet, $coordinates, $offs...
FILE: application/libraries/PHPExcel/PHPExcel/Shared/File.php
class PHPExcel_Shared_File (line 28) | class PHPExcel_Shared_File
method setUseUploadTempDirectory (line 44) | public static function setUseUploadTempDirectory($useUploadTempDir = f...
method getUseUploadTempDirectory (line 55) | public static function getUseUploadTempDirectory()
method file_exists (line 67) | public static function file_exists($pFilename)
method realpath (line 97) | public static function realpath($pFilename)
method sys_get_temp_dir (line 131) | public static function sys_get_temp_dir()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/Font.php
class PHPExcel_Shared_Font (line 36) | class PHPExcel_Shared_Font
method setAutoSizeMethod (line 197) | public static function setAutoSizeMethod($pValue = self::AUTOSIZE_METH...
method getAutoSizeMethod (line 212) | public static function getAutoSizeMethod()
method setTrueTypeFontPath (line 228) | public static function setTrueTypeFontPath($pValue = '')
method getTrueTypeFontPath (line 238) | public static function getTrueTypeFontPath()
method calculateColumnWidth (line 252) | public static function calculateColumnWidth(PHPExcel_Style_Font $font,...
method getTextWidthPixelsExact (line 305) | public static function getTextWidthPixelsExact($text, PHPExcel_Style_F...
method getTextWidthPixelsApprox (line 340) | public static function getTextWidthPixelsApprox($columnText, PHPExcel_...
method fontSizeToPixels (line 396) | public static function fontSizeToPixels($fontSizeInPoints = 11)
method inchSizeToPixels (line 407) | public static function inchSizeToPixels($sizeInInch = 1)
method centimeterSizeToPixels (line 418) | public static function centimeterSizeToPixels($sizeInCm = 1)
method getTrueTypeFontFileFromFont (line 429) | public static function getTrueTypeFontFileFromFont($font)
method getCharsetFromFontName (line 541) | public static function getCharsetFromFontName($name)
method getDefaultColumnWidthByFont (line 566) | public static function getDefaultColumnWidthByFont(PHPExcel_Style_Font...
method getDefaultRowHeightByFont (line 598) | public static function getDefaultRowHeightByFont(PHPExcel_Style_Font $...
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/CholeskyDecomposition.php
class CholeskyDecomposition (line 18) | class CholeskyDecomposition
method __construct (line 47) | public function __construct($A = null)
method isSPD (line 85) | public function isSPD()
method getL (line 96) | public function getL()
method solve (line 107) | public function solve($B = null)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php
class EigenvalueDecomposition (line 24) | class EigenvalueDecomposition
method tred2 (line 75) | private function tred2()
method tql2 (line 184) | private function tql2()
method orthes (line 293) | private function orthes()
method cdiv (line 375) | private function cdiv($xr, $xi, $yr, $yi)
method hqr2 (line 400) | private function hqr2()
method __construct (line 784) | public function __construct($Arg)
method getV (line 818) | public function getV()
method getRealEigenvalues (line 829) | public function getRealEigenvalues()
method getImagEigenvalues (line 840) | public function getImagEigenvalues()
method getD (line 851) | public function getD()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/LUDecomposition.php
class PHPExcel_Shared_JAMA_LUDecomposition (line 21) | class PHPExcel_Shared_JAMA_LUDecomposition
method __construct (line 62) | public function __construct($A)
method getL (line 127) | public function getL()
method getU (line 148) | public function getU()
method getPivot (line 167) | public function getPivot()
method getDoublePivot (line 177) | public function getDoublePivot()
method isNonsingular (line 187) | public function isNonsingular()
method det (line 202) | public function det()
method solve (line 223) | public function solve($B)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/Matrix.php
class PHPExcel_Shared_JAMA_Matrix (line 27) | class PHPExcel_Shared_JAMA_Matrix
method __construct (line 64) | public function __construct()
method getArray (line 121) | public function getArray()
method getRowDimension (line 131) | public function getRowDimension()
method getColumnDimension (line 141) | public function getColumnDimension()
method get (line 154) | public function get($i = null, $j = null)
method getMatrix (line 169) | public function getMatrix()
method checkMatrixDimensions (line 318) | public function checkMatrixDimensions($B = null)
method set (line 340) | public function set($i = null, $j = null, $c = null)
method identity (line 354) | public function identity($m = null, $n = null)
method diagonal (line 368) | public function diagonal($m = null, $n = null, $c = 1)
method getMatrixByRow (line 385) | public function getMatrixByRow($i0 = null, $iF = null)
method getMatrixByCol (line 406) | public function getMatrixByCol($j0 = null, $jF = null)
method transpose (line 425) | public function transpose()
method trace (line 442) | public function trace()
method uminus (line 458) | public function uminus()
method plus (line 469) | public function plus()
method plusEquals (line 509) | public function plusEquals()
method minus (line 563) | public function minus()
method minusEquals (line 603) | public function minusEquals()
method arrayTimes (line 658) | public function arrayTimes()
method arrayTimesEquals (line 699) | public function arrayTimesEquals()
method arrayRightDivide (line 754) | public function arrayRightDivide()
method arrayRightDivideEquals (line 815) | public function arrayRightDivideEquals()
method arrayLeftDivide (line 857) | public function arrayLeftDivide()
method arrayLeftDivideEquals (line 899) | public function arrayLeftDivideEquals()
method times (line 940) | public function times()
method power (line 1035) | public function power()
method concat (line 1089) | public function concat()
method solve (line 1127) | public function solve($B)
method inverse (line 1143) | public function inverse()
method det (line 1154) | public function det()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/QRDecomposition.php
class PHPExcel_Shared_JAMA_QRDecomposition (line 19) | class PHPExcel_Shared_JAMA_QRDecomposition
method __construct (line 54) | public function __construct($A)
method isFullRank (line 102) | public function isFullRank()
method getH (line 117) | public function getH()
method getR (line 136) | public function getR()
method getQ (line 157) | public function getQ()
method solve (line 195) | public function solve($B)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/SingularValueDecomposition.php
class SingularValueDecomposition (line 20) | class SingularValueDecomposition
method __construct (line 60) | public function __construct($Arg)
method getU (line 438) | public function getU()
method getV (line 450) | public function getV()
method getSingularValues (line 462) | public function getSingularValues()
method getS (line 474) | public function getS()
method norm2 (line 492) | public function norm2()
method cond (line 504) | public function cond()
method rank (line 516) | public function rank()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/utils/Error.php
function JAMAError (line 70) | function JAMAError($errorNumber = null)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/JAMA/utils/Maths.php
function hypo (line 14) | function hypo($a, $b)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/OLE.php
class PHPExcel_Shared_OLE (line 38) | class PHPExcel_Shared_OLE
method read (line 96) | public function read($file)
method _getBlockOffset (line 186) | public function _getBlockOffset($blockId)
method getStream (line 197) | public function getStream($blockIdOrPps)
method _readInt1 (line 227) | private static function _readInt1($fh)
method _readInt2 (line 239) | private static function _readInt2($fh)
method _readInt4 (line 251) | private static function _readInt4($fh)
method _readPpsWks (line 265) | public function _readPpsWks($blockId)
method _ppsTreeComplete (line 339) | public function _ppsTreeComplete($index)
method isFile (line 359) | public function isFile($index)
method isRoot (line 375) | public function isRoot($index)
method ppsTotal (line 389) | public function ppsTotal()
method getData (line 406) | public function getData($index, $position, $length)
method getDataLength (line 426) | public function getDataLength($index)
method Asc2Ucs (line 442) | public static function Asc2Ucs($ascii)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/OLE/ChainedBlockStream.php
class PHPExcel_Shared_OLE_ChainedBlockStream (line 28) | class PHPExcel_Shared_OLE_ChainedBlockStream
method stream_open (line 65) | public function stream_open($path, $mode, $options, &$openedPath)
method stream_close (line 119) | public function stream_close()
method stream_read (line 131) | public function stream_read($count)
method stream_eof (line 146) | public function stream_eof()
method stream_tell (line 157) | public function stream_tell()
method stream_seek (line 169) | public function stream_seek($offset, $whence)
method stream_stat (line 188) | public function stream_stat()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/OLE/PPS.php
class PHPExcel_Shared_OLE_PPS (line 30) | class PHPExcel_Shared_OLE_PPS
method __construct (line 125) | public function __construct($No, $name, $type, $prev, $next, $dir, $ti...
method _DataLen (line 150) | public function _DataLen()
method _getPpsWk (line 170) | public function _getPpsWk()
method _savePpsSetPnt (line 203) | public static function _savePpsSetPnt(&$raList, $to_save, $depth = 0)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/OLE/PPS/File.php
class PHPExcel_Shared_OLE_PPS_File (line 30) | class PHPExcel_Shared_OLE_PPS_File extends PHPExcel_Shared_OLE_PPS
method __construct (line 39) | public function __construct($name)
method init (line 50) | public function init()
method append (line 61) | public function append($data)
method getStream (line 70) | public function getStream()
FILE: application/libraries/PHPExcel/PHPExcel/Shared/OLE/PPS/Root.php
class PHPExcel_Shared_OLE_PPS_Root (line 30) | class PHPExcel_Shared_OLE_PPS_Root extends PHPExcel_Shared_OLE_PPS
method __construct (line 43) | public function __construct($time_1st, $time_2nd, $raChild)
method save (line 61) | public function save($filename)
method _calcSize (line 122) | public function _calcSize(&$raList)
method adjust2 (line 161) | private static function adjust2($i2)
method _saveHeader (line 175) | public function _saveHeader($iSBDcnt, $iBBcnt, $iPPScnt)
method _saveBigData (line 255) | public function _saveBigData($iStBlk, &$raList)
method _makeSmallData (line 302) | public function _makeSmallData(&$raList)
method _savePps (line 359) | public function _savePps(&$raList)
method _saveBbd (line 382) | public function _saveBbd($iSbdSize, $iBsize, $iPpsCnt)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/OLERead.php
class PHPExcel_Shared_OLERead (line 31) | class PHPExcel_Shared_OLERead
method read (line 77) | public function read($sFileName)
method getStream (line 174) | public function getStream($stream)
method _readData (line 223) | private function _readData($bl)
method readPropertySets (line 239) | private function readPropertySets()
method getInt4d (line 304) | private static function getInt4d($data, $pos)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/PCLZip/pclzip.lib.php
class PclZip (line 190) | class PclZip
method __construct (line 215) | public function __construct($p_zipname)
method create (line 270) | public function create($p_filelist)
method add (line 436) | public function add($p_filelist)
method listContent (line 610) | public function listContent()
method extract (line 666) | public function extract()
method extractByIndex (line 817) | public function extractByIndex($p_index)
method delete (line 960) | public function delete()
method deleteByIndex (line 1020) | public function deleteByIndex($p_index)
method properties (line 1044) | public function properties()
method duplicate (line 1114) | public function duplicate($p_archive)
method merge (line 1163) | public function merge($p_archive_to_add)
method errorCode (line 1205) | public function errorCode()
method errorName (line 1220) | public function errorName($p_with_code = false)
method errorInfo (line 1265) | public function errorInfo($p_full = false)
method privCheckFormat (line 1302) | public function privCheckFormat($p_level = 0)
method privParseOptions (line 1355) | public function privParseOptions(&$p_options_list, $p_size, &$v_result...
method privOptionDefaultThreshold (line 1717) | public function privOptionDefaultThreshold(&$p_options)
method privFileDescrParseAtt (line 1762) | public function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v...
method privFileDescrExpand (line 1878) | public function privFileDescrExpand(&$p_filedescr_list, &$p_options)
method privCreate (line 1989) | public function privCreate($p_filedescr_list, &$p_result_list, &$p_opt...
method privAdd (line 2023) | public function privAdd($p_filedescr_list, &$p_result_list, &$p_options)
method privOpenFd (line 2192) | public function privOpenFd($p_mode)
method privCloseFd (line 2224) | public function privCloseFd()
method privAddList (line 2252) | public function privAddList($p_filedescr_list, &$p_result_list, &$p_op...
method privAddFileList (line 2313) | public function privAddFileList($p_filedescr_list, &$p_result_list, &$...
method privAddFile (line 2365) | public function privAddFile($p_filedescr, &$p_header, &$p_options)
method privAddFileUsingTempFile (line 2609) | public function privAddFileUsingTempFile($p_filedescr, &$p_header, &$p...
method privCalculateStoredFilename (line 2719) | public function privCalculateStoredFilename(&$p_filedescr, &$p_options)
method privWriteFileHeader (line 2817) | public function privWriteFileHeader(&$p_header)
method privWriteCentralFileHeader (line 2854) | public function privWriteCentralFileHeader(&$p_header)
method privWriteCentralHeader (line 2896) | public function privWriteCentralHeader($p_nb_entries, $p_size, $p_offs...
method privList (line 2922) | public function privList(&$p_list)
method privConvertHeader2FileInfo (line 3004) | public function privConvertHeader2FileInfo($p_header, &$p_info)
method privExtractByRule (line 3043) | public function privExtractByRule(&$p_file_list, $p_path, $p_remove_pa...
method privExtractFile (line 3317) | public function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p...
method privExtractFileUsingTempFile (line 3594) | public function privExtractFileUsingTempFile(&$p_entry, &$p_options)
method privExtractFileInOutput (line 3667) | public function privExtractFileInOutput(&$p_entry, &$p_options)
method privExtractFileAsString (line 3771) | public function privExtractFileAsString(&$p_entry, &$p_string, &$p_opt...
method privReadFileHeader (line 3880) | public function privReadFileHeader(&$p_header)
method privReadCentralFileHeader (line 3976) | public function privReadCentralFileHeader(&$p_header)
method privCheckFileHeaders (line 4081) | public function privCheckFileHeaders(&$p_local_header, &$p_central_hea...
method privReadEndCentralDir (line 4118) | public function privReadEndCentralDir(&$p_central_dir)
method privDeleteByRule (line 4264) | public function privDeleteByRule(&$p_result_list, &$p_options)
method privDirCheck (line 4529) | public function privDirCheck($p_dir, $p_is_dir = false)
method privMerge (line 4577) | public function privMerge(&$p_archive_to_add)
method privDuplicate (line 4748) | public function privDuplicate($p_archive_filename)
method privErrorLog (line 4803) | public function privErrorLog($p_error_code = 0, $p_error_string = '')
method privErrorReset (line 4819) | public function privErrorReset()
method privDisableMagicQuotes (line 4836) | public function privDisableMagicQuotes()
method privSwapBackMagicQuotes (line 4869) | public function privSwapBackMagicQuotes()
function PclZipUtilPathReduction (line 4902) | function PclZipUtilPathReduction($p_dir)
function PclZipUtilPathInclusion (line 4977) | function PclZipUtilPathInclusion($p_dir, $p_path)
function PclZipUtilCopyBlock (line 5054) | function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode = 0)
function PclZipUtilRename (line 5105) | function PclZipUtilRename($p_src, $p_dest)
function PclZipUtilOptionText (line 5133) | function PclZipUtilOptionText($p_option)
function PclZipUtilTranslateWinPath (line 5160) | function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter = true)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/PasswordHasher.php
class PHPExcel_Shared_PasswordHasher (line 36) | class PHPExcel_Shared_PasswordHasher
method hashPassword (line 48) | public static function hashPassword($pPassword = '')
FILE: application/libraries/PHPExcel/PHPExcel/Shared/String.php
class PHPExcel_Shared_String (line 28) | class PHPExcel_Shared_String
method buildControlCharacters (line 88) | private static function buildControlCharacters()
method buildSYLKCharacters (line 102) | private static function buildSYLKCharacters()
method getIsMbstringEnabled (line 269) | public static function getIsMbstringEnabled()
method getIsIconvEnabled (line 286) | public static function getIsIconvEnabled()
method buildCharacterSets (line 322) | public static function buildCharacterSets()
method ControlCharacterOOXML2PHP (line 346) | public static function ControlCharacterOOXML2PHP($value = '')
method ControlCharacterPHP2OOXML (line 365) | public static function ControlCharacterPHP2OOXML($value = '')
method SanitizeUTF8 (line 376) | public static function SanitizeUTF8($value)
method IsUTF8 (line 398) | public static function IsUTF8($value = '')
method FormatNumber (line 410) | public static function FormatNumber($value)
method UTF8toBIFF8UnicodeShort (line 429) | public static function UTF8toBIFF8UnicodeShort($value, $arrcRuns = arr...
method UTF8toBIFF8UnicodeLong (line 463) | public static function UTF8toBIFF8UnicodeLong($value)
method ConvertEncoding (line 487) | public static function ConvertEncoding($value, $to, $from)
method utf16_decode (line 521) | public static function utf16_decode($str, $bom_be = true)
function setCurrencyCode (line 779) | function setCurrencyCode($pValue = '$')
function SYLKtoUTF8 (line 790) | function SYLKtoUTF8($pValue = '')
function testStringAsNumeric (line 811) | function testStringAsNumeric($value)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/TimeZone.php
class PHPExcel_Shared_TimeZone (line 37) | class PHPExcel_Shared_TimeZone
method _validateTimeZone (line 53) | public static function _validateTimeZone($timezone)
method setTimeZone (line 67) | public static function setTimeZone($timezone)
method getTimeZone (line 82) | public static function getTimeZone()
method getTimezoneTransitions (line 95) | private static function getTimezoneTransitions($objTimezone, $timestamp)
method getTimeZoneAdjustment (line 121) | public static function getTimeZoneAdjustment($timezone, $timestamp)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/XMLWriter.php
class PHPExcel_Shared_XMLWriter (line 36) | class PHPExcel_Shared_XMLWriter extends XMLWriter
method __construct (line 55) | public function __construct($pTemporaryStorage = self::STORAGE_MEMORY,...
method __destruct (line 83) | public function __destruct()
method getData (line 96) | public function getData()
method writeRawData (line 112) | public function writeRawData($text)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/ZipArchive.php
class PHPExcel_Shared_ZipArchive (line 33) | class PHPExcel_Shared_ZipArchive
method open (line 62) | public function open($fileName)
method close (line 75) | public function close()
method addFromString (line 86) | public function addFromString($localname, $contents)
method locateName (line 108) | public function locateName($fileName)
method getFromName (line 131) | public function getFromName($fileName)
method getFromIndex (line 154) | public function getFromIndex($index) {
FILE: application/libraries/PHPExcel/PHPExcel/Shared/ZipStreamWrapper.php
class PHPExcel_Shared_ZipStreamWrapper (line 28) | class PHPExcel_Shared_ZipStreamWrapper
method register (line 61) | public static function register()
method stream_open (line 76) | public function stream_open($path, $mode, $options, &$opened_path)
method statName (line 103) | public function statName()
method url_stat (line 113) | public function url_stat()
method stream_stat (line 123) | public function stream_stat()
method stream_read (line 134) | public function stream_read($count)
method stream_tell (line 147) | public function stream_tell()
method stream_eof (line 157) | public function stream_eof()
method stream_seek (line 169) | public function stream_seek($offset, $whence)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/trend/bestFitClass.php
class PHPExcel_Best_Fit (line 28) | class PHPExcel_Best_Fit
method getError (line 108) | public function getError()
method getBestFitType (line 114) | public function getBestFitType()
method getValueOfYForX (line 125) | public function getValueOfYForX($xValue)
method getValueOfXForY (line 136) | public function getValueOfXForY($yValue)
method getXValues (line 146) | public function getXValues()
method getEquation (line 157) | public function getEquation($dp = 0)
method getSlope (line 168) | public function getSlope($dp = 0)
method getSlopeSE (line 182) | public function getSlopeSE($dp = 0)
method getIntersect (line 196) | public function getIntersect($dp = 0)
method getIntersectSE (line 210) | public function getIntersectSE($dp = 0)
method getGoodnessOfFit (line 224) | public function getGoodnessOfFit($dp = 0)
method getGoodnessOfFitPercent (line 232) | public function getGoodnessOfFitPercent($dp = 0)
method getStdevOfResiduals (line 246) | public function getStdevOfResiduals($dp = 0)
method getSSRegression (line 254) | public function getSSRegression($dp = 0)
method getSSResiduals (line 262) | public function getSSResiduals($dp = 0)
method getDFResiduals (line 270) | public function getDFResiduals($dp = 0)
method getF (line 278) | public function getF($dp = 0)
method getCovariance (line 286) | public function getCovariance($dp = 0)
method getCorrelation (line 294) | public function getCorrelation($dp = 0)
method getYBestFitValues (line 302) | public function getYBestFitValues()
method calculateGoodnessOfFit (line 307) | protected function calculateGoodnessOfFit($sumX, $sumY, $sumX2, $sumY2...
method leastSquareFit (line 361) | protected function leastSquareFit($yValues, $xValues, $const)
method __construct (line 405) | public function __construct($yValues, $xValues = array(), $const = true)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/trend/exponentialBestFitClass.php
class PHPExcel_Exponential_Best_Fit (line 30) | class PHPExcel_Exponential_Best_Fit extends PHPExcel_Best_Fit
method getValueOfYForX (line 46) | public function getValueOfYForX($xValue)
method getValueOfXForY (line 57) | public function getValueOfXForY($yValue)
method getEquation (line 68) | public function getEquation($dp = 0)
method getSlope (line 82) | public function getSlope($dp = 0)
method getIntersect (line 96) | public function getIntersect($dp = 0)
method exponentialRegression (line 111) | private function exponentialRegression($yValues, $xValues, $const)
method __construct (line 132) | public function __construct($yValues, $xValues = array(), $const = true)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/trend/linearBestFitClass.php
class PHPExcel_Linear_Best_Fit (line 30) | class PHPExcel_Linear_Best_Fit extends PHPExcel_Best_Fit
method getValueOfYForX (line 46) | public function getValueOfYForX($xValue)
method getValueOfXForY (line 57) | public function getValueOfXForY($yValue)
method getEquation (line 69) | public function getEquation($dp = 0)
method linearRegression (line 84) | private function linearRegression($yValues, $xValues, $const)
method __construct (line 96) | public function __construct($yValues, $xValues = array(), $const = true)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/trend/logarithmicBestFitClass.php
class PHPExcel_Logarithmic_Best_Fit (line 30) | class PHPExcel_Logarithmic_Best_Fit extends PHPExcel_Best_Fit
method getValueOfYForX (line 46) | public function getValueOfYForX($xValue)
method getValueOfXForY (line 57) | public function getValueOfXForY($yValue)
method getEquation (line 68) | public function getEquation($dp = 0)
method logarithmicRegression (line 83) | private function logarithmicRegression($yValues, $xValues, $const)
method __construct (line 104) | public function __construct($yValues, $xValues = array(), $const = true)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/trend/polynomialBestFitClass.php
class PHPExcel_Polynomial_Best_Fit (line 31) | class PHPExcel_Polynomial_Best_Fit extends PHPExcel_Best_Fit
method getOrder (line 55) | public function getOrder()
method getValueOfYForX (line 67) | public function getValueOfYForX($xValue)
method getValueOfXForY (line 86) | public function getValueOfXForY($yValue)
method getEquation (line 98) | public function getEquation($dp = 0)
method getSlope (line 122) | public function getSlope($dp = 0)
method getCoefficients (line 135) | public function getCoefficients($dp = 0)
method polynomialRegression (line 149) | private function polynomialRegression($order, $yValues, $xValues, $const)
method __construct (line 207) | public function __construct($order, $yValues, $xValues = array(), $con...
FILE: application/libraries/PHPExcel/PHPExcel/Shared/trend/powerBestFitClass.php
class PHPExcel_Power_Best_Fit (line 30) | class PHPExcel_Power_Best_Fit extends PHPExcel_Best_Fit
method getValueOfYForX (line 47) | public function getValueOfYForX($xValue)
method getValueOfXForY (line 59) | public function getValueOfXForY($yValue)
method getEquation (line 71) | public function getEquation($dp = 0)
method getIntersect (line 86) | public function getIntersect($dp = 0)
method powerRegression (line 102) | private function powerRegression($yValues, $xValues, $const)
method __construct (line 132) | public function __construct($yValues, $xValues = array(), $const = true)
FILE: application/libraries/PHPExcel/PHPExcel/Shared/trend/trendClass.php
class trendClass (line 34) | class trendClass
method calculate (line 81) | public static function calculate($trendType = self::TREND_BEST_FIT, $y...
FILE: application/libraries/PHPExcel/PHPExcel/Style.php
class PHPExcel_Style (line 28) | class PHPExcel_Style extends PHPExcel_Style_Supervisor implements PHPExc...
method __construct (line 103) | public function __construct($isSupervisor = false, $isConditional = fa...
method getSharedComponent (line 134) | public function getSharedComponent()
method getParent (line 153) | public function getParent()
method getStyleArray (line 164) | public function getStyleArray($array)
method applyFromArray (line 209) | public function applyFromArray($pStyles = null, $pAdvanced = true)
method getFill (line 477) | public function getFill()
method getFont (line 487) | public function getFont()
method setFont (line 498) | public function setFont(PHPExcel_Style_Font $font)
method getBorders (line 509) | public function getBorders()
method getAlignment (line 519) | public function getAlignment()
method getNumberFormat (line 529) | public function getNumberFormat()
method getConditionalStyles (line 539) | public function getConditionalStyles()
method setConditionalStyles (line 550) | public function setConditionalStyles($pValue = null)
method getProtection (line 563) | public function getProtection()
method getQuotePrefix (line 573) | public function getQuotePrefix()
method setQuotePrefix (line 586) | public function setQuotePrefix($pValue)
method getHashCode (line 605) | public function getHashCode()
method getIndex (line 630) | public function getIndex()
method setIndex (line 640) | public function setIndex($pValue)
FILE: application/libraries/PHPExcel/PHPExcel/Style/Alignment.php
class PHPExcel_Style_Alignment (line 27) | class PHPExcel_Style_Alignment extends PHPExcel_Style_Supervisor impleme...
method __construct (line 110) | public function __construct($isSupervisor = false, $isConditional = fa...
method getSharedComponent (line 128) | public function getSharedComponent()
method getStyleArray (line 139) | public function getStyleArray($array)
method applyFromArray (line 162) | public function applyFromArray($pStyles = null)
method getHorizontal (line 202) | public function getHorizontal()
method setHorizontal (line 216) | public function setHorizontal($pValue = PHPExcel_Style_Alignment::HORI...
method getVertical (line 236) | public function getVertical()
method setVertical (line 250) | public function setVertical($pValue = PHPExcel_Style_Alignment::VERTIC...
method getTextRotation (line 270) | public function getTextRotation()
method setTextRotation (line 285) | public function setTextRotation($pValue = 0)
method getWrapText (line 312) | public function getWrapText()
method setWrapText (line 326) | public function setWrapText($pValue = false)
method getShrinkToFit (line 345) | public function getShrinkToFit()
method setShrinkToFit (line 359) | public function setShrinkToFit($pValue = false)
method getIndent (line 378) | public function getIndent()
method setIndent (line 392) | public function setIndent($pValue = 0)
method getReadorder (line 415) | public function getReadorder()
method setReadorder (line 429) | public function setReadorder($pValue = 0)
method getHashCode (line 448) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Style/Border.php
class PHPExcel_Style_Border (line 28) | class PHPExcel_Style_Border extends PHPExcel_Style_Supervisor implements...
method __construct (line 77) | public function __construct($isSupervisor = false, $isConditional = fa...
method bindParent (line 98) | public function bindParent($parent, $parentPropertyName = null)
method getSharedComponent (line 112) | public function getSharedComponent()
method getStyleArray (line 141) | public function getStyleArray($array)
method applyFromArray (line 178) | public function applyFromArray($pStyles = null)
method getBorderStyle (line 202) | public function getBorderStyle()
method setBorderStyle (line 218) | public function setBorderStyle($pValue = PHPExcel_Style_Border::BORDER...
method getColor (line 240) | public function getColor()
method setColor (line 252) | public function setColor(PHPExcel_Style_Color $pValue = null)
method getHashCode (line 271) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Style/Borders.php
class PHPExcel_Style_Borders (line 28) | class PHPExcel_Style_Borders extends PHPExcel_Style_Supervisor implement...
method __construct (line 123) | public function __construct($isSupervisor = false, $isConditional = fa...
method getSharedComponent (line 165) | public function getSharedComponent()
method getStyleArray (line 176) | public function getStyleArray($array)
method applyFromArray (line 219) | public function applyFromArray($pStyles = null)
method getLeft (line 261) | public function getLeft()
method getRight (line 271) | public function getRight()
method getTop (line 281) | public function getTop()
method getBottom (line 291) | public function getBottom()
method getDiagonal (line 301) | public function getDiagonal()
method getAllBorders (line 312) | public function getAllBorders()
method getOutline (line 326) | public function getOutline()
method getInside (line 340) | public function getInside()
method getVertical (line 354) | public function getVertical()
method getHorizontal (line 368) | public function getHorizontal()
method getDiagonalDirection (line 381) | public function getDiagonalDirection()
method setDiagonalDirection (line 395) | public function setDiagonalDirection($pValue = PHPExcel_Style_Borders:...
method getHashCode (line 414) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Style/Color.php
class PHPExcel_Style_Color (line 28) | class PHPExcel_Style_Color extends PHPExcel_Style_Supervisor implements ...
method __construct (line 75) | public function __construct($pARGB = PHPExcel_Style_Color::COLOR_BLACK...
method bindParent (line 93) | public function bindParent($parent, $parentPropertyName = null)
method getSharedComponent (line 106) | public function getSharedComponent()
method getStyleArray (line 124) | public function getStyleArray($array)
method applyFromArray (line 152) | public function applyFromArray($pStyles = null)
method getARGB (line 176) | public function getARGB()
method setARGB (line 190) | public function setARGB($pValue = PHPExcel_Style_Color::COLOR_BLACK)
method getRGB (line 209) | public function getRGB()
method setRGB (line 223) | public function setRGB($pValue = '000000')
method getColourComponent (line 247) | private static function getColourComponent($RGB, $offset, $hex = true)
method getRed (line 264) | public static function getRed($RGB, $hex = true)
method getGreen (line 277) | public static function getGreen($RGB, $hex = true)
method getBlue (line 290) | public static function getBlue($RGB, $hex = true)
method changeBrightness (line 302) | public static function changeBrightness($hex, $adjustPercentage)
method indexedColor (line 351) | public static function indexedColor($pIndex, $background = false)
method getHashCode (line 433) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Style/Conditional.php
class PHPExcel_Style_Conditional (line 36) | class PHPExcel_Style_Conditional implements PHPExcel_IComparable
method __construct (line 96) | public function __construct()
method getConditionType (line 111) | public function getConditionType()
method setConditionType (line 122) | public function setConditionType($pValue = PHPExcel_Style_Conditional:...
method getOperatorType (line 133) | public function getOperatorType()
method setOperatorType (line 144) | public function setOperatorType($pValue = PHPExcel_Style_Conditional::...
method getText (line 155) | public function getText()
method setText (line 166) | public function setText($value = null)
method getCondition (line 178) | public function getCondition()
method setCondition (line 194) | public function setCondition($pValue = '')
method getConditions (line 208) | public function getConditions()
method setConditions (line 219) | public function setConditions($pValue)
method addCondition (line 234) | public function addCondition($pValue = '')
method getStyle (line 245) | public function getStyle()
method setStyle (line 257) | public function setStyle(PHPExcel_Style $pValue = null)
method getHashCode (line 268) | public function getHashCode()
method __clone (line 282) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Style/Fill.php
class PHPExcel_Style_Fill (line 28) | class PHPExcel_Style_Fill extends PHPExcel_Style_Supervisor implements P...
method __construct (line 91) | public function __construct($isSupervisor = false, $isConditional = fa...
method getSharedComponent (line 116) | public function getSharedComponent()
method getStyleArray (line 127) | public function getStyleArray($array)
method applyFromArray (line 154) | public function applyFromArray($pStyles = null)
method getFillType (line 187) | public function getFillType()
method setFillType (line 201) | public function setFillType($pValue = PHPExcel_Style_Fill::FILL_NONE)
method getRotation (line 217) | public function getRotation()
method setRotation (line 231) | public function setRotation($pValue = 0)
method getStartColor (line 247) | public function getStartColor()
method setStartColor (line 259) | public function setStartColor(PHPExcel_Style_Color $pValue = null)
method getEndColor (line 278) | public function getEndColor()
method setEndColor (line 290) | public function setEndColor(PHPExcel_Style_Color $pValue = null)
method getHashCode (line 309) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Style/Font.php
class PHPExcel_Style_Font (line 28) | class PHPExcel_Style_Font extends PHPExcel_Style_Supervisor implements P...
method __construct (line 110) | public function __construct($isSupervisor = false, $isConditional = fa...
method getSharedComponent (line 141) | public function getSharedComponent()
method getStyleArray (line 152) | public function getStyleArray($array)
method applyFromArray (line 179) | public function applyFromArray($pStyles = null)
method getName (line 224) | public function getName()
method setName (line 238) | public function setName($pValue = 'Calibri')
method getSize (line 257) | public function getSize()
method setSize (line 271) | public function setSize($pValue = 10)
method getBold (line 290) | public function getBold()
method setBold (line 304) | public function setBold($pValue = false)
method getItalic (line 323) | public function getItalic()
method setItalic (line 337) | public function setItalic($pValue = false)
method getSuperScript (line 356) | public function getSuperScript()
method setSuperScript (line 370) | public function setSuperScript($pValue = false)
method getSubScript (line 390) | public function getSubScript()
method setSubScript (line 404) | public function setSubScript($pValue = false)
method getUnderline (line 424) | public function getUnderline()
method setUnderline (line 440) | public function setUnderline($pValue = self::UNDERLINE_NONE)
method getStrikethrough (line 461) | public function getStrikethrough()
method setStrikethrough (line 475) | public function setStrikethrough($pValue = false)
method getColor (line 494) | public function getColor()
method setColor (line 506) | public function setColor(PHPExcel_Style_Color $pValue = null)
method getHashCode (line 525) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Style/NumberFormat.php
class PHPExcel_Style_NumberFormat (line 28) | class PHPExcel_Style_NumberFormat extends PHPExcel_Style_Supervisor impl...
method __construct (line 108) | public function __construct($isSupervisor = false, $isConditional = fa...
method getSharedComponent (line 125) | public function getSharedComponent()
method getStyleArray (line 136) | public function getStyleArray($array)
method applyFromArray (line 156) | public function applyFromArray($pStyles = null)
method getFormatCode (line 177) | public function getFormatCode()
method setFormatCode (line 194) | public function setFormatCode($pValue = PHPExcel_Style_NumberFormat::F...
method getBuiltInFormatCode (line 214) | public function getBuiltInFormatCode()
method setBuiltInFormatCode (line 228) | public function setBuiltInFormatCode($pValue = 0)
method fillBuiltInFormatCodes (line 244) | private static function fillBuiltInFormatCodes()
method builtInFormatCode (line 334) | public static function builtInFormatCode($pIndex)
method builtInFormatCodeIndex (line 355) | public static function builtInFormatCodeIndex($formatCode)
method getHashCode (line 373) | public function getHashCode()
method setLowercaseCallback (line 447) | private static function setLowercaseCallback($matches) {
method escapeQuotesCallback (line 451) | private static function escapeQuotesCallback($matches) {
method formatAsDate (line 455) | private static function formatAsDate(&$value, &$format)
method formatAsPercentage (line 489) | private static function formatAsPercentage(&$value, &$format)
method formatAsFraction (line 507) | private static function formatAsFraction(&$value, &$format)
method complexNumberFormatMask (line 532) | private static function complexNumberFormatMask($number, $mask, $level...
method toFormattedString (line 579) | public static function toFormattedString($value = '0', $format = PHPEx...
FILE: application/libraries/PHPExcel/PHPExcel/Style/Protection.php
class PHPExcel_Style_Protection (line 28) | class PHPExcel_Style_Protection extends PHPExcel_Style_Supervisor implem...
method __construct (line 59) | public function __construct($isSupervisor = false, $isConditional = fa...
method getSharedComponent (line 77) | public function getSharedComponent()
method getStyleArray (line 88) | public function getStyleArray($array)
method applyFromArray (line 109) | public function applyFromArray($pStyles = null)
method getLocked (line 133) | public function getLocked()
method setLocked (line 147) | public function setLocked($pValue = self::PROTECTION_INHERIT)
method getHidden (line 163) | public function getHidden()
method setHidden (line 177) | public function setHidden($pValue = self::PROTECTION_INHERIT)
method getHashCode (line 193) | public function getHashCode()
FILE: application/libraries/PHPExcel/PHPExcel/Style/Supervisor.php
class PHPExcel_Style_Supervisor (line 28) | abstract class PHPExcel_Style_Supervisor
method __construct (line 51) | public function __construct($isSupervisor = false)
method bindParent (line 63) | public function bindParent($parent, $parentPropertyName = null)
method getIsSupervisor (line 74) | public function getIsSupervisor()
method getActiveSheet (line 84) | public function getActiveSheet()
method getSelectedCells (line 95) | public function getSelectedCells()
method getActiveCell (line 106) | public function getActiveCell()
method __clone (line 114) | public function __clone()
FILE: application/libraries/PHPExcel/PHPExcel/Worksheet.php
class PHPExcel_Worksheet (line 28) | class PHPExcel_Worksheet implements PHPExcel_IComparable
method __construct (line 333) | public function __construct(PHPExcel $pParent = null, $pTitle = 'Works...
method disconnectCells (line 370) | public function disconnectCells()
method __destruct (line 384) | public function __destruct()
method getCellCacheController (line 396) | public function getCellCacheController()
method getInvalidCharacters (line 407) | public static function getInvalidCharacters()
method checkSheetCodeName (line 419) | private static function checkSheetCodeName($pValue)
method checkSheetTitle (line 447) | private static function checkSheetTitle($pValue)
method getCellCollection (line 468) | public function getCellCollection($pSorted = true)
method sortCellCollection (line 485) | public function sortCellCollection()
method getRowDimensions (line 498) | public function getRowDimensions()
method getDefaultRowDimension (line 508) | public function getDefaultRowDimension()
method getColumnDimensions (line 518) | public function getColumnDimensions()
method getDefaultColumnDimension (line 528) | public function getDefaultColumnDimension()
method getDrawingCollection (line 538) | public function getDrawingCollection()
method getChartCollection (line 548) | public function getChartCollection()
method addChart (line 560) | public function addChart(PHPExcel_Chart $pChart = null, $iChartIndex =...
method getChartCount (line 578) | public function getChartCount()
method getChartByIndex (line 590) | public function getChartByIndex($index = null)
method getChartNames (line 612) | public function getChartNames()
method getChartByName (line 628) | public function getChartByName($chartName = '')
method refreshColumnDimensions (line 647) | public function refreshColumnDimensions()
method refreshRowDimensions (line 666) | public function refreshRowDimensions()
method calculateWorksheetDimension (line 685) | public function calculateWorksheetDimension()
method calculateWorksheetDataDimension (line 696) | public function calculateWorksheetDataDimension()
method calculateColumnWidths (line 708) | public function calculateColumnWidths($calculateMergeCells = false)
method getParent (line 771) | public function getParent()
method rebindParent (line 782) | public function rebindParent(PHPExcel $parent)
method getTitle (line 804) | public function getTitle()
method setTitle (line 820) | public function setTitle($pValue = 'Worksheet', $updateFormulaCellRefe...
method getSheetState (line 882) | public function getSheetState()
method setSheetState (line 893) | public function setSheetState($value = PHPExcel_Worksheet::SHEETSTATE_...
method getPageSetup (line 904) | public function getPageSetup()
method setPageSetup (line 915) | public function setPageSetup(PHPExcel_Worksheet_PageSetup $pValue)
method getPageMargins (line 926) | public function getPageMargins()
method setPageMargins (line 937) | public function setPageMargins(PHPExcel_Worksheet_PageMargins $pValue)
method getHeaderFooter (line 948) | public function getHeaderFooter()
method setHeaderFooter (line 959) | public function setHeaderFooter(PHPExcel_Worksheet_HeaderFooter $pValue)
method getSheetView (line 970) | public function getSheetView()
method setSheetView (line 981) | public function setSheetView(PHPExcel_Worksheet_SheetView $pValue)
method getProtection (line 992) | public function getProtection()
method setProtection (line 1003) | public function setProtection(PHPExcel_Worksheet_Protection $pValue)
method getHighestColumn (line 1018) | public function getHighestColumn($row = null)
method getHighestDataColumn (line 1033) | public function getHighestDataColumn($row = null)
method getHighestRow (line 1045) | public function getHighestRow($column = null)
method getHighestDataRow (line 1060) | public function getHighestDataRow($column = null)
method getHighestRowAndColumn (line 1070) | public function getHighestRowAndColumn()
method setCellValue (line 1083) | public function setCellValue($pCoordinate = 'A1', $pValue = null, $ret...
method setCellValueByColumnAndRow (line 1098) | public function setCellValueByColumnAndRow($pColumn = 0, $pRow = 1, $p...
method setCellValueExplicit (line 1113) | public function setCellValueExplicit($pCoordinate = 'A1', $pValue = nu...
method setCellValueExplicitByColumnAndRow (line 1130) | public function setCellValueExplicitByColumnAndRow($pColumn = 0, $pRow...
method getCell (line 1145) | public function getCell($pCoordinate = 'A1', $createIfNotExists = true)
method getCellByColumnAndRow (line 1190) | public function getCellByColumnAndRow($pColumn = 0, $pRow = 1, $create...
method createNewCell (line 1209) | private function createNewCell($pCoordinate)
method cellExists (line 1247) | public function cellExists($pCoordinate = 'A1')
method cellExistsByColumnAndRow (line 1296) | public function cellExistsByColumnAndRow($pColumn = 0, $pRow = 1)
method getRowDimension (line 1307) | public function getRowDimension($pRow = 1, $create = true)
method getColumnDimension (line 1330) | public function getColumnDimension($pColumn = 'A', $create = true)
method getColumnDimensionByColumn (line 1355) | public function getColumnDimensionByColumn($pColumn = 0)
method getStyles (line 1365) | public function getStyles()
method getDefaultStyle (line 1377) | public function getDefaultStyle()
method setDefaultStyle (line 1390) | public function setDefaultStyle(PHPExcel_Style $pValue)
method getStyle (line 1408) | public function getStyle($pCellCoordinate = 'A1')
method getConditionalStyles (line 1425) | public function getConditionalStyles($pCoordinate = 'A1')
method conditionalStylesExists (line 1440) | public function conditionalStylesExists($pCoordinate = 'A1')
method removeConditionalStyles (line 1454) | public function removeConditionalStyles($pCoordinate = 'A1')
method getConditionalStylesCollection (line 1465) | public function getConditionalStylesCollection()
method setConditionalStyles (line 1477) | public function setConditionalStyles($pCoordinate = 'A1', $pValue)
method getStyleByColumnAndRow (line 1492) | public function getStyleByColumnAndRow($pColumn = 0, $pRow = 1, $pColu...
method setSharedStyle (line 1513) | public function setSharedStyle(PHPExcel_Style $pSharedCellStyle = null...
method duplicateStyle (line 1529) | public function duplicateStyle(PHPExcel_Style $pCellStyle = null, $pRa...
method duplicateConditionalStyle (line 1575) | public function duplicateConditionalStyle(array $pCellStyle = null, $p...
method duplicateStyleArray (line 1617) | public function duplicateStyleArray($pStyles = null, $pRange = '', $pA...
method setBreak (line 1631) | public function setBreak($pCell = 'A1', $pBreak = PHPExcel_Worksheet::...
method setBreakByColumnAndRow (line 1659) | public function setBreakByColumnAndRow($pColumn = 0, $pRow = 1, $pBrea...
method getBreaks (line 1669) | public function getBreaks()
method mergeCells (line 1681) | public function mergeCells($pRange = 'A1:A1')
method mergeCellsByColumnAndRow (line 1724) | public function mergeCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1, $p...
method unmergeCells (line 1737) | public function unmergeCells($pRange = 'A1:A1')
method unmergeCellsByColumnAndRow (line 1765) | public function unmergeCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1, ...
method getMergeCells (line 1776) | public function getMergeCells()
method setMergeCells (line 1787) | public function setMergeCells($pValue = array())
method protectCells (line 1802) | public function protectCells($pRange = 'A1', $pPassword = '', $pAlread...
method protectCellsByColumnAndRow (line 1827) | public function protectCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1, ...
method unprotectCells (line 1840) | public function unprotectCells($pRange = 'A1')
method unprotectCellsByColumnAndRow (line 1865) | public function unprotectCellsByColumnAndRow($pColumn1 = 0, $pRow1 = 1...
method getProtectedCells (line 1876) | public function getProtectedCells()
method getAutoFilter (line 1886) | public function getAutoFilter()
method setAutoFilter (line 1899) | public function setAutoFilter($pValue)
method setAutoFilterByColumnAndRow (line 1920) | public function setAutoFilterByColumnAndRow($pColumn1 = 0, $pRow1 = 1,...
method removeAutoFilter (line 1934) | public function removeAutoFilter()
method getFreezePane (line 1945) | public function getFreezePane()
method freezePane (line 1962) | public function freezePane($pCell = '')
method freezePaneByColumnAndRow (line 1982) | public function freezePaneByColumnAndRow($pColumn = 0, $pRow = 1)
method unfreezePane (line 1992) | public function unfreezePane()
method insertNewRowBefore (line 2005) | public function insertNewRowBefore($pBefore = 1, $pNumRows = 1)
method insertNewColumnBefore (line 2024) | public function insertNewColumnBefore($pBefore = 'A', $pNumCols = 1)
method insertNewColumnBeforeByIndex (line 2043) | public function insertNewColumnBeforeByIndex($pBefore = 0, $pNumCols = 1)
method removeRow (line 2060) | public function removeRow($pRow = 1, $pNumRows = 1)
method removeColumn (line 2084) | public function removeColumn($pColumn = 'A', $pNumCols = 1)
method removeColumnByIndex (line 2109) | public function removeColumnByIndex($pColumn = 0, $pNumCols = 1)
method getShowGridlines (line 2123) | public function getShowGridlines()
method setShowGridlines (line 2134) | public function setShowGridlines($pValue = false)
method getPrintGridlines (line 2145) | public function getPrintGridlines()
method setPrintGridlines (line 2156) | public function setPrintGridlines($pValue = false)
method getShowRowColHeaders (line 2167) | public function getShowRowColHeaders()
method setShowRowColHeaders (line 2178) | public function setShowRowColHeaders($pValue = false)
method getShowSummaryBelow (line 2189) | public function getShowSummaryBelow()
method setShowSummaryBelow (line 2200) | public function setShowSummaryBelow($pValue = true)
method getShowSummaryRight (line 2211) | public function getShowSummaryRight()
method setShowSummaryRight (line 2222) | public function setShowSummaryRight($pValue = true)
method getComments (line 2233) | public function getComments()
method setComments (line 2244) | public function setComments($pValue = array())
method getComment (line 2258) | public function getComment($pCellCoordinate = 'A1')
method getCommentByColumnAndRow (line 2289) | public function getCommentByColumnAndRow($pColumn = 0, $pRow = 1)
method getSelectedCell (line 2300) | public function getSelectedCell()
method getActiveCell (line 2310) | public function getActiveCell()
method getSelectedCells (line 2320) | public function getSelectedCells()
method setSelectedCell (line 2331) | public function setSelectedCell($pCoordinate = 'A1')
method setSelectedCells (line 2343) | public function setSelectedCells($pCoordinate = 'A1')
method setSelectedCellByColumnAndRow (line 2378) | public function setSelectedCellByColumnAndRow($pColumn = 0, $pRow = 1)
method getRightToLeft (line 2388) | public function getRightToLeft()
method setRightToLeft (line 2399) | public function setRightToLeft($value = false)
method fromArray (line 2415) | public function fromArray($source = null, $nullValue = null, $startCel...
method rangeToArray (line 2462) | public function rangeToArray($pRange = 'A1', $nullValue = null, $calcu...
method namedRangeToArray (line 2533) | public function namedRangeToArray($pNamedRange = '', $nullValue = null...
method toArray (line 2557) | public function toArray($nullValue = null, $calculateFormulas = true, ...
method getRowIterator (line 2577) | public function getRowIterator($startRow = 1, $endRow = null)
method getColumnIterator (line 2590) | public function getColumnIterator($startColumn = 'A', $endColumn = null)
method garbageCollect (line 2600) | public function garbageCollect()
method getHashCode (line 2645) | public function getHashCode()
method extractSheetTitle (line 2664) | public static function extractSheetTitle($pRange, $returnRange = false)
method getHyperlink (line 2683) | public function getHyperlink($pCellCoordinate = 'A1')
method setHyperlink (line 2702) | public function setHyperlink($pCellCoordinate = 'A1', PHPExcel_Cell_Hy...
method hyperlinkExists (line 2718) | public function hyperlinkExists($pCoordinate = 'A1')
method getHyperlinkCollection (line 2728) | public function getHyperlinkCollection()
method getDataValidation (line 2738) | public function getDataValidation($pCellCoordinate = 'A1')
method setDataValidation (line 2757) | public function setDataValidation($pCellCoordinate = 'A1', PHPExcel_Ce...
method dataValidationExists (line 2773) | public function dataValidationExists($pCoordinate = 'A1')
method getDataValidationCollection (line 2783) | public function getDataValidationCollection()
method shrinkRangeToFit (line 2794) | public function shrinkRangeToFit($range)
method getTabColor (line 2829) | public function getTabColor()
method resetTabColor (line 2842) | public function resetTabColor()
method isTabColorSet (line 2855) | public function isTabColorSet()
method copy (line 2865) | public function copy()
method __clone (line 2875) | public function __clone()
method setCodeName (line 2907) | public function setCodeName($pValue = null)
method getCodeName (line 2956) | public function getCodeName()
method hasCodeName (line 2964) | public function hasCodeName()
FILE: application/libraries/PHPExcel/PHPExcel/Worksheet/AutoFilter.php
class PHPExcel_Worksheet_AutoFilter (line 28) | class PHPExcel_Worksheet_AutoFilter
method __construct (line 60) | public function __construct($pRange = '', PHPExcel_Worksheet $pSheet =...
method getParent (line 71) | public function getParent()
method setParent (line 82) | public function setParent(PHPExcel_Worksheet $pSheet = null)
method getRange (line 94) | public function getRange()
method setRange (line 106) | public function setRange($pRange = '')
method getColumns (line 145) | public function getColumns()
method testColumnInRange (line 157) | public function testColumnInRange($column)
method getColumnOffset (line 179) | public function getColumnOffset($pColumn)
method getColumn (line 191) | public function getColumn($pColumn)
method getColumnByOffset (line 209) | public function getColumnByOffset($pColumnOffset = 0)
method setColumn (line 225) | public function setColumn($pColumn)
method clearColumn (line 254) | public function clearColumn($pColumn)
method shiftColumn (line 276) | public function shiftColumn($fromColumn = null, $toColumn = null)
method filterTestInSimpleDataSet (line 302) | private static function filterTestInSimpleDataSet($cellValue, $dataSet)
method filterTestInDateGroupSet (line 319) | private static function filterTestInDateGroupSet($cellValue, $dataSet)
method filterTestInCustomDataSet (line 359) | private static function filterTestInCustomDataSet($cellValue, $ruleSet)
method filterTestInPeriodDateSet (line 437) | private static function
Copy disabled (too large)
Download .json
Condensed preview — 1767 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (26,236K chars).
[
{
"path": ".github/FUNDING.yml",
"chars": 66,
"preview": "# These are supported funding model platforms\n\ngithub: kirilkirkov"
},
{
"path": ".htaccess",
"chars": 213,
"preview": "RewriteEngine on\n\nRewriteCond %{REQUEST_FILENAME} !-f\nRewriteCond %{REQUEST_FILENAME} !-d\nRewriteRule ^(.*)$ index.php?/"
},
{
"path": "README.md",
"chars": 3077,
"preview": "# Electronic Invoicing and Warehouse Management System\n\n## Overview\nA robust and versatile system for managing electroni"
},
{
"path": "application/.htaccess",
"chars": 123,
"preview": "<IfModule authz_core_module>\n Require all denied\n</IfModule>\n<IfModule !authz_core_module>\n Deny from all\n</IfModu"
},
{
"path": "application/cache/.htaccess",
"chars": 123,
"preview": "<IfModule authz_core_module>\n Require all denied\n</IfModule>\n<IfModule !authz_core_module>\n Deny from all\n</IfModu"
},
{
"path": "application/cache/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/config/autoload.php",
"chars": 4406,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n | -----------------------------------------"
},
{
"path": "application/config/config.php",
"chars": 21579,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n |------------------------------------------"
},
{
"path": "application/config/constants.php",
"chars": 5314,
"preview": "<?php\n\nif (isset($_SERVER['SERVER_PORT']))\n{\n\t/*\n\t|---------------------------------------------------------------------"
},
{
"path": "application/config/database.php",
"chars": 4526,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/config/doctypes.php",
"chars": 2441,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n$_doctypes = array(\n\t'xhtml11' => '<!DOCTYPE html"
},
{
"path": "application/config/foreign_chars.php",
"chars": 2466,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/config/hooks.php",
"chars": 417,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/config/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/config/memcached.php",
"chars": 498,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/config/migration.php",
"chars": 3032,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n|---------------------------------------------"
},
{
"path": "application/config/mimes.php",
"chars": 10057,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/config/profiler.php",
"chars": 477,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/config/routes.php",
"chars": 10247,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n | -----------------------------------------"
},
{
"path": "application/config/smileys.php",
"chars": 3181,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/config/user_agents.php",
"chars": 6132,
"preview": "<?php\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n| --------------------------------------------"
},
{
"path": "application/controllers/Home.php",
"chars": 3279,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\nclass Home extends MY_Controller\n{\n\n private "
},
{
"path": "application/controllers/Loader.php",
"chars": 704,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n/* Set internal character encoding to UTF-8 */\nmb"
},
{
"path": "application/controllers/Registration.php",
"chars": 2275,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\nclass Registration extends MY_Controller\n{\n\n "
},
{
"path": "application/controllers/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/core/ADMIN_Controller.php",
"chars": 1397,
"preview": "<?php\n\n/*\n * @Author: Kiril Kirkov\n * Gitgub: https://github.com/kirilkirkov\n */\nif (!defined('BASEPATH')) {\n "
},
{
"path": "application/core/HEAD_Controller.php",
"chars": 205,
"preview": "<?php\n\nclass HEAD_Controller extends MX_Controller\n{\n\n public function __construct()\n {\n parent::__construc"
},
{
"path": "application/core/MY_Controller.php",
"chars": 998,
"preview": "<?php\n\nclass MY_Controller extends HEAD_Controller\n{\n\n public function __construct()\n {\n parent::__construc"
},
{
"path": "application/core/MY_Loader.php",
"chars": 191,
"preview": "<?php (defined('BASEPATH')) OR exit('No direct script access allowed');\r\n\r\n/* load the MX_Loader class */\r\nrequire APPPA"
},
{
"path": "application/core/MY_Router.php",
"chars": 191,
"preview": "<?php (defined('BASEPATH')) OR exit('No direct script access allowed');\r\n\r\n/* load the MX_Router class */\r\nrequire APPPA"
},
{
"path": "application/core/USER_Controller.php",
"chars": 7422,
"preview": "<?php\n\nclass USER_Controller extends HEAD_Controller\n{\n\n private $firms;\n protected $firmInfo;\n public $userInf"
},
{
"path": "application/core/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/helpers/except_letters_helper.php",
"chars": 179,
"preview": "<?php\n\nif (!defined('BASEPATH')) {\n exit('No direct script access allowed');\n}\n\nfunction except_letters($str)\n{\n r"
},
{
"path": "application/helpers/full_document_number_helper.php",
"chars": 224,
"preview": "<?php\n\nif (!defined('BASEPATH'))\n exit('No direct script access allowed');\n\nfunction full_document_number($inv, $leng"
},
{
"path": "application/helpers/get_client_ip_address_helper.php",
"chars": 800,
"preview": "<?php\n\nif (!defined('BASEPATH')) {\n exit('No direct script access allowed');\n}\n\nfunction get_client_ip_address()\n{\n "
},
{
"path": "application/helpers/geterror_helper.php",
"chars": 469,
"preview": "<?php\nif (!defined('BASEPATH'))\n exit('No direct script access allowed');\n\n/*\n * Return error message\n */\n\nfunction g"
},
{
"path": "application/helpers/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/helpers/lang_url_helper.php",
"chars": 404,
"preview": "<?php\n\nif (!defined('BASEPATH'))\n exit('No direct script access allowed');\n\n/*\n * Constant LANG_URL is comming from c"
},
{
"path": "application/helpers/pagination_helper.php",
"chars": 1344,
"preview": "<?php\n\nif (!defined('BASEPATH')) {\n exit('No direct script access allowed');\n}\n/*\n * Bootstrap Pagination Helper\n */\n"
},
{
"path": "application/helpers/thisyeardates_helper.php",
"chars": 476,
"preview": "<?php\n\nif (!defined('BASEPATH')) {\n exit('No direct script access allowed');\n}\n\n/*\n * return first day and last day f"
},
{
"path": "application/helpers/uploader_helper.php",
"chars": 932,
"preview": "<?php\n\nif (!defined('BASEPATH')) {\n exit('No direct script access allowed');\n}\n\nfunction uploader($path, $inputName ="
},
{
"path": "application/hooks/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/language/bulgarian/db_lang.php",
"chars": 0,
"preview": ""
},
{
"path": "application/language/bulgarian/email_lang.php",
"chars": 0,
"preview": ""
},
{
"path": "application/language/bulgarian/form_validation_lang.php",
"chars": 8,
"preview": "<?php\n\n "
},
{
"path": "application/language/bulgarian/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/language/bulgarian/js/all.js",
"chars": 1081,
"preview": "var lang = {\n invalid_email: 'Невалиден имейл адрес!',\n invalid_pass: 'Въведете парола!',\n invalid_pass2: 'Повт"
},
{
"path": "application/language/bulgarian/pagination_lang.php",
"chars": 239,
"preview": "<?php \n$lang['first'] = 'Първа';\n$lang['last'] = 'Последна';\n$lang['next'] = 'Следваща';\n$lang['previous'] = 'Предишна';"
},
{
"path": "application/language/bulgarian/profiler_lang.php",
"chars": 9,
"preview": "<?php ?>\n"
},
{
"path": "application/language/bulgarian/public_lang.php",
"chars": 6007,
"preview": "<?php\n\n$lang['btn_home'] = 'Начало';\n$lang['btn_register'] = 'Регистрирай се безплатно';\n$lang['btn_plans'] = 'Планове';"
},
{
"path": "application/language/bulgarian/titles_lang.php",
"chars": 604,
"preview": "<?php\r\n\r\n$lang['title_home'] = 'Електронни фактури, Изпращане по електронна поща';\r\n$lang['description_home'] = 'Стартир"
},
{
"path": "application/language/bulgarian/upload_lang.php",
"chars": 1526,
"preview": "<?php\n\n$lang['upload_userfile_not_set'] = \"Unable to find a post variable called userfile.\";\n$lang['upload_file_exceeds_"
},
{
"path": "application/language/bulgarian/users_lang.php",
"chars": 37658,
"preview": "<?php\n\n$lang['change_firm'] = 'Смени фирмата';\n$lang['manage_firms'] = 'Оправление на фирми';\n$lang['search_header_u'] ="
},
{
"path": "application/language/english/db_lang.php",
"chars": 0,
"preview": ""
},
{
"path": "application/language/english/email_lang.php",
"chars": 0,
"preview": ""
},
{
"path": "application/language/english/form_validation_lang.php",
"chars": 8,
"preview": "<?php\n\n "
},
{
"path": "application/language/english/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/language/english/js/all.js",
"chars": 1071,
"preview": "var lang = {\n invalid_email: 'Invalid email address!',\n invalid_pass: 'Please enter password!',\n invalid_pass2:"
},
{
"path": "application/language/english/pagination_lang.php",
"chars": 195,
"preview": "<?php \n$lang['first'] = 'First';\n$lang['last'] = 'Last';\n$lang['next'] = 'Next';\n$lang['previous'] = 'Previous';\n$lang['"
},
{
"path": "application/language/english/profiler_lang.php",
"chars": 9,
"preview": "<?php ?>\n"
},
{
"path": "application/language/english/public_lang.php",
"chars": 5947,
"preview": "<?php\n\n$lang['btn_home'] = 'Home';\n$lang['btn_register'] = 'Register now for free';\n$lang['btn_plans'] = 'Plans';\n$lang["
},
{
"path": "application/language/english/titles_lang.php",
"chars": 559,
"preview": "<?php\r\n\r\n$lang['title_home'] = 'Electronic invoices, E-mails';\r\n$lang['description_home'] = 'Start issuing and sending e"
},
{
"path": "application/language/english/upload_lang.php",
"chars": 1526,
"preview": "<?php\n\n$lang['upload_userfile_not_set'] = \"Unable to find a post variable called userfile.\";\n$lang['upload_file_exceeds_"
},
{
"path": "application/language/english/users_lang.php",
"chars": 36224,
"preview": "<?php\n\n$lang['change_firm'] = 'Change company';\n$lang['manage_firms'] = 'Manage companies';\n$lang['search_header_u'] = '"
},
{
"path": "application/language/france/db_lang.php",
"chars": 0,
"preview": ""
},
{
"path": "application/language/france/email_lang.php",
"chars": 0,
"preview": ""
},
{
"path": "application/language/france/form_validation_lang.php",
"chars": 8,
"preview": "<?php\n\n "
},
{
"path": "application/language/france/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/language/france/js/all.js",
"chars": 1219,
"preview": "var lang = {\n invalid_email: 'Adresse e-mail invalide!',\n invalid_pass: 'Veuillez entrer le mot de passe!',\n in"
},
{
"path": "application/language/france/pagination_lang.php",
"chars": 210,
"preview": "<?php \n$lang['first'] = 'Premier';\n$lang['last'] = 'Dernier';\n$lang['next'] = 'Prochain';\n$lang['previous'] = 'précédent"
},
{
"path": "application/language/france/profiler_lang.php",
"chars": 9,
"preview": "<?php ?>\n"
},
{
"path": "application/language/france/public_lang.php",
"chars": 6622,
"preview": "<?php\n\n$lang['btn_home'] = 'Accueil';\n$lang['btn_register'] = 'inscription';\n$lang['btn_plans'] = 'Des plans';\n$lang['bt"
},
{
"path": "application/language/france/titles_lang.php",
"chars": 646,
"preview": "<?php\r\n\r\n$lang['title_home'] = 'Factures électroniques, E-mails';\r\n$lang['description_home'] = 'Commencer à émettre et à"
},
{
"path": "application/language/france/upload_lang.php",
"chars": 1783,
"preview": "<?php\n\n$lang['upload_userfile_not_set'] = \"Impossible de trouver une variable de publication appelée fichier utilisateur"
},
{
"path": "application/language/france/users_lang.php",
"chars": 39906,
"preview": "<?php\n\n$lang['change_firm'] = \"Changer d'entreprise\";\n$lang['manage_firms'] = 'Gérer les entreprises';\n$lang['search_hea"
},
{
"path": "application/language/index.html",
"chars": 131,
"preview": "<!DOCTYPE html>\n<html>\n<head>\n\t<title>403 Forbidden</title>\n</head>\n<body>\n\n<p>Directory access is forbidden.</p>\n\n</bod"
},
{
"path": "application/libraries/HtmlToPdf.php",
"chars": 4223,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n/*\n * Convert html of invoice to pdf\n * Use wkhtm"
},
{
"path": "application/libraries/Language.php",
"chars": 2220,
"preview": "<?php\n\ndefined('BASEPATH') OR exit('No direct script access allowed');\n\n/*\n * This class loads languages for site\n * Its"
},
{
"path": "application/libraries/MailSend.php",
"chars": 1294,
"preview": "<?php\r\n\r\ndefined('BASEPATH') OR exit('No direct script access allowed');\r\nrequire 'PHPMailer/PHPMailerAutoload.php';\r\n\r\n"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Autoloader.php",
"chars": 2884,
"preview": "<?php\n\nPHPExcel_Autoloader::register();\n// As we always try to run the autoloader before anything else, we can use it"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/APC.php",
"chars": 9548,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_APC\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free softw"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/CacheBase.php",
"chars": 10594,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_CacheBase\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/DiscISAM.php",
"chars": 6776,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_DiscISAM\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/ICache.php",
"chars": 3484,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_ICache\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free so"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Igbinary.php",
"chars": 4862,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_Igbinary\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Memcache.php",
"chars": 10709,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_Memcache\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Memory.php",
"chars": 3800,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_Memory\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free so"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/MemoryGZip.php",
"chars": 4333,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_MemoryGZip\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is fre"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/MemorySerialized.php",
"chars": 4319,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_MemorySerialized\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/PHPTemp.php",
"chars": 6451,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_PHPTemp\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free s"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/SQLite.php",
"chars": 10363,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_SQLite\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free so"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/SQLite3.php",
"chars": 11230,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_SQLite3\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free s"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorage/Wincache.php",
"chars": 9945,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorage_Wincache\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CachedObjectStorageFactory.php",
"chars": 7888,
"preview": "<?php\n\n/**\n * PHPExcel_CachedObjectStorageFactory\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free so"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CalcEngine/CyclicReferenceStack.php",
"chars": 2297,
"preview": "<?php\n\n/**\n * PHPExcel_CalcEngine_CyclicReferenceStack\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is fr"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/CalcEngine/Logger.php",
"chars": 4173,
"preview": "<?php\n\n/**\n * PHPExcel_CalcEngine_Logger\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; y"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Database.php",
"chars": 33331,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/DateTime.php",
"chars": 69069,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Engineering.php",
"chars": 110732,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Exception.php",
"chars": 1561,
"preview": "<?php\n\n/**\n * PHPExcel_Calculation_Exception\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free softwar"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/ExceptionHandler.php",
"chars": 1467,
"preview": "<?php\n\n/**\n * PHPExcel_Calculation_ExceptionHandler\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Financial.php",
"chars": 108945,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/FormulaParser.php",
"chars": 26921,
"preview": "<?php\n\n/*\nPARTLY BASED ON:\n Copyright (c) 2007 E. W. Bachtal, Inc.\n\n Permission is hereby granted, free of charge,"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/FormulaToken.php",
"chars": 5657,
"preview": "<?php\n\n/*\nPARTLY BASED ON:\n Copyright (c) 2007 E. W. Bachtal, Inc.\n\n Permission is hereby granted, free of charge,"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Function.php",
"chars": 4137,
"preview": "<?php\n\n/**\n * PHPExcel_Calculation_Function\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Functions.php",
"chars": 20659,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Logical.php",
"chars": 11486,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/LookupRef.php",
"chars": 37120,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/MathTrig.php",
"chars": 48249,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Statistical.php",
"chars": 132522,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/TextData.php",
"chars": 22259,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/Token/Stack.php",
"chars": 2913,
"preview": "<?php\n\n/**\n * PHPExcel_Calculation_Token_Stack\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free softw"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation/functionlist.txt",
"chars": 2511,
"preview": "ABS\nACCRINT\nACCRINTM\nACOS\nACOSH\nADDRESS\nAMORDEGRC\nAMORLINC\nAND\nAREAS\nASC\nASIN\nASINH\nATAN\nATAN2\nATANH\nAVEDEV\nAVERAGE\nAVER"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Calculation.php",
"chars": 202013,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Cell/AdvancedValueBinder.php",
"chars": 8787,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Cell/DataType.php",
"chars": 3382,
"preview": "<?php\n\n/**\n * PHPExcel_Cell_DataType\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you c"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Cell/DataValidation.php",
"chars": 10310,
"preview": "<?php\n\n/**\n * PHPExcel_Cell_DataValidation\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software;"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Cell/DefaultValueBinder.php",
"chars": 3881,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Cell/Hyperlink.php",
"chars": 2838,
"preview": "<?php\n\n/**\n * PHPExcel_Cell_Hyperlink\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Cell/IValueBinder.php",
"chars": 1550,
"preview": "<?php\n\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribut"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Cell.php",
"chars": 33604,
"preview": "<?php\n\n/**\n * PHPExcel_Cell\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you c"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Axis.php",
"chars": 15640,
"preview": "<?php\n\n/**\n * Created by PhpStorm.\n * User: Wiktor Trzonkowski\n * Date: 6/17/14\n * Time: 12:11 PM\n */\n\nclass PHPExcel_Ch"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/DataSeries.php",
"chars": 9694,
"preview": "<?php\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribute"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/DataSeriesValues.php",
"chars": 9038,
"preview": "<?php\n\n/**\n * PHPExcel_Chart_DataSeriesValues\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free softwa"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Exception.php",
"chars": 1543,
"preview": "<?php\n\n/**\n * PHPExcel_Chart_Exception\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/GridLines.php",
"chars": 12490,
"preview": "<?php\n\n/**\n * Created by PhpStorm.\n * User: Wiktor Trzonkowski\n * Date: 7/2/14\n * Time: 2:36 PM\n */\n\nclass PHPExcel_Char"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Layout.php",
"chars": 9614,
"preview": "<?php\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribute"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Legend.php",
"chars": 4636,
"preview": "<?php\n\n/**\n * PHPExcel_Chart_Legend\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you ca"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/PlotArea.php",
"chars": 3087,
"preview": "<?php\n\n/**\n * PHPExcel_Chart_PlotArea\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Properties.php",
"chars": 11654,
"preview": "<?php\n/**\n * Created by PhpStorm.\n * User: nhw2h8s\n * Date: 7/2/14\n * Time: 5:45 PM\n */\n\nabstract class PHPExcel_Chart_P"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt",
"chars": 381,
"preview": "ChartDirector\r\n\thttp://www.advsofteng.com/cdphp.html\r\n\r\nGraPHPite\r\n\thttp://graphpite.sourceforge.net/\r\n\r\nJpGraph\r\n\thttp:"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Renderer/jpgraph.php",
"chars": 33903,
"preview": "<?php\n\nrequire_once(PHPExcel_Settings::getChartRendererPath().'/jpgraph.php');\n\n/**\n * PHPExcel_Chart_Renderer_jpgraph\n "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart/Title.php",
"chars": 2079,
"preview": "<?php\n\n/**\n * PHPExcel_Chart_Title\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Chart.php",
"chars": 14770,
"preview": "<?php\n\n/**\n * PHPExcel_Chart\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redis"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Comment.php",
"chars": 6986,
"preview": "<?php\n\n/**\n * PHPExcel_Comment\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can red"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/DocumentProperties.php",
"chars": 15379,
"preview": "<?php\n\n/**\n * PHPExcel_DocumentProperties\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/DocumentSecurity.php",
"chars": 5144,
"preview": "<?php\n\n/**\n * PHPExcel_DocumentSecurity\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; yo"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Exception.php",
"chars": 1673,
"preview": "<?php\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribute"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/HashTable.php",
"chars": 5042,
"preview": "<?php\n\n/**\n * PHPExcel_HashTable\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can r"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Helper/HTML.php",
"chars": 24796,
"preview": "<?php\n\nclass PHPExcel_Helper_HTML\n{\n protected static $colourMap = array(\n 'aliceblue' => 'f0f8ff',\n 'a"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/IComparable.php",
"chars": 1182,
"preview": "<?php\n\n/**\n * PHPExcel_IComparable\n *\n * This library is free software; you can redistribute it and/or\n * modify it unde"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/IOFactory.php",
"chars": 9366,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHP"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/NamedRange.php",
"chars": 6095,
"preview": "<?php\n\n/**\n * PHPExcel_NamedRange\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Abstract.php",
"chars": 8832,
"preview": "<?php\n\n/**\n * PHPExcel_Reader_Abstract\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/CSV.php",
"chars": 10982,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/DefaultReadFilter.php",
"chars": 1763,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel2003XML.php",
"chars": 38896,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel2007/Chart.php",
"chars": 27167,
"preview": "<?php\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribute"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel2007/Theme.php",
"chars": 3036,
"preview": "<?php\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribute"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel2007.php",
"chars": 134706,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF5.php",
"chars": 1875,
"preview": "<?php\n\nclass PHPExcel_Reader_Excel5_Color_BIFF5\n{\n protected static $map = array(\n 0x08 => '000000',\n 0"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color/BIFF8.php",
"chars": 1874,
"preview": "<?php\n\nclass PHPExcel_Reader_Excel5_Color_BIFF8\n{\n protected static $map = array(\n 0x08 => '000000',\n 0"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color/BuiltIn.php",
"chars": 741,
"preview": "<?php\n\nclass PHPExcel_Reader_Excel5_Color_BuiltIn\n{\n protected static $map = array(\n 0x00 => '000000',\n "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Color.php",
"chars": 1011,
"preview": "<?php\n\nclass PHPExcel_Reader_Excel5_Color\n{\n /**\n * Read color\n *\n * @param int $color Indexed color\n "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/ErrorCode.php",
"chars": 539,
"preview": "<?php\n\nclass PHPExcel_Reader_Excel5_ErrorCode\n{\n protected static $map = array(\n 0x00 => '#NULL!',\n 0x0"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Escher.php",
"chars": 21789,
"preview": "<?php\n\n/**\n * PHPExcel_Reader_Excel5_Escher\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/MD5.php",
"chars": 7940,
"preview": "<?php\n\n/**\n * PHPExcel_Reader_Excel5_MD5\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; y"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/RC4.php",
"chars": 2536,
"preview": "<?php\n\n/**\n * PHPExcel_Reader_Excel5_RC4\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; y"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Style/Border.php",
"chars": 1207,
"preview": "<?php\n\nclass PHPExcel_Reader_Excel5_Style_Border\n{\n protected static $map = array(\n 0x00 => PHPExcel_Style_Bor"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5/Style/FillPattern.php",
"chars": 1583,
"preview": "<?php\n\nclass PHPExcel_Reader_Excel5_Style_FillPattern\n{\n protected static $map = array(\n 0x00 => PHPExcel_Styl"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Excel5.php",
"chars": 292639,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Exception.php",
"chars": 1546,
"preview": "<?php\n\n/**\n * PHPExcel_Reader_Exception\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; yo"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/Gnumeric.php",
"chars": 41888,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/HTML.php",
"chars": 21306,
"preview": "<?php\n\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXCEL_ROOT', dirname(__FILE__) . '"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/IReadFilter.php",
"chars": 1470,
"preview": "<?php\n\n/**\n * PHPExcel_Reader_IReadFilter\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/IReader.php",
"chars": 1527,
"preview": "<?php\n\n/**\n * PHPExcel_Reader_IReader\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/OOCalc.php",
"chars": 37096,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Reader/SYLK.php",
"chars": 19624,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/ReferenceHelper.php",
"chars": 47539,
"preview": "<?php\n\n/**\n * PHPExcel_ReferenceHelper (Singleton)\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free s"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/RichText/ITextElement.php",
"chars": 1586,
"preview": "<?php\n\n/**\n * PHPExcel_RichText_ITextElement\n *\n * This library is free software; you can redistribute it and/or\n * modi"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/RichText/Run.php",
"chars": 2632,
"preview": "<?php\n\n/**\n * PHPExcel_RichText_Run\n *\n * This library is free software; you can redistribute it and/or\n * modify it und"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/RichText/TextElement.php",
"chars": 2558,
"preview": "<?php\n\n/**\n * PHPExcel_RichText_TextElement\n *\n * This library is free software; you can redistribute it and/or\n * modif"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/RichText.php",
"chars": 5035,
"preview": "<?php\n\n/**\n * PHPExcel_RichText\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can re"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Settings.php",
"chars": 11940,
"preview": "<?php\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n */\n define('PHPEXC"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/CodePage.php",
"chars": 6391,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_CodePage\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Date.php",
"chars": 15629,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Date\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Drawing.php",
"chars": 9023,
"preview": "<?php\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribute"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php",
"chars": 8545,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php",
"chars": 2848,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher_DgContainer_SpgrContainer\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This libra"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher/DgContainer.php",
"chars": 1900,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher_DgContainer\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free sof"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php",
"chars": 2121,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php",
"chars": 2904,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * Thi"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php",
"chars": 1822,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher_DggContainer_BstoreContainer\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This li"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher/DggContainer.php",
"chars": 4434,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher_DggContainer\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free so"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Escher.php",
"chars": 2220,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Escher\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you c"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Excel5.php",
"chars": 13002,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_Excel5\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you c"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/File.php",
"chars": 6012,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_File\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/Font.php",
"chars": 29728,
"preview": "<?php\n/**\n * PHPExcel\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free software; you can redistribute"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/CHANGELOG.TXT",
"chars": 500,
"preview": "Mar 1, 2005 11:15 AST by PM\n\n+ For consistency, renamed Math.php to Maths.java, utils to util, \n tests to test, docs to"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/CholeskyDecomposition.php",
"chars": 4531,
"preview": "<?php\n/**\n * @package JAMA\n *\n * Cholesky decomposition class\n *\n * For a symmetric, positive definite matrix A"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php",
"chars": 32463,
"preview": "<?php\n/**\n * @package JAMA\n *\n * Class to obtain eigenvalues and eigenvectors of a real matrix.\n *\n * If A is s"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/LUDecomposition.php",
"chars": 8112,
"preview": "<?php\n/**\n * @package JAMA\n *\n * For an m-by-n matrix A with m >= n, the LU decomposition is an m-by-n\n * unit "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/Matrix.php",
"chars": 41266,
"preview": "<?php\n/**\n * @package JAMA\n */\n\n/** PHPExcel root directory */\nif (!defined('PHPEXCEL_ROOT')) {\n /**\n * @ignore\n "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/QRDecomposition.php",
"chars": 7693,
"preview": "<?php\n/**\n * @package JAMA\n *\n * For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n\n * ortho"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/SingularValueDecomposition.php",
"chars": 18638,
"preview": "<?php\n/**\n * @package JAMA\n *\n * For an m-by-n matrix A with m >= n, the singular value decomposition is\n * an "
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/utils/Error.php",
"chars": 3152,
"preview": "<?php\n/**\n * @package JAMA\n *\n * Error handling\n * @author Michael Bommarito\n * @version 01292005\n */\n\n//Lan"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/JAMA/utils/Maths.php",
"chars": 839,
"preview": "<?php\n/**\n * @package JAMA\n *\n * Pythagorean Theorem:\n *\n * a = 3\n * b = 4\n * r = sqrt(square(a) + square"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/OLE/ChainedBlockStream.php",
"chars": 6666,
"preview": "<?php\n\n/**\n * PHPExcel_Shared_OLE_ChainedBlockStream\n *\n * Copyright (c) 2006 - 2015 PHPExcel\n *\n * This library is free"
},
{
"path": "application/libraries/PHPExcel/PHPExcel/Shared/OLE/PPS/File.php",
"chars": 2500,
"preview": "<?php\n/* vim: set expandtab tabstop=4 shiftwidth=4: */\n// +-------------------------------------------------------------"
}
]
// ... and 1567 more files (download for full content)
About this extraction
This page contains the full source code of the kirilkirkov/Electronic-Invoicing-And-Warehouse-Management-System GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1767 files (54.1 MB), approximately 6.3M tokens, and a symbol index with 9227 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.