├── .gitignore ├── .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 │ ├── Auth.php │ ├── Home.php │ ├── Kota.php │ ├── Pegawai.php │ ├── Posisi.php │ ├── Profile.php │ └── index.html ├── core │ ├── AUTH_Controller.php │ └── index.html ├── helpers │ ├── index.html │ └── my_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── Template.php │ └── index.html ├── logs │ └── index.html ├── models │ ├── M_admin.php │ ├── M_auth.php │ ├── M_kota.php │ ├── M_pegawai.php │ ├── M_posisi.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── _layout │ ├── _content.php │ ├── _css.php │ ├── _footer.php │ ├── _header.php │ ├── _headerContent.php │ ├── _js.php │ ├── _meta.php │ ├── _nav.php │ ├── _sidebar.php │ └── _template.php │ ├── 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.php │ ├── kota │ ├── home.php │ └── list_data.php │ ├── login.php │ ├── modals │ ├── modal_detail_kota.php │ ├── modal_detail_posisi.php │ ├── modal_import.php │ ├── modal_tambah_kota.php │ ├── modal_tambah_pegawai.php │ ├── modal_tambah_posisi.php │ ├── modal_update_kota.php │ ├── modal_update_pegawai.php │ └── modal_update_posisi.php │ ├── pegawai │ ├── home.php │ └── list_data.php │ ├── posisi │ ├── home.php │ └── list_data.php │ └── profile.php ├── assets ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── dist │ ├── css │ │ ├── AdminLTE.css │ │ ├── AdminLTE.min.css │ │ └── skins │ │ │ ├── _all-skins.css │ │ │ ├── _all-skins.min.css │ │ │ ├── skin-black-light.css │ │ │ ├── skin-black-light.min.css │ │ │ ├── skin-black.css │ │ │ ├── skin-black.min.css │ │ │ ├── skin-blue-light.css │ │ │ ├── skin-blue-light.min.css │ │ │ ├── skin-blue.css │ │ │ ├── skin-blue.min.css │ │ │ ├── skin-green-light.css │ │ │ ├── skin-green-light.min.css │ │ │ ├── skin-green.css │ │ │ ├── skin-green.min.css │ │ │ ├── skin-purple-light.css │ │ │ ├── skin-purple-light.min.css │ │ │ ├── skin-purple.css │ │ │ ├── skin-purple.min.css │ │ │ ├── skin-red-light.css │ │ │ ├── skin-red-light.min.css │ │ │ ├── skin-red.css │ │ │ ├── skin-red.min.css │ │ │ ├── skin-yellow-light.css │ │ │ ├── skin-yellow-light.min.css │ │ │ ├── skin-yellow.css │ │ │ └── skin-yellow.min.css │ ├── img │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── default-50x50.gif │ │ ├── icons.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ └── user8-128x128.jpg │ └── js │ │ ├── app.js │ │ ├── app.min.js │ │ ├── demo.js │ │ └── pages │ │ ├── dashboard.js │ │ └── dashboard2.js ├── eksternal │ ├── font-awesome.min.css │ └── ionicons.min.css ├── excel │ ├── Data Kota.xlsx │ ├── Data Pegawai.xlsx │ └── Data Posisi.xlsx ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── ionicons.ttf │ └── ionicons.woff ├── img │ ├── favicon.png │ ├── profil1.jpg │ └── profil2.jpg ├── js │ └── ajax.php ├── phpexcel │ ├── Classes │ │ ├── PHPExcel.php │ │ └── PHPExcel │ │ │ ├── Autoloader.php │ │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ │ ├── CachedObjectStorageFactory.php │ │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ │ ├── Calculation.php │ │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ │ ├── Cell.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ │ ├── Comment.php │ │ │ ├── DocumentProperties.php │ │ │ ├── DocumentSecurity.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ └── RC4.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText.php │ │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ │ ├── Worksheet.php │ │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ │ ├── WorksheetIterator.php │ │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ ├── Documentation │ │ ├── API │ │ │ ├── classes.svg │ │ │ ├── classes │ │ │ │ ├── CholeskyDecomposition.html │ │ │ │ ├── EigenvalueDecomposition.html │ │ │ │ ├── PHPExcel.html │ │ │ │ ├── PHPExcel_Autoloader.html │ │ │ │ ├── PHPExcel_Best_Fit.html │ │ │ │ ├── PHPExcel_CachedObjectStorageFactory.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_APC.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_CacheBase.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_DiscISAM.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_ICache.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_Igbinary.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_Memcache.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_Memory.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_MemoryGZip.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_MemorySerialized.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_PHPTemp.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_SQLite.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_SQLite3.html │ │ │ │ ├── PHPExcel_CachedObjectStorage_Wincache.html │ │ │ │ ├── PHPExcel_CalcEngine_CyclicReferenceStack.html │ │ │ │ ├── PHPExcel_CalcEngine_Logger.html │ │ │ │ ├── PHPExcel_Calculation.html │ │ │ │ ├── PHPExcel_Calculation_Database.html │ │ │ │ ├── PHPExcel_Calculation_DateTime.html │ │ │ │ ├── PHPExcel_Calculation_Engineering.html │ │ │ │ ├── PHPExcel_Calculation_Exception.html │ │ │ │ ├── PHPExcel_Calculation_ExceptionHandler.html │ │ │ │ ├── PHPExcel_Calculation_Financial.html │ │ │ │ ├── PHPExcel_Calculation_FormulaParser.html │ │ │ │ ├── PHPExcel_Calculation_FormulaToken.html │ │ │ │ ├── PHPExcel_Calculation_Function.html │ │ │ │ ├── PHPExcel_Calculation_Functions.html │ │ │ │ ├── PHPExcel_Calculation_Logical.html │ │ │ │ ├── PHPExcel_Calculation_LookupRef.html │ │ │ │ ├── PHPExcel_Calculation_MathTrig.html │ │ │ │ ├── PHPExcel_Calculation_Statistical.html │ │ │ │ ├── PHPExcel_Calculation_TextData.html │ │ │ │ ├── PHPExcel_Calculation_Token_Stack.html │ │ │ │ ├── PHPExcel_Cell.html │ │ │ │ ├── PHPExcel_Cell_AdvancedValueBinder.html │ │ │ │ ├── PHPExcel_Cell_DataType.html │ │ │ │ ├── PHPExcel_Cell_DataValidation.html │ │ │ │ ├── PHPExcel_Cell_DefaultValueBinder.html │ │ │ │ ├── PHPExcel_Cell_Hyperlink.html │ │ │ │ ├── PHPExcel_Cell_IValueBinder.html │ │ │ │ ├── PHPExcel_Chart.html │ │ │ │ ├── PHPExcel_Chart_DataSeries.html │ │ │ │ ├── PHPExcel_Chart_DataSeriesValues.html │ │ │ │ ├── PHPExcel_Chart_Exception.html │ │ │ │ ├── PHPExcel_Chart_Layout.html │ │ │ │ ├── PHPExcel_Chart_Legend.html │ │ │ │ ├── PHPExcel_Chart_PlotArea.html │ │ │ │ ├── PHPExcel_Chart_Renderer_jpgraph.html │ │ │ │ ├── PHPExcel_Chart_Title.html │ │ │ │ ├── PHPExcel_Comment.html │ │ │ │ ├── PHPExcel_DocumentProperties.html │ │ │ │ ├── PHPExcel_DocumentSecurity.html │ │ │ │ ├── PHPExcel_Exception.html │ │ │ │ ├── PHPExcel_Exponential_Best_Fit.html │ │ │ │ ├── PHPExcel_HashTable.html │ │ │ │ ├── PHPExcel_IComparable.html │ │ │ │ ├── PHPExcel_IOFactory.html │ │ │ │ ├── PHPExcel_Linear_Best_Fit.html │ │ │ │ ├── PHPExcel_Logarithmic_Best_Fit.html │ │ │ │ ├── PHPExcel_NamedRange.html │ │ │ │ ├── PHPExcel_Polynomial_Best_Fit.html │ │ │ │ ├── PHPExcel_Power_Best_Fit.html │ │ │ │ ├── PHPExcel_Reader_Abstract.html │ │ │ │ ├── PHPExcel_Reader_CSV.html │ │ │ │ ├── PHPExcel_Reader_DefaultReadFilter.html │ │ │ │ ├── PHPExcel_Reader_Excel2003XML.html │ │ │ │ ├── PHPExcel_Reader_Excel2007.html │ │ │ │ ├── PHPExcel_Reader_Excel2007_Chart.html │ │ │ │ ├── PHPExcel_Reader_Excel2007_Theme.html │ │ │ │ ├── PHPExcel_Reader_Excel5.html │ │ │ │ ├── PHPExcel_Reader_Excel5_Escher.html │ │ │ │ ├── PHPExcel_Reader_Excel5_MD5.html │ │ │ │ ├── PHPExcel_Reader_Excel5_RC4.html │ │ │ │ ├── PHPExcel_Reader_Exception.html │ │ │ │ ├── PHPExcel_Reader_Gnumeric.html │ │ │ │ ├── PHPExcel_Reader_HTML.html │ │ │ │ ├── PHPExcel_Reader_IReadFilter.html │ │ │ │ ├── PHPExcel_Reader_IReader.html │ │ │ │ ├── PHPExcel_Reader_OOCalc.html │ │ │ │ ├── PHPExcel_Reader_SYLK.html │ │ │ │ ├── PHPExcel_ReferenceHelper.html │ │ │ │ ├── PHPExcel_RichText.html │ │ │ │ ├── PHPExcel_RichText_ITextElement.html │ │ │ │ ├── PHPExcel_RichText_Run.html │ │ │ │ ├── PHPExcel_RichText_TextElement.html │ │ │ │ ├── PHPExcel_Settings.html │ │ │ │ ├── PHPExcel_Shared_CodePage.html │ │ │ │ ├── PHPExcel_Shared_Date.html │ │ │ │ ├── PHPExcel_Shared_Drawing.html │ │ │ │ ├── PHPExcel_Shared_Escher.html │ │ │ │ ├── PHPExcel_Shared_Escher_DgContainer.html │ │ │ │ ├── PHPExcel_Shared_Escher_DgContainer_SpgrContainer.html │ │ │ │ ├── PHPExcel_Shared_Escher_DgContainer_SpgrContainer_SpContainer.html │ │ │ │ ├── PHPExcel_Shared_Escher_DggContainer.html │ │ │ │ ├── PHPExcel_Shared_Escher_DggContainer_BstoreContainer.html │ │ │ │ ├── PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE.html │ │ │ │ ├── PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE_Blip.html │ │ │ │ ├── PHPExcel_Shared_Excel5.html │ │ │ │ ├── PHPExcel_Shared_File.html │ │ │ │ ├── PHPExcel_Shared_Font.html │ │ │ │ ├── PHPExcel_Shared_JAMA_LUDecomposition.html │ │ │ │ ├── PHPExcel_Shared_JAMA_Matrix.html │ │ │ │ ├── PHPExcel_Shared_JAMA_QRDecomposition.html │ │ │ │ ├── PHPExcel_Shared_OLE.html │ │ │ │ ├── PHPExcel_Shared_OLERead.html │ │ │ │ ├── PHPExcel_Shared_OLE_ChainedBlockStream.html │ │ │ │ ├── PHPExcel_Shared_OLE_PPS.html │ │ │ │ ├── PHPExcel_Shared_OLE_PPS_File.html │ │ │ │ ├── PHPExcel_Shared_OLE_PPS_Root.html │ │ │ │ ├── PHPExcel_Shared_PasswordHasher.html │ │ │ │ ├── PHPExcel_Shared_String.html │ │ │ │ ├── PHPExcel_Shared_TimeZone.html │ │ │ │ ├── PHPExcel_Shared_XMLWriter.html │ │ │ │ ├── PHPExcel_Shared_ZipArchive.html │ │ │ │ ├── PHPExcel_Shared_ZipStreamWrapper.html │ │ │ │ ├── PHPExcel_Style.html │ │ │ │ ├── PHPExcel_Style_Alignment.html │ │ │ │ ├── PHPExcel_Style_Border.html │ │ │ │ ├── PHPExcel_Style_Borders.html │ │ │ │ ├── PHPExcel_Style_Color.html │ │ │ │ ├── PHPExcel_Style_Conditional.html │ │ │ │ ├── PHPExcel_Style_Fill.html │ │ │ │ ├── PHPExcel_Style_Font.html │ │ │ │ ├── PHPExcel_Style_NumberFormat.html │ │ │ │ ├── PHPExcel_Style_Protection.html │ │ │ │ ├── PHPExcel_Style_Supervisor.html │ │ │ │ ├── PHPExcel_Worksheet.html │ │ │ │ ├── PHPExcel_WorksheetIterator.html │ │ │ │ ├── PHPExcel_Worksheet_AutoFilter.html │ │ │ │ ├── PHPExcel_Worksheet_AutoFilter_Column.html │ │ │ │ ├── PHPExcel_Worksheet_AutoFilter_Column_Rule.html │ │ │ │ ├── PHPExcel_Worksheet_BaseDrawing.html │ │ │ │ ├── PHPExcel_Worksheet_CellIterator.html │ │ │ │ ├── PHPExcel_Worksheet_ColumnDimension.html │ │ │ │ ├── PHPExcel_Worksheet_Drawing.html │ │ │ │ ├── PHPExcel_Worksheet_Drawing_Shadow.html │ │ │ │ ├── PHPExcel_Worksheet_HeaderFooter.html │ │ │ │ ├── PHPExcel_Worksheet_HeaderFooterDrawing.html │ │ │ │ ├── PHPExcel_Worksheet_MemoryDrawing.html │ │ │ │ ├── PHPExcel_Worksheet_PageMargins.html │ │ │ │ ├── PHPExcel_Worksheet_PageSetup.html │ │ │ │ ├── PHPExcel_Worksheet_Protection.html │ │ │ │ ├── PHPExcel_Worksheet_Row.html │ │ │ │ ├── PHPExcel_Worksheet_RowDimension.html │ │ │ │ ├── PHPExcel_Worksheet_RowIterator.html │ │ │ │ ├── PHPExcel_Worksheet_SheetView.html │ │ │ │ ├── PHPExcel_Writer_Abstract.html │ │ │ │ ├── PHPExcel_Writer_CSV.html │ │ │ │ ├── PHPExcel_Writer_Excel2007.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Chart.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Comments.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_ContentTypes.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_DocProps.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Drawing.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Rels.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_RelsRibbon.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_RelsVBA.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_StringTable.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Style.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Theme.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Workbook.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_Worksheet.html │ │ │ │ ├── PHPExcel_Writer_Excel2007_WriterPart.html │ │ │ │ ├── PHPExcel_Writer_Excel5.html │ │ │ │ ├── PHPExcel_Writer_Excel5_BIFFwriter.html │ │ │ │ ├── PHPExcel_Writer_Excel5_Escher.html │ │ │ │ ├── PHPExcel_Writer_Excel5_Font.html │ │ │ │ ├── PHPExcel_Writer_Excel5_Parser.html │ │ │ │ ├── PHPExcel_Writer_Excel5_Workbook.html │ │ │ │ ├── PHPExcel_Writer_Excel5_Worksheet.html │ │ │ │ ├── PHPExcel_Writer_Excel5_Xf.html │ │ │ │ ├── PHPExcel_Writer_Exception.html │ │ │ │ ├── PHPExcel_Writer_HTML.html │ │ │ │ ├── PHPExcel_Writer_IWriter.html │ │ │ │ ├── PHPExcel_Writer_PDF.html │ │ │ │ ├── PHPExcel_Writer_PDF_Core.html │ │ │ │ ├── PHPExcel_Writer_PDF_DomPDF.html │ │ │ │ ├── PHPExcel_Writer_PDF_mPDF.html │ │ │ │ ├── PHPExcel_Writer_PDF_tcPDF.html │ │ │ │ ├── PclZip.html │ │ │ │ ├── SingularValueDecomposition.html │ │ │ │ └── trendClass.html │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── jquery.iviewer.css │ │ │ │ ├── prettify.css │ │ │ │ └── template.css │ │ │ ├── deprecated.html │ │ │ ├── errors.html │ │ │ ├── graph_class.html │ │ │ ├── img │ │ │ │ ├── apple-touch-icon-114x114.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── icons │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_right.png │ │ │ │ │ ├── class.png │ │ │ │ │ ├── constant.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── file-php.png │ │ │ │ │ ├── file.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── function.png │ │ │ │ │ ├── icon-folder-open-big.png │ │ │ │ │ ├── icon-th-big.png │ │ │ │ │ ├── icon_template.svg │ │ │ │ │ ├── interface.png │ │ │ │ │ ├── method.png │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── property.png │ │ │ │ │ ├── search.gif │ │ │ │ │ ├── variable.png │ │ │ │ │ ├── view_source.png │ │ │ │ │ ├── visibility_private.png │ │ │ │ │ ├── visibility_protected.png │ │ │ │ │ └── visibility_public.png │ │ │ │ ├── iviewer │ │ │ │ │ ├── grab.cur │ │ │ │ │ ├── hand.cur │ │ │ │ │ ├── iviewer.rotate_left.png │ │ │ │ │ ├── iviewer.rotate_right.png │ │ │ │ │ ├── iviewer.zoom_fit.png │ │ │ │ │ ├── iviewer.zoom_fit2.gif │ │ │ │ │ ├── iviewer.zoom_in.png │ │ │ │ │ ├── iviewer.zoom_in2.gif │ │ │ │ │ ├── iviewer.zoom_out.png │ │ │ │ │ ├── iviewer.zoom_out2.gif │ │ │ │ │ ├── iviewer.zoom_zero.png │ │ │ │ │ └── iviewer.zoom_zero2.gif │ │ │ │ └── loader.gif │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── SVGPan.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery-1.4.2.min.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── jquery-ui-1.8.2.custom.min.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.iviewer.js │ │ │ │ ├── jquery.iviewer.min.js │ │ │ │ ├── jquery.mousewheel.min.js │ │ │ │ ├── jquery.panzoom.js │ │ │ │ ├── jquery.splitter.js │ │ │ │ ├── jquery.tools.min.js │ │ │ │ ├── jquery.treeview.js │ │ │ │ ├── menu.js │ │ │ │ ├── prettify │ │ │ │ │ ├── lang-apollo.js │ │ │ │ │ ├── lang-clj.js │ │ │ │ │ ├── lang-css.js │ │ │ │ │ ├── lang-go.js │ │ │ │ │ ├── lang-hs.js │ │ │ │ │ ├── lang-lisp.js │ │ │ │ │ ├── lang-lua.js │ │ │ │ │ ├── lang-ml.js │ │ │ │ │ ├── lang-n.js │ │ │ │ │ ├── lang-proto.js │ │ │ │ │ ├── lang-scala.js │ │ │ │ │ ├── lang-sql.js │ │ │ │ │ ├── lang-tex.js │ │ │ │ │ ├── lang-vb.js │ │ │ │ │ ├── lang-vhdl.js │ │ │ │ │ ├── lang-wiki.js │ │ │ │ │ ├── lang-xq.js │ │ │ │ │ ├── lang-yaml.js │ │ │ │ │ └── prettify.min.js │ │ │ │ ├── sidebar.js │ │ │ │ └── template.js │ │ │ ├── markers.html │ │ │ ├── namespaces │ │ │ │ └── global.html │ │ │ └── packages │ │ │ │ ├── Default.html │ │ │ │ ├── JAMA.html │ │ │ │ ├── PHPExcel.CachedObjectStorage.html │ │ │ │ ├── PHPExcel.Calculation.html │ │ │ │ ├── PHPExcel.Cell.html │ │ │ │ ├── PHPExcel.Chart.Renderer.html │ │ │ │ ├── PHPExcel.Chart.html │ │ │ │ ├── PHPExcel.Reader.Excel2007.html │ │ │ │ ├── PHPExcel.Reader.Excel5.html │ │ │ │ ├── PHPExcel.Reader.html │ │ │ │ ├── PHPExcel.RichText.html │ │ │ │ ├── PHPExcel.Settings.html │ │ │ │ ├── PHPExcel.Shared.Escher.html │ │ │ │ ├── PHPExcel.Shared.OLE.html │ │ │ │ ├── PHPExcel.Shared.Trend.html │ │ │ │ ├── PHPExcel.Shared.ZipArchive.html │ │ │ │ ├── PHPExcel.Shared.html │ │ │ │ ├── PHPExcel.Style.html │ │ │ │ ├── PHPExcel.Worksheet.Drawing.html │ │ │ │ ├── PHPExcel.Worksheet.html │ │ │ │ ├── PHPExcel.Writer.2007.html │ │ │ │ ├── PHPExcel.Writer.CSV.html │ │ │ │ ├── PHPExcel.Writer.Excel2007.html │ │ │ │ ├── PHPExcel.Writer.Excel5.html │ │ │ │ ├── PHPExcel.Writer.HTML.html │ │ │ │ ├── PHPExcel.Writer.html │ │ │ │ └── PHPExcel.html │ │ ├── Examples │ │ │ ├── Calculations │ │ │ │ ├── Database │ │ │ │ │ ├── DAVERAGE.php │ │ │ │ │ ├── DCOUNT.php │ │ │ │ │ ├── DGET.php │ │ │ │ │ ├── DMAX.php │ │ │ │ │ ├── DMIN.php │ │ │ │ │ ├── DPRODUCT.php │ │ │ │ │ ├── DSTDEV.php │ │ │ │ │ ├── DSTDEVP.php │ │ │ │ │ ├── DVAR.php │ │ │ │ │ └── DVARP.php │ │ │ │ ├── DateTime │ │ │ │ │ ├── DATE.php │ │ │ │ │ ├── DATEVALUE.php │ │ │ │ │ ├── TIME.php │ │ │ │ │ └── TIMEVALUE.php │ │ │ │ └── index.php │ │ │ ├── Reader │ │ │ │ ├── exampleReader01.php │ │ │ │ ├── exampleReader02.php │ │ │ │ ├── exampleReader03.php │ │ │ │ ├── exampleReader04.php │ │ │ │ ├── exampleReader05.php │ │ │ │ ├── exampleReader06.php │ │ │ │ ├── exampleReader07.php │ │ │ │ ├── exampleReader08.php │ │ │ │ ├── exampleReader09.php │ │ │ │ ├── exampleReader10.php │ │ │ │ ├── exampleReader11.php │ │ │ │ ├── exampleReader12.php │ │ │ │ ├── exampleReader13.php │ │ │ │ ├── exampleReader14.php │ │ │ │ ├── exampleReader15.php │ │ │ │ ├── exampleReader16.php │ │ │ │ ├── exampleReader17.php │ │ │ │ ├── exampleReader18.php │ │ │ │ ├── exampleReader19.php │ │ │ │ └── sampleData │ │ │ │ │ ├── example1.csv │ │ │ │ │ ├── example1.tsv │ │ │ │ │ ├── example1.xls │ │ │ │ │ ├── example2.csv │ │ │ │ │ └── example2.xls │ │ │ ├── Reading WorkBook Data │ │ │ │ ├── exampleWorkBookReader01.php │ │ │ │ ├── exampleWorkBookReader02.php │ │ │ │ ├── exampleWorkBookReader03.php │ │ │ │ ├── exampleWorkBookReader04.php │ │ │ │ └── sampleData │ │ │ │ │ ├── example1.xls │ │ │ │ │ ├── example1.xlsx │ │ │ │ │ └── example2.xls │ │ │ └── index.php │ │ ├── FunctionListByCategory.txt │ │ ├── FunctionListByName.txt │ │ ├── PHPExcel AutoFilter Reference developer documentation.doc │ │ ├── PHPExcel Function Reference developer documentation.doc │ │ ├── PHPExcel User Documentation - Reading Spreadsheet Files.doc │ │ └── PHPExcel developer documentation.doc │ ├── Examples │ │ ├── 01pharSimple.php │ │ ├── 01simple-download-pdf.php │ │ ├── 01simple-download-xls.php │ │ ├── 01simple-download-xlsx.php │ │ ├── 01simple.php │ │ ├── 01simplePCLZip.php │ │ ├── 02types-xls.php │ │ ├── 02types.php │ │ ├── 03formulas.php │ │ ├── 04printing.php │ │ ├── 05featuredemo.inc.php │ │ ├── 05featuredemo.php │ │ ├── 06largescale-with-cellcaching-sqlite.php │ │ ├── 06largescale-with-cellcaching-sqlite3.php │ │ ├── 06largescale-with-cellcaching.php │ │ ├── 06largescale-xls.php │ │ ├── 06largescale.php │ │ ├── 07reader.php │ │ ├── 07readerPCLZip.php │ │ ├── 08conditionalformatting.php │ │ ├── 08conditionalformatting2.php │ │ ├── 09pagebreaks.php │ │ ├── 10autofilter-selection-1.php │ │ ├── 10autofilter-selection-2.php │ │ ├── 10autofilter-selection-display.php │ │ ├── 10autofilter.php │ │ ├── 11documentsecurity-xls.php │ │ ├── 11documentsecurity.php │ │ ├── 12cellProtection.php │ │ ├── 13calculation.php │ │ ├── 14excel5.php │ │ ├── 15datavalidation-xls.php │ │ ├── 15datavalidation.php │ │ ├── 16csv.php │ │ ├── 17html.php │ │ ├── 18extendedcalculation.php │ │ ├── 19namedrange.php │ │ ├── 20readexcel5.php │ │ ├── 21pdf.php │ │ ├── 22heavilyformatted.php │ │ ├── 23sharedstyles.php │ │ ├── 24readfilter.php │ │ ├── 25inmemoryimage.php │ │ ├── 26utf8.php │ │ ├── 27imagesexcel5.php │ │ ├── 28iterator.php │ │ ├── 29advancedvaluebinder.php │ │ ├── 30template.php │ │ ├── 31docproperties_write-xls.php │ │ ├── 31docproperties_write.php │ │ ├── 32chartreadwrite.php │ │ ├── 33chartcreate-area.php │ │ ├── 33chartcreate-bar-stacked.php │ │ ├── 33chartcreate-bar.php │ │ ├── 33chartcreate-column-2.php │ │ ├── 33chartcreate-column.php │ │ ├── 33chartcreate-composite.php │ │ ├── 33chartcreate-line.php │ │ ├── 33chartcreate-multiple-charts.php │ │ ├── 33chartcreate-pie.php │ │ ├── 33chartcreate-radar.php │ │ ├── 33chartcreate-scatter.php │ │ ├── 33chartcreate-stock.php │ │ ├── 34chartupdate.php │ │ ├── 35chartrender.php │ │ ├── 36chartreadwriteHTML.php │ │ ├── 36chartreadwritePDF.php │ │ ├── 37page_layout_view.php │ │ ├── 38cloneWorksheet.php │ │ ├── 40duplicateStyle.php │ │ ├── Excel2003XMLReader.php │ │ ├── Excel2003XMLTest.xml │ │ ├── GnumericReader.php │ │ ├── GnumericTest.gnumeric │ │ ├── OOCalcReader.php │ │ ├── OOCalcReaderPCLZip.php │ │ ├── OOCalcTest.ods │ │ ├── Quadratic.php │ │ ├── Quadratic.xlsx │ │ ├── Quadratic2.php │ │ ├── SylkReader.php │ │ ├── SylkTest.slk │ │ ├── XMLReader.php │ │ ├── XMLTest.xml │ │ ├── images │ │ │ ├── officelogo.jpg │ │ │ ├── paid.png │ │ │ ├── phpexcel_logo.gif │ │ │ └── termsconditions.jpg │ │ ├── runall.php │ │ └── templates │ │ │ ├── 26template.xlsx │ │ │ ├── 27template.xls │ │ │ ├── 30template.xls │ │ │ ├── 31docproperties.xls │ │ │ ├── 31docproperties.xlsx │ │ │ ├── 32chartreadwrite.xlsx │ │ │ ├── 32complexChartreadwrite.xlsx │ │ │ ├── 32readwriteAreaChart1.xlsx │ │ │ ├── 32readwriteAreaChart2.xlsx │ │ │ ├── 32readwriteAreaChart3.xlsx │ │ │ ├── 32readwriteAreaChart3D1.xlsx │ │ │ ├── 32readwriteAreaPercentageChart1.xlsx │ │ │ ├── 32readwriteAreaPercentageChart2.xlsx │ │ │ ├── 32readwriteAreaPercentageChart3D1.xlsx │ │ │ ├── 32readwriteAreaStackedChart1.xlsx │ │ │ ├── 32readwriteAreaStackedChart2.xlsx │ │ │ ├── 32readwriteAreaStackedChart3D1.xlsx │ │ │ ├── 32readwriteBarChart1.xlsx │ │ │ ├── 32readwriteBarChart2.xlsx │ │ │ ├── 32readwriteBarChart3.xlsx │ │ │ ├── 32readwriteBarChart3D1.xlsx │ │ │ ├── 32readwriteBarPercentageChart1.xlsx │ │ │ ├── 32readwriteBarPercentageChart2.xlsx │ │ │ ├── 32readwriteBarPercentageChart3D1.xlsx │ │ │ ├── 32readwriteBarStackedChart1.xlsx │ │ │ ├── 32readwriteBarStackedChart2.xlsx │ │ │ ├── 32readwriteBarStackedChart3D1.xlsx │ │ │ ├── 32readwriteBubbleChart1.xlsx │ │ │ ├── 32readwriteBubbleChart3D1.xlsx │ │ │ ├── 32readwriteChartWithImages1.xlsx │ │ │ ├── 32readwriteColumnChart1.xlsx │ │ │ ├── 32readwriteColumnChart2.xlsx │ │ │ ├── 32readwriteColumnChart3.xlsx │ │ │ ├── 32readwriteColumnChart3D1.xlsx │ │ │ ├── 32readwriteColumnChart4.xlsx │ │ │ ├── 32readwriteColumnPercentageChart1.xlsx │ │ │ ├── 32readwriteColumnPercentageChart2.xlsx │ │ │ ├── 32readwriteColumnPercentageChart3D1.xlsx │ │ │ ├── 32readwriteColumnStackedChart1.xlsx │ │ │ ├── 32readwriteColumnStackedChart2.xlsx │ │ │ ├── 32readwriteColumnStackedChart3D1.xlsx │ │ │ ├── 32readwriteDonutChart1.xlsx │ │ │ ├── 32readwriteDonutChart2.xlsx │ │ │ ├── 32readwriteDonutChart3.xlsx │ │ │ ├── 32readwriteDonutChart4.xlsx │ │ │ ├── 32readwriteDonutChartExploded1.xlsx │ │ │ ├── 32readwriteDonutChartMultiseries1.xlsx │ │ │ ├── 32readwriteLineChart1.xlsx │ │ │ ├── 32readwriteLineChart2.xlsx │ │ │ ├── 32readwriteLineChart3.xlsx │ │ │ ├── 32readwriteLineChart3D1.xlsx │ │ │ ├── 32readwriteLineChartNoPointMarkers1.xlsx │ │ │ ├── 32readwriteLinePercentageChart1.xlsx │ │ │ ├── 32readwriteLinePercentageChart2.xlsx │ │ │ ├── 32readwriteLineStackedChart1.xlsx │ │ │ ├── 32readwriteLineStackedChart2.xlsx │ │ │ ├── 32readwritePieChart1.xlsx │ │ │ ├── 32readwritePieChart2.xlsx │ │ │ ├── 32readwritePieChart3.xlsx │ │ │ ├── 32readwritePieChart3D1.xlsx │ │ │ ├── 32readwritePieChart4.xlsx │ │ │ ├── 32readwritePieChartExploded1.xlsx │ │ │ ├── 32readwritePieChartExploded3D1.xlsx │ │ │ ├── 32readwriteRadarChart1.xlsx │ │ │ ├── 32readwriteRadarChart2.xlsx │ │ │ ├── 32readwriteRadarChart3.xlsx │ │ │ ├── 32readwriteScatterChart1.xlsx │ │ │ ├── 32readwriteScatterChart2.xlsx │ │ │ ├── 32readwriteScatterChart3.xlsx │ │ │ ├── 32readwriteScatterChart4.xlsx │ │ │ ├── 32readwriteScatterChart5.xlsx │ │ │ ├── 32readwriteStockChart1.xlsx │ │ │ ├── 32readwriteStockChart2.xlsx │ │ │ ├── 32readwriteStockChart3.xlsx │ │ │ ├── 32readwriteStockChart4.xlsx │ │ │ ├── 32readwriteSurfaceChart1.xlsx │ │ │ ├── 32readwriteSurfaceChart2.xlsx │ │ │ ├── 32readwriteSurfaceChart3.xlsx │ │ │ ├── 32readwriteSurfaceChart4.xlsx │ │ │ └── 36writeLineChart1.xlsx │ ├── changelog.txt │ ├── install.txt │ └── license.txt └── plugins │ ├── chartjs │ ├── Chart.js │ └── Chart.min.js │ ├── datatables │ ├── dataTables.bootstrap.css │ ├── dataTables.bootstrap.js │ ├── dataTables.bootstrap.min.js │ ├── extensions │ │ ├── AutoFill │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ └── dataTables.autoFill.min.css │ │ │ ├── examples │ │ │ │ ├── columns.html │ │ │ │ ├── complete-callback.html │ │ │ │ ├── fill-both.html │ │ │ │ ├── fill-horizontal.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── simple.html │ │ │ │ └── step-callback.html │ │ │ ├── images │ │ │ │ └── filler.png │ │ │ └── js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ ├── ColReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ └── dataTables.colReorder.min.css │ │ │ ├── examples │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── new_init.html │ │ │ │ ├── predefined.html │ │ │ │ ├── realtime.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── simple.html │ │ │ │ └── state_save.html │ │ │ ├── images │ │ │ │ └── insert.png │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── ColVis │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colVis.css │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ ├── examples │ │ │ │ ├── button_order.html │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── group_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── new_init.html │ │ │ │ ├── restore.html │ │ │ │ ├── simple.html │ │ │ │ ├── text.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ └── js │ │ │ │ ├── dataTables.colVis.js │ │ │ │ └── dataTables.colVis.min.js │ │ ├── FixedColumns │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ ├── examples │ │ │ │ ├── bootstrap.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── css_size.html │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── right_column.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── simple.html │ │ │ │ ├── size_fixed.html │ │ │ │ ├── size_fluid.html │ │ │ │ └── two_columns.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ ├── examples │ │ │ │ ├── header_footer.html │ │ │ │ ├── index.html │ │ │ │ ├── simple.html │ │ │ │ ├── top_left_right.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── KeyTable │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ └── dataTables.keyTable.min.css │ │ │ ├── examples │ │ │ │ ├── events.html │ │ │ │ ├── html.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ └── simple.html │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ └── dataTables.keyTable.min.js │ │ ├── Responsive │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.responsive.css │ │ │ │ └── dataTables.responsive.scss │ │ │ ├── examples │ │ │ │ ├── child-rows │ │ │ │ │ ├── column-control.html │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── right-column.html │ │ │ │ │ └── whole-row-control.html │ │ │ │ ├── display-control │ │ │ │ │ ├── auto.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init-classes.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── className.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new.html │ │ │ │ │ └── option.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── compact.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── scrolling.html │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ └── dataTables.responsive.min.js │ │ ├── Scroller │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.scroller.css │ │ │ │ └── dataTables.scroller.min.css │ │ │ ├── examples │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── data │ │ │ │ │ ├── 2500.txt │ │ │ │ │ └── ssp.php │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── server-side_processing.html │ │ │ │ ├── simple.html │ │ │ │ └── state_saving.html │ │ │ ├── images │ │ │ │ └── loading-background.png │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ └── dataTables.scroller.min.js │ │ └── TableTools │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ ├── dataTables.tableTools.css │ │ │ └── dataTables.tableTools.min.css │ │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── alter_buttons.html │ │ │ ├── bootstrap.html │ │ │ ├── button_text.html │ │ │ ├── collection.html │ │ │ ├── defaults.html │ │ │ ├── index.html │ │ │ ├── jqueryui.html │ │ │ ├── multi_instance.html │ │ │ ├── multiple_tables.html │ │ │ ├── new_init.html │ │ │ ├── pdf_message.html │ │ │ ├── plug-in.html │ │ │ ├── select_column.html │ │ │ ├── select_multi.html │ │ │ ├── select_os.html │ │ │ ├── select_single.html │ │ │ ├── simple.html │ │ │ └── swf_path.html │ │ │ ├── images │ │ │ ├── collection.png │ │ │ ├── collection_hover.png │ │ │ ├── copy.png │ │ │ ├── copy_hover.png │ │ │ ├── csv.png │ │ │ ├── csv_hover.png │ │ │ ├── pdf.png │ │ │ ├── pdf_hover.png │ │ │ ├── print.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── collection.psd │ │ │ │ ├── copy document.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── printer.psd │ │ │ ├── xls.png │ │ │ └── xls_hover.png │ │ │ ├── js │ │ │ ├── dataTables.tableTools.js │ │ │ └── dataTables.tableTools.min.js │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── jquery.dataTables.css │ ├── jquery.dataTables.js │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ └── jquery.dataTables_themeroller.css │ ├── iCheck │ ├── all.css │ ├── flat │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── flat.css │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── futurico │ │ ├── futurico.css │ │ ├── futurico.png │ │ └── futurico@2x.png │ ├── icheck.js │ ├── icheck.min.js │ ├── line │ │ ├── _all.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── grey.css │ │ ├── line.css │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── orange.css │ │ ├── pink.css │ │ ├── purple.css │ │ ├── red.css │ │ └── yellow.css │ ├── minimal │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── minimal.css │ │ ├── minimal.png │ │ ├── minimal@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── polaris │ │ ├── polaris.css │ │ ├── polaris.png │ │ └── polaris@2x.png │ └── square │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── square.css │ │ ├── square.png │ │ ├── square@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── ionslider │ ├── img │ │ ├── sprite-skin-flat.png │ │ └── sprite-skin-nice.png │ ├── ion.rangeSlider.css │ ├── ion.rangeSlider.min.js │ ├── ion.rangeSlider.skinFlat.css │ └── ion.rangeSlider.skinNice.css │ ├── jQuery │ └── jquery-2.2.3.min.js │ └── select2 │ ├── i18n │ ├── ar.js │ ├── az.js │ ├── bg.js │ ├── ca.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── el.js │ ├── en.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── gl.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hu.js │ ├── id.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── km.js │ ├── ko.js │ ├── lt.js │ ├── lv.js │ ├── mk.js │ ├── ms.js │ ├── nb.js │ ├── nl.js │ ├── pl.js │ ├── pt-BR.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sk.js │ ├── sr-Cyrl.js │ ├── sr.js │ ├── sv.js │ ├── th.js │ ├── tr.js │ ├── uk.js │ ├── vi.js │ ├── zh-CN.js │ └── zh-TW.js │ ├── select2.css │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js ├── composer.json ├── contributing.md ├── database └── cendana.sql ├── index.php ├── license.txt ├── readme.rst └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Log.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php ├── compat │ ├── hash.php │ ├── index.html │ ├── mbstring.php │ ├── password.php │ └── standard.php └── index.html ├── database ├── DB.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_query_builder.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── ibase │ │ ├── ibase_driver.php │ │ ├── ibase_forge.php │ │ ├── ibase_result.php │ │ ├── ibase_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ ├── pdo_utility.php │ │ └── subdrivers │ │ │ ├── index.html │ │ │ ├── pdo_4d_driver.php │ │ │ ├── pdo_4d_forge.php │ │ │ ├── pdo_cubrid_driver.php │ │ │ ├── pdo_cubrid_forge.php │ │ │ ├── pdo_dblib_driver.php │ │ │ ├── pdo_dblib_forge.php │ │ │ ├── pdo_firebird_driver.php │ │ │ ├── pdo_firebird_forge.php │ │ │ ├── pdo_ibm_driver.php │ │ │ ├── pdo_ibm_forge.php │ │ │ ├── pdo_informix_driver.php │ │ │ ├── pdo_informix_forge.php │ │ │ ├── pdo_mysql_driver.php │ │ │ ├── pdo_mysql_forge.php │ │ │ ├── pdo_oci_driver.php │ │ │ ├── pdo_oci_forge.php │ │ │ ├── pdo_odbc_driver.php │ │ │ ├── pdo_odbc_forge.php │ │ │ ├── pdo_pgsql_driver.php │ │ │ ├── pdo_pgsql_forge.php │ │ │ ├── pdo_sqlite_driver.php │ │ │ ├── pdo_sqlite_forge.php │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ └── pdo_sqlsrv_forge.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ ├── sqlite3 │ │ ├── index.html │ │ ├── sqlite3_driver.php │ │ ├── sqlite3_forge.php │ │ ├── sqlite3_result.php │ │ └── sqlite3_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── pagination_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php ├── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ ├── Cache_memcached.php │ ├── Cache_redis.php │ ├── Cache_wincache.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Encryption.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Javascript ├── Jquery.php └── index.html ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session ├── Session.php ├── SessionHandlerInterface.php ├── Session_driver.php ├── drivers │ ├── Session_database_driver.php │ ├── Session_files_driver.php │ ├── Session_memcached_driver.php │ ├── Session_redis_driver.php │ └── index.html └── index.html ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess 10 | 11 | user_guide_src/build/* 12 | user_guide_src/cilexer/build/* 13 | user_guide_src/cilexer/dist/* 14 | user_guide_src/cilexer/pycilexer.egg-info/* 15 | /vendor/ 16 | 17 | # IDE Files 18 | #------------------------- 19 | /nbproject/ 20 | .idea/* 21 | 22 | ## Sublime Text cache files 23 | *.tmlanguage.cache 24 | *.tmPreferences.cache 25 | *.stTheme.cache 26 | *.sublime-workspace 27 | *.sublime-project 28 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-f 4 | RewriteCond %{REQUEST_FILENAME} !-d 5 | RewriteRule ^(.*)$ index.php/$1 [L] 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AdminLTE-CRUD-With-Codeigniter 2 | CRUD dengan Template Admin LTE menggunakan Codeigniter 3 | 4 | Fitur : 5 | 1. CRUD with Ajax 6 | 2. Datatable 7 | 3. Export dan Import ke Excel 8 | 4. Chart 9 | 10 | Akun Login : 11 | 1. username : auwfar / password : auwfar 12 | 2. username : ozil / password : ozil 13 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/AUTH_Controller.php: -------------------------------------------------------------------------------- 1 | load->model('M_admin'); 8 | 9 | $this->userdata = $this->session->userdata('userdata'); 10 | 11 | $this->session->set_flashdata('segment', explode('/', $this->uri->uri_string())); 12 | 13 | if ($this->session->userdata('status') == '') { 14 | redirect('Auth'); 15 | } 16 | } 17 | 18 | public function updateProfil() { 19 | if ($this->userdata != '') { 20 | $data = $this->M_admin->select($this->userdata->id); 21 | 22 | $this->session->set_userdata('userdata', $data); 23 | $this->userdata = $this->session->userdata('userdata'); 24 | } 25 | } 26 | } 27 | 28 | /* End of file MY_Auth.php */ 29 | /* Location: ./application/core/MY_Auth.php */ -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/M_admin.php: -------------------------------------------------------------------------------- 1 | db->where("id", $id); 7 | $this->db->update("admin", $data); 8 | 9 | return $this->db->affected_rows(); 10 | } 11 | 12 | public function select($id = '') { 13 | if ($id != '') { 14 | $this->db->where('id', $id); 15 | } 16 | 17 | $data = $this->db->get('admin'); 18 | 19 | return $data->row(); 20 | } 21 | } 22 | 23 | /* End of file M_admin.php */ 24 | /* Location: ./application/models/M_admin.php */ -------------------------------------------------------------------------------- /application/models/M_auth.php: -------------------------------------------------------------------------------- 1 | db->select('*'); 7 | $this->db->from('admin'); 8 | $this->db->where('username', $user); 9 | $this->db->where('password', md5($pass)); 10 | 11 | $data = $this->db->get(); 12 | 13 | if ($data->num_rows() == 1) { 14 | return $data->row(); 15 | } else { 16 | return false; 17 | } 18 | } 19 | } 20 | 21 | /* End of file M_auth.php */ 22 | /* Location: ./application/models/M_auth.php */ -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/_layout/_content.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 |
10 |
-------------------------------------------------------------------------------- /application/views/_layout/_css.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /application/views/_layout/_footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/_layout/_header.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 9 | 10 | 11 | 12 |
-------------------------------------------------------------------------------- /application/views/_layout/_headerContent.php: -------------------------------------------------------------------------------- 1 |
2 |

3 | Halaman 4 | 5 |

6 | 31 |
-------------------------------------------------------------------------------- /application/views/_layout/_js.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/_layout/_meta.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /application/views/_layout/_template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AdminCRUD | Dashboard 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 |
31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/kota/list_data.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | nama; ?> 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /application/views/modals/modal_detail_kota.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

List Pegawai (Dari Kota: nama; ?>)

4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 |
NamaNo TelpJenis KelaminPosisi
pegawai; ?>telp; ?>kelamin; ?>posisi; ?>
30 |
31 | 32 |
33 | 34 |
35 |
-------------------------------------------------------------------------------- /application/views/modals/modal_detail_posisi.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

List Pegawai (Posisi: nama; ?>)

4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 |
NamaNo TelpAsal kotaJenis Kelamin
pegawai; ?>telp; ?>kota; ?>kelamin; ?>
30 |
31 | 32 |
33 | 34 |
35 |
-------------------------------------------------------------------------------- /application/views/modals/modal_import.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

Import Data

5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
-------------------------------------------------------------------------------- /application/views/modals/modal_tambah_kota.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

Tambah Data kota

5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
-------------------------------------------------------------------------------- /application/views/modals/modal_tambah_posisi.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

Tambah Data posisi

5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 |
-------------------------------------------------------------------------------- /application/views/modals/modal_update_kota.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

Update Data kota

5 | 6 |
7 | 8 |
9 | 10 | 11 | 12 | 13 |
14 |
15 |
16 | 17 |
18 |
19 |
20 |
-------------------------------------------------------------------------------- /application/views/modals/modal_update_posisi.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

Update Data posisi

5 | 6 |
7 | 8 |
9 | 10 | 11 | 12 | 13 |
14 |
15 |
16 | 17 |
18 |
19 |
20 |
-------------------------------------------------------------------------------- /application/views/pegawai/list_data.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | pegawai; ?> 6 | telp; ?> 7 | kota; ?> 8 | kelamin; ?> 9 | posisi; ?> 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /application/views/posisi/list_data.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | nama; ?> 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/avatar.png -------------------------------------------------------------------------------- /assets/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/avatar04.png -------------------------------------------------------------------------------- /assets/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/avatar2.png -------------------------------------------------------------------------------- /assets/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/avatar3.png -------------------------------------------------------------------------------- /assets/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/avatar5.png -------------------------------------------------------------------------------- /assets/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /assets/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /assets/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/credit/visa.png -------------------------------------------------------------------------------- /assets/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/icons.png -------------------------------------------------------------------------------- /assets/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/photo1.png -------------------------------------------------------------------------------- /assets/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/photo2.png -------------------------------------------------------------------------------- /assets/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/photo3.jpg -------------------------------------------------------------------------------- /assets/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/photo4.jpg -------------------------------------------------------------------------------- /assets/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /assets/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /assets/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/excel/Data Kota.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/excel/Data Kota.xlsx -------------------------------------------------------------------------------- /assets/excel/Data Pegawai.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/excel/Data Pegawai.xlsx -------------------------------------------------------------------------------- /assets/excel/Data Posisi.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/excel/Data Posisi.xlsx -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/fonts/ionicons.ttf -------------------------------------------------------------------------------- /assets/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/fonts/ionicons.woff -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/profil1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/img/profil1.jpg -------------------------------------------------------------------------------- /assets/img/profil2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/img/profil2.jpg -------------------------------------------------------------------------------- /assets/phpexcel/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | -------------------------------------------------------------------------------- /assets/phpexcel/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT: -------------------------------------------------------------------------------- 1 | Mar 1, 2005 11:15 AST by PM 2 | 3 | + For consistency, renamed Math.php to Maths.java, utils to util, 4 | tests to test, docs to doc - 5 | 6 | + Removed conditional logic from top of Matrix class. 7 | 8 | + Switched to using hypo function in Maths.php for all php-hypot calls. 9 | NOTE TO SELF: Need to make sure that all decompositions have been 10 | switched over to using the bundled hypo. 11 | 12 | Feb 25, 2005 at 10:00 AST by PM 13 | 14 | + Recommend using simpler Error.php instead of JAMA_Error.php but 15 | can be persuaded otherwise. 16 | 17 | -------------------------------------------------------------------------------- /assets/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Maths.php: -------------------------------------------------------------------------------- 1 | abs($b)) { 16 | $r = $b / $a; 17 | $r = abs($a) * sqrt(1 + $r * $r); 18 | } elseif ($b != 0) { 19 | $r = $a / $b; 20 | $r = abs($b) * sqrt(1 + $r * $r); 21 | } else { 22 | $r = 0.0; 23 | } 24 | return $r; 25 | } // function hypo() 26 | 27 | 28 | /** 29 | * Mike Bommarito's version. 30 | * Compute n-dimensional hyotheneuse. 31 | * 32 | function hypot() { 33 | $s = 0; 34 | foreach (func_get_args() as $d) { 35 | if (is_numeric($d)) { 36 | $s += pow($d, 2); 37 | } else { 38 | throw new PHPExcel_Calculation_Exception(JAMAError(ArgumentTypeException)); 39 | } 40 | } 41 | return sqrt($s); 42 | } 43 | */ 44 | -------------------------------------------------------------------------------- /assets/phpexcel/Classes/PHPExcel/locale/en/uk/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version 1.8.0, 2014-03-02 25 | ## 26 | ## 27 | 28 | 29 | ## 30 | ## (For future use) 31 | ## 32 | currencySymbol = £ 33 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/css/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/favicon.ico -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/arrow_down.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/arrow_right.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/class.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/constant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/constant.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/favicon.ico -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/file-php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/file-php.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/file.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/folder.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/function.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/icon-folder-open-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/icon-folder-open-big.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/icon-th-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/icon-th-big.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/interface.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/method.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/ok.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/property.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/search.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/variable.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/view_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/view_source.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/visibility_private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/visibility_private.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/visibility_protected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/visibility_protected.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/icons/visibility_public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/icons/visibility_public.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/grab.cur -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/hand.cur -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.rotate_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.rotate_left.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.rotate_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.rotate_right.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_fit.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_fit2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_fit2.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_in.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_in2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_in2.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_out.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_out2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_out2.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_zero.png -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_zero2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/iviewer/iviewer.zoom_zero2.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/img/loader.gif -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/menu.js: -------------------------------------------------------------------------------- 1 | var timeout = 500; 2 | var closetimer = 0; 3 | var ddmenuitem = 0; 4 | 5 | function menu_open() { 6 | menu_canceltimer(); 7 | menu_close(); 8 | ddmenuitem = $(this).find('ul').css('visibility', 'visible'); 9 | } 10 | 11 | function menu_close() { 12 | if (ddmenuitem) ddmenuitem.css('visibility', 'hidden'); 13 | } 14 | 15 | function menu_timer() { 16 | closetimer = window.setTimeout(menu_close, timeout); 17 | } 18 | 19 | function menu_canceltimer() { 20 | if (closetimer) { 21 | window.clearTimeout(closetimer); 22 | closetimer = null; 23 | } 24 | } 25 | 26 | $(document).ready(function() { 27 | $('#file-nav > li').bind('mouseover', menu_open); 28 | $('#file-nav > li').bind('mouseout', menu_timer); 29 | }); 30 | 31 | document.onclick = menu_close; -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-apollo.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", 2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-go.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n \r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","scm"]); 4 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-lua.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-ml.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-n.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\xa0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, 3 | a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, 4 | a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); 5 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-scala.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-sql.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-tex.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-vb.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/API/js/prettify/lang-wiki.js -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/API/js/prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/Examples/Calculations/index.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | PHPExcel Calculation Function Examples 14 | 15 | 16 | 17 | 18 | PHPExcel Calculation Function Examples'; 21 | 22 | $exampleTypeList = glob('./*',GLOB_ONLYDIR); 23 | 24 | foreach($exampleTypeList as $exampleType) { 25 | 26 | echo '

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

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

(.*?)

#'; 34 | $h2Pattern = '#

(.*?)

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

PHPExcel Reader Example #01

19 |

Simple File Reader using PHPExcel_IOFactory::load()

20 | '; 31 | $objPHPExcel = PHPExcel_IOFactory::load($inputFileName); 32 | 33 | 34 | echo '
'; 35 | 36 | $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); 37 | var_dump($sheetData); 38 | 39 | 40 | ?> 41 | 42 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/Examples/Reader/exampleReader02.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | PHPExcel Reader Example #02 21 | 22 | 23 | 24 | 25 |

PHPExcel Reader Example #02

26 |

Simple File Reader using a Specified Reader

27 | '; 32 | $objReader = new PHPExcel_Reader_Excel5(); 33 | // $objReader = new PHPExcel_Reader_Excel2007(); 34 | // $objReader = new PHPExcel_Reader_Excel2003XML(); 35 | // $objReader = new PHPExcel_Reader_OOCalc(); 36 | // $objReader = new PHPExcel_Reader_SYLK(); 37 | // $objReader = new PHPExcel_Reader_Gnumeric(); 38 | // $objReader = new PHPExcel_Reader_CSV(); 39 | $objPHPExcel = $objReader->load($inputFileName); 40 | 41 | 42 | echo '
'; 43 | 44 | $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); 45 | var_dump($sheetData); 46 | 47 | 48 | ?> 49 | 50 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/Examples/Reader/exampleReader04.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | PHPExcel Reader Example #04 14 | 15 | 16 | 17 | 18 |

PHPExcel Reader Example #04

19 |

Simple File Reader using the PHPExcel_IOFactory to Identify a Reader to Use

20 | '; 33 | 34 | echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with the identified reader type
'; 35 | $objReader = PHPExcel_IOFactory::createReader($inputFileType); 36 | $objPHPExcel = $objReader->load($inputFileName); 37 | 38 | 39 | echo '
'; 40 | 41 | $sheetData = $objPHPExcel->getActiveSheet()->toArray(null,true,true,true); 42 | var_dump($sheetData); 43 | 44 | 45 | ?> 46 | 47 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/Examples/Reader/exampleReader16.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | PHPExcel Reader Example #16 14 | 15 | 16 | 17 | 18 |

PHPExcel Reader Example #16

19 |

Handling Loader Exceptions using Try/Catch

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

(.*?)

#'; 32 | $h2Pattern = '#

(.*?)

#'; 33 | 34 | if (preg_match($h1Pattern, $fileData, $out)) { 35 | $h1Text = $out[1]; 36 | $h2Text = (preg_match($h2Pattern, $fileData, $out)) ? $out[1] : ''; 37 | 38 | echo '',$h1Text,'
'; 39 | if (($h2Text > '') && 40 | (pathinfo($exampleType,PATHINFO_BASENAME) != 'Calculations')) { 41 | echo $h2Text,'
'; 42 | } 43 | } 44 | 45 | } 46 | } 47 | 48 | ?> 49 | 50 | -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/PHPExcel AutoFilter Reference developer documentation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/PHPExcel AutoFilter Reference developer documentation.doc -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/PHPExcel Function Reference developer documentation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/PHPExcel Function Reference developer documentation.doc -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc -------------------------------------------------------------------------------- /assets/phpexcel/Documentation/PHPExcel developer documentation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Documentation/PHPExcel developer documentation.doc -------------------------------------------------------------------------------- /assets/phpexcel/Examples/GnumericTest.gnumeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/GnumericTest.gnumeric -------------------------------------------------------------------------------- /assets/phpexcel/Examples/OOCalcTest.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/OOCalcTest.ods -------------------------------------------------------------------------------- /assets/phpexcel/Examples/Quadratic.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/Quadratic.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/images/officelogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/images/officelogo.jpg -------------------------------------------------------------------------------- /assets/phpexcel/Examples/images/paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/images/paid.png -------------------------------------------------------------------------------- /assets/phpexcel/Examples/images/phpexcel_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/images/phpexcel_logo.gif -------------------------------------------------------------------------------- /assets/phpexcel/Examples/images/termsconditions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/images/termsconditions.jpg -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/26template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/26template.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/27template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/27template.xls -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/30template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/30template.xls -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/31docproperties.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/31docproperties.xls -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/31docproperties.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/31docproperties.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32chartreadwrite.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32chartreadwrite.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32complexChartreadwrite.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32complexChartreadwrite.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaPercentageChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaPercentageChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaPercentageChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaPercentageChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaPercentageChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaPercentageChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaStackedChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaStackedChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaStackedChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaStackedChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteAreaStackedChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteAreaStackedChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarPercentageChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarPercentageChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarPercentageChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarPercentageChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarPercentageChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarPercentageChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarStackedChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarStackedChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarStackedChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarStackedChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBarStackedChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBarStackedChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBubbleChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBubbleChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteBubbleChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteBubbleChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteChartWithImages1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteChartWithImages1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnChart4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnChart4.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnPercentageChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnPercentageChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnPercentageChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnPercentageChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnPercentageChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnPercentageChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnStackedChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnStackedChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnStackedChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnStackedChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteColumnStackedChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteColumnStackedChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteDonutChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteDonutChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteDonutChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteDonutChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteDonutChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteDonutChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteDonutChart4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteDonutChart4.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteDonutChartExploded1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteDonutChartExploded1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteDonutChartMultiseries1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteDonutChartMultiseries1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLineChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLineChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLineChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLineChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLineChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLineChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLineChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLineChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLineChartNoPointMarkers1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLineChartNoPointMarkers1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLinePercentageChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLinePercentageChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLinePercentageChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLinePercentageChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLineStackedChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLineStackedChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteLineStackedChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteLineStackedChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwritePieChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwritePieChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwritePieChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwritePieChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwritePieChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwritePieChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwritePieChart3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwritePieChart3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwritePieChart4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwritePieChart4.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwritePieChartExploded1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwritePieChartExploded1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwritePieChartExploded3D1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwritePieChartExploded3D1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteRadarChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteRadarChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteRadarChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteRadarChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteRadarChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteRadarChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteScatterChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteScatterChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteScatterChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteScatterChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteScatterChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteScatterChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteScatterChart4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteScatterChart4.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteScatterChart5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteScatterChart5.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteStockChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteStockChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteStockChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteStockChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteStockChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteStockChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteStockChart4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteStockChart4.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteSurfaceChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteSurfaceChart1.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteSurfaceChart2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteSurfaceChart2.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteSurfaceChart3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteSurfaceChart3.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/32readwriteSurfaceChart4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/32readwriteSurfaceChart4.xlsx -------------------------------------------------------------------------------- /assets/phpexcel/Examples/templates/36writeLineChart1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/phpexcel/Examples/templates/36writeLineChart1.xlsx -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColReorder/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2015 SpryMedia Limited 2 | http://datatables.net 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColVis/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2015 SpryMedia Limited 2 | http://datatables.net 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/ColVis/css/dataTables.colvis.jqueryui.css: -------------------------------------------------------------------------------- 1 | 2 | button.ColVis_Button, 3 | ul.ColVis_collection li { 4 | padding: 0.5em; 5 | } 6 | 7 | ul.ColVis_collection { 8 | margin: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | z-index: 2002; 12 | } 13 | 14 | ul.ColVis_collection li { 15 | clear: both; 16 | display: block; 17 | text-align: left; 18 | margin: -1px 0 0 0; 19 | } 20 | 21 | ul.ColVis_collection li span { 22 | display: inline-block; 23 | padding-left: 0.5em; 24 | cursor: pointer; 25 | } 26 | 27 | div.ColVis_collectionBackground { 28 | position: fixed; 29 | top: 0; 30 | left: 0; 31 | height: 100%; 32 | width: 100%; 33 | background-color: black; 34 | z-index: 1100; 35 | } 36 | 37 | 38 | div.ColVis_catcher { 39 | position: absolute; 40 | z-index: 1101; 41 | } -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedColumns/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2015 SpryMedia Limited 2 | http://datatables.net 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/Responsive/License.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014-2015 SpryMedia Limited 2 | http://datatables.net 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/Scroller/css/dataTables.scroller.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Namespace: DTS (DataTables Scroller) 4 | */ 5 | 6 | div.DTS tbody th, 7 | div.DTS tbody td { 8 | white-space: nowrap; 9 | } 10 | 11 | div.DTS tbody tr.even { 12 | background-color: white; 13 | } 14 | 15 | div.DTS div.DTS_Loading { 16 | position: absolute; 17 | top: 50%; 18 | left: 50%; 19 | width: 200px; 20 | height: 20px; 21 | margin-top: -20px; 22 | margin-left: -100px; 23 | z-index: 1; 24 | 25 | border: 1px solid #999; 26 | padding: 20px 0; 27 | text-align: center; 28 | background-color: white; 29 | background-color: rgba(255, 255, 255, 0.5); 30 | } 31 | 32 | div.DTS div.dataTables_scrollHead, 33 | div.DTS div.dataTables_scrollFoot { 34 | background-color: white; 35 | } 36 | 37 | div.DTS div.dataTables_scrollBody { 38 | z-index: 2; 39 | } 40 | 41 | div.DTS div.dataTables_scroll { 42 | background: url('../images/loading-background.png') repeat 0 0; 43 | } 44 | 45 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /assets/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /assets/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /assets/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /assets/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/assets/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="الرجاء حذف "+t+" عناصر";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="الرجاء إضافة "+t+" عناصر";return n},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){var t="تستطيع إختيار "+e.maximum+" بنود فقط";return t},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/cs.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím zadejte o jeden znak méně":n<=4?"Prosím zadejte o "+e(n,!0)+" znaky méně":"Prosím zadejte o "+n+" znaků méně"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím zadejte ještě jeden znak":n<=4?"Prosím zadejte ještě další "+e(n,!0)+" znaky":"Prosím zadejte ještě dalších "+n+" znaků"},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky":"Můžete zvolit maximálně "+n+" položek"},noResults:function(){return"Nenalezeny žádné položky"},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/el.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/es.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/km.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/lt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/nl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/pl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ro.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+"sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/ru.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/sk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Loading more results…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/sr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/uk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /assets/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The CodeIgniter framework", 3 | "name": "codeigniter/framework", 4 | "type": "project", 5 | "homepage": "https://codeigniter.com", 6 | "license": "MIT", 7 | "support": { 8 | "forum": "http://forum.codeigniter.com/", 9 | "wiki": "https://github.com/bcit-ci/CodeIgniter/wiki", 10 | "irc": "irc://irc.freenode.net/codeigniter", 11 | "source": "https://github.com/bcit-ci/CodeIgniter" 12 | }, 13 | "require": { 14 | "php": ">=5.2.4" 15 | }, 16 | "suggest": { 17 | "paragonie/random_compat": "Provides better randomness in PHP 5.x" 18 | }, 19 | "require-dev": { 20 | "mikey179/vfsStream": "1.1.*" 21 | } 22 | } -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 - 2016, British Columbia Institute of Technology 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auwfar/AdminLTE-CRUD-With-Codeigniter/2dd9cda760aee0af6b864ab67fc909522f843716/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | --------------------------------------------------------------------------------