├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── admin ├── .gitignore ├── .htaccess ├── app │ ├── config │ │ ├── .htaccess │ │ ├── application.ini │ │ ├── communication.php │ │ ├── ldap.ini │ │ ├── log.php │ │ ├── permission.php │ │ ├── sistema.php │ │ └── unit_database.php │ ├── control │ │ ├── .htaccess │ │ ├── Dashboard.class.php │ │ ├── MessageList.class.php │ │ ├── NotificationList.class.php │ │ ├── SearchBox.class.php │ │ ├── SearchInputBox.class.php │ │ ├── admin │ │ │ ├── GeradorSenhaForm.php │ │ │ ├── LoginForm.class.php │ │ │ ├── SystemAdministrationDashboard.class.php │ │ │ ├── SystemDataBrowser.class.php │ │ │ ├── SystemDatabaseExplorer.class.php │ │ │ ├── SystemGroupForm.class.php │ │ │ ├── SystemGroupList.class.php │ │ │ ├── SystemMenuEditor.class.php │ │ │ ├── SystemModulesCheckView.class.php │ │ │ ├── SystemPHPErrorLogView.class.php │ │ │ ├── SystemPHPInfoView.class.php │ │ │ ├── SystemPasswordResetForm.class.php │ │ │ ├── SystemPreferenceForm.class.php │ │ │ ├── SystemProfileForm.class.php │ │ │ ├── SystemProfileView.class.php │ │ │ ├── SystemProgramForm.class.php │ │ │ ├── SystemProgramList.class.php │ │ │ ├── SystemRegistrationForm.class.php │ │ │ ├── SystemRequestPasswordResetForm.class.php │ │ │ ├── SystemSQLPanel.class.php │ │ │ ├── SystemSupportForm.class.php │ │ │ ├── SystemTableList.class.php │ │ │ ├── SystemUnitForm.class.php │ │ │ ├── SystemUnitList.class.php │ │ │ ├── SystemUserForm.class.php │ │ │ └── SystemUserList.class.php │ │ ├── blog │ │ │ ├── BlogCategoriaForm.class.php │ │ │ ├── BlogCategoriaList.class.php │ │ │ ├── BlogPostForm.class.php │ │ │ └── BlogPostList.class.php │ │ ├── communication │ │ │ ├── SystemDocumentCategoryFormList.class.php │ │ │ ├── SystemDocumentForm.class.php │ │ │ ├── SystemDocumentList.class.php │ │ │ ├── SystemDocumentUploadForm.class.php │ │ │ ├── SystemMessageForm.class.php │ │ │ ├── SystemMessageFormView.class.php │ │ │ ├── SystemMessageList.class.php │ │ │ ├── SystemNotificationFormView.class.php │ │ │ ├── SystemNotificationList.class.php │ │ │ └── SystemSharedDocumentList.class.php │ │ ├── configuracoes │ │ │ ├── LinkForm.class.php │ │ │ ├── LinkList.class.php │ │ │ ├── PreferenciasForm.class.php │ │ │ ├── RobotsForm.php │ │ │ ├── TipoForm.class.php │ │ │ └── TipoList.class.php │ │ ├── estatisticas │ │ │ ├── ClickList.class.php │ │ │ ├── TrafegoCidadeView.class.php │ │ │ ├── TrafegoDiaView.class.php │ │ │ ├── TrafegoHoraView.class.php │ │ │ ├── TrafegoNavegadorView.class.php │ │ │ ├── TrafegoPaginaView.class.php │ │ │ ├── TrafegoPaisView.class.php │ │ │ ├── TrafegoPlataformaView.class.php │ │ │ ├── TrafegoReferenciaView.class.php │ │ │ ├── TrafegoRegiaoView.class.php │ │ │ └── TrafegoTotaisView.class.php │ │ ├── gestao │ │ │ ├── ArquivosFormView.php │ │ │ ├── ArquivosList.php │ │ │ ├── FormMensagemFormView.php │ │ │ ├── FormMensagemList.php │ │ │ ├── FormularioForm.php │ │ │ ├── FormularioList.php │ │ │ ├── MidiaForm.class.php │ │ │ ├── MidiaFormView.php │ │ │ ├── MidiaList.class.php │ │ │ ├── ModuloForm.class.php │ │ │ ├── ModuloList.class.php │ │ │ ├── SelecaoImagem.php │ │ │ ├── TemplateFile.class.php │ │ │ ├── TemplateFileForm.class.php │ │ │ ├── TemplateFileView.php │ │ │ ├── TemplateForm.class.php │ │ │ └── TemplateList.class.php │ │ ├── log │ │ │ ├── SystemAccessLogList.class.php │ │ │ ├── SystemChangeLogView.class.php │ │ │ ├── SystemLogDashboard.class.php │ │ │ ├── SystemRequestLogList.class.php │ │ │ ├── SystemRequestLogView.class.php │ │ │ ├── SystemSessionDumpView.class.php │ │ │ └── SystemSqlLogList.class.php │ │ └── site │ │ │ ├── ArquivoFormList.class.php │ │ │ ├── CategoriaForm.class.php │ │ │ ├── CategoriaList.class.php │ │ │ ├── MenuForm.class.php │ │ │ ├── MenuList.class.php │ │ │ ├── ModeloHtmlForm.php │ │ │ ├── ModeloHtmlList.php │ │ │ ├── PaginaForm.class.php │ │ │ └── PaginaList.class.php │ ├── database │ │ ├── .htaccess │ │ ├── inFORT-CMS.mwb │ │ ├── inFORT-CMS.mwb.bak │ │ ├── infortcms.db │ │ ├── infortcms.sql │ │ └── log.db │ ├── images │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── logo-infort.svg │ │ ├── logo-painel-branco.svg │ │ ├── logo-painel.svg │ │ ├── logo.svg │ │ ├── photos │ │ │ ├── admin.jpg │ │ │ └── user.jpg │ │ └── user.webp │ ├── lib │ │ ├── barcode │ │ │ └── AdiantiBarcodeDocumentGenerator.php │ │ ├── html │ │ │ ├── AdiantiHTMLDocumentParser.php │ │ │ └── PHP_ICO.php │ │ ├── include │ │ │ ├── admin-all.js │ │ │ ├── admin-all.min.js │ │ │ ├── admin.css │ │ │ ├── admin.js │ │ │ ├── admin.min.css │ │ │ ├── application.js │ │ │ ├── circle │ │ │ │ ├── circle.css │ │ │ │ └── circle.js │ │ │ ├── codemirror │ │ │ │ ├── addon │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display │ │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ └── rulers.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ ├── fold │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ ├── hint │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ ├── html-lint.js │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ ├── runmode │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ ├── search │ │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ ├── tern │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ └── worker.js │ │ │ │ │ └── wrap │ │ │ │ │ │ └── hardwrap.js │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── keymap │ │ │ │ │ ├── emacs.js │ │ │ │ │ ├── sublime.js │ │ │ │ │ └── vim.js │ │ │ │ ├── mode │ │ │ │ │ ├── apl │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asciiarmor │ │ │ │ │ │ ├── asciiarmor.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asn.1 │ │ │ │ │ │ ├── asn.1.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── brainfuck │ │ │ │ │ │ ├── brainfuck.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scala.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── clojure │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── cmake.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── crystal │ │ │ │ │ │ ├── crystal.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── gss.html │ │ │ │ │ │ ├── gss_test.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── d │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── dart │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── django │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── dtd │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── ebnf │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── elm │ │ │ │ │ │ ├── elm.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── factor │ │ │ │ │ │ ├── factor.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fcl │ │ │ │ │ │ ├── fcl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forth │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haskell-literate │ │ │ │ │ │ ├── haskell-literate.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haskell │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── http │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── idl │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── jsx │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jsx.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── julia │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── livescript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── mathematica │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mathematica.js │ │ │ │ │ ├── mbox │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mbox.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── mscgen │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── mscgen.js │ │ │ │ │ │ ├── mscgen_test.js │ │ │ │ │ │ ├── msgenny_test.js │ │ │ │ │ │ └── xu_test.js │ │ │ │ │ ├── mumps │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mumps.js │ │ │ │ │ ├── nginx │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── nsis │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nsis.js │ │ │ │ │ ├── ntriples │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── octave.js │ │ │ │ │ ├── oz │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── oz.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── powershell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── protobuf.js │ │ │ │ │ ├── pug │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pug.js │ │ │ │ │ ├── puppet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── q │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sas │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sas.js │ │ │ │ │ ├── sass │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── sass.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── solr │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── soy.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── stylus │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── swift │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── swift.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── tcl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── troff │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── troff.js │ │ │ │ │ ├── ttcn-cfg │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ │ ├── ttcn │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ttcn.js │ │ │ │ │ ├── turtle │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── twig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── twig.js │ │ │ │ │ ├── vb │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── vhdl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vhdl.js │ │ │ │ │ ├── vue │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vue.js │ │ │ │ │ ├── wast │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── wast.js │ │ │ │ │ ├── webidl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── webidl.js │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yacas │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yacas.js │ │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ │ ├── yaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── z80.js │ │ │ │ └── theme │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ ├── abcdef.css │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── ayu-dark.css │ │ │ │ │ ├── ayu-mirage.css │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ ├── base16-light.css │ │ │ │ │ ├── bespin.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── colorforth.css │ │ │ │ │ ├── darcula.css │ │ │ │ │ ├── dracula.css │ │ │ │ │ ├── duotone-dark.css │ │ │ │ │ ├── duotone-light.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── gruvbox-dark.css │ │ │ │ │ ├── hopscotch.css │ │ │ │ │ ├── icecoder.css │ │ │ │ │ ├── idea.css │ │ │ │ │ ├── isotope.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ ├── lucario.css │ │ │ │ │ ├── material-darker.css │ │ │ │ │ ├── material-ocean.css │ │ │ │ │ ├── material-palenight.css │ │ │ │ │ ├── material.css │ │ │ │ │ ├── mbo.css │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ ├── midnight.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── moxer.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── nord.css │ │ │ │ │ ├── oceanic-next.css │ │ │ │ │ ├── panda-syntax.css │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ ├── railscasts.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── seti.css │ │ │ │ │ ├── shadowfox.css │ │ │ │ │ ├── solarized.css │ │ │ │ │ ├── ssms.css │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── ttcn.css │ │ │ │ │ ├── twilight.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ ├── xq-light.css │ │ │ │ │ ├── yeti.css │ │ │ │ │ ├── yonce.css │ │ │ │ │ └── zenburn.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── slim │ │ │ │ ├── Slim.php │ │ │ │ ├── async-remove.php │ │ │ │ ├── async.php │ │ │ │ ├── fetch.php │ │ │ │ ├── slim.jquery.min.js │ │ │ │ ├── slim.kickstart.min.js │ │ │ │ ├── slim.min.css │ │ │ │ └── sync.php │ │ │ └── taccordion │ │ │ │ ├── taccordion.css │ │ │ │ └── taccordion.js │ │ ├── menu │ │ │ ├── AdiantiMenuBuilder.php │ │ │ ├── ApplicationMenuEditorItemRenderer.php │ │ │ └── ApplicationMenuEditorRenderer.php │ │ ├── reports │ │ │ ├── ITableWriter.iface.php │ │ │ ├── TAdiantiElement.class.php │ │ │ ├── TAdiantiStyle.class.php │ │ │ ├── TAdiantiTable.class.php │ │ │ ├── TAdiantiTableCell.class.php │ │ │ ├── TAdiantiTableRow.class.php │ │ │ ├── TTableWriterHTML.class.php │ │ │ ├── TTableWriterPDF.class.php │ │ │ ├── TTableWriterRTF.class.php │ │ │ └── TTableWriterXLS.class.php │ │ ├── trait │ │ │ └── AppFileSaveTrait.php │ │ ├── util │ │ │ ├── .htaccess │ │ │ ├── AdiantiRouteTranslator.php │ │ │ ├── AdiantiUIBuilder.php │ │ │ ├── ApplicationTranslator.class.php │ │ │ ├── MailService.class.php │ │ │ ├── TApplicationFileSessionHandler.class.php │ │ │ ├── TGeoPlugin.class.php │ │ │ ├── THelper.class.php │ │ │ ├── TMail.class.php │ │ │ ├── TModal.class.php │ │ │ ├── TParser.class.php │ │ │ ├── TPass.class.php │ │ │ ├── TStats.class.php │ │ │ ├── TTransformers.class.php │ │ │ └── TVideoModal.class.php │ │ ├── validator │ │ │ ├── TDateValidator.class.php │ │ │ └── TUniqueValidator.class.php │ │ └── widget │ │ │ ├── TAccordion.class.php │ │ │ ├── TKnob.class.php │ │ │ ├── TPicture.php │ │ │ ├── TSlim.class.php │ │ │ └── TTextSourceCode.class.php │ ├── model │ │ ├── .htaccess │ │ ├── admin │ │ │ ├── .htaccess │ │ │ ├── SystemGroup.class.php │ │ │ ├── SystemGroupProgram.class.php │ │ │ ├── SystemPermission.class.php │ │ │ ├── SystemPreference.class.php │ │ │ ├── SystemProgram.class.php │ │ │ ├── SystemUnit.class.php │ │ │ ├── SystemUser.class.php │ │ │ ├── SystemUserGroup.class.php │ │ │ ├── SystemUserProgram.class.php │ │ │ └── SystemUserUnit.class.php │ │ ├── communication │ │ │ ├── SystemDocument.class.php │ │ │ ├── SystemDocumentCategory.class.php │ │ │ ├── SystemDocumentGroup.class.php │ │ │ ├── SystemDocumentUser.class.php │ │ │ ├── SystemMessage.class.php │ │ │ └── SystemNotification.class.php │ │ ├── configuracoes │ │ │ ├── Link.class.php │ │ │ ├── Posicao.class.php │ │ │ └── Tipo.class.php │ │ ├── estatisticas │ │ │ ├── Click.class.php │ │ │ └── Trafego.class.php │ │ ├── gestao │ │ │ ├── Arquivo.class.php │ │ │ ├── FormMensagem.class.php │ │ │ ├── Formulario.class.php │ │ │ ├── Midia.class.php │ │ │ ├── Modulo.class.php │ │ │ └── Template.class.php │ │ ├── log │ │ │ ├── SystemAccessLog.class.php │ │ │ ├── SystemChangeLog.class.php │ │ │ ├── SystemChangeLogTrait.php │ │ │ ├── SystemRequestLog.class.php │ │ │ └── SystemSqlLog.class.php │ │ └── site │ │ │ ├── Artigo.class.php │ │ │ ├── Comentario.class.php │ │ │ ├── FormMensagem.class.php │ │ │ ├── Formulario.class.php │ │ │ ├── Menu.class.php │ │ │ └── ModeloHTML.php │ ├── output │ │ └── .gitignore │ ├── reports │ │ └── .htaccess │ ├── resources │ │ ├── checkbox.html │ │ ├── google_area_chart.html │ │ ├── google_bar_chart.html │ │ ├── google_column_chart.html │ │ ├── google_line_chart.html │ │ ├── google_pie_chart.html │ │ ├── info-box.html │ │ ├── public.html │ │ ├── styles-print.html │ │ ├── system_admin_dashboard.html │ │ ├── system_database_browser.html │ │ ├── system_information.html │ │ ├── system_input_fuse_search.html │ │ ├── system_log_dashboard.html │ │ ├── system_message_folders.html │ │ ├── system_message_form_view.html │ │ ├── system_notification_view.html │ │ ├── system_profile.html │ │ ├── system_reset_password.html │ │ ├── system_welcome_en.html │ │ ├── system_welcome_es.html │ │ ├── system_welcome_pt.html │ │ └── systemmoduleformview.html │ ├── service │ │ ├── auth │ │ │ ├── ApplicationAuthenticationRestService.php │ │ │ ├── ApplicationAuthenticationService.php │ │ │ └── LdapAuthenticationService.php │ │ ├── cli │ │ │ └── SystemUserCliService.class.php │ │ ├── log │ │ │ ├── SystemAccessLogService.class.php │ │ │ ├── SystemChangeLogService.class.php │ │ │ ├── SystemRequestLogService.class.php │ │ │ └── SystemSqlLogService.class.php │ │ ├── rest │ │ │ ├── SystemUserGroupRestService.class.php │ │ │ └── SystemUserRestService.class.php │ │ └── system │ │ │ ├── SystemDatabaseInformationService.class.php │ │ │ └── SystemDocumentUploaderService.class.php │ ├── templates │ │ ├── theme3 │ │ │ ├── application.css │ │ │ ├── css │ │ │ │ ├── AdminLTE.css │ │ │ │ ├── AdminLTE.min.css │ │ │ │ ├── common.css │ │ │ │ ├── custom.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-grey.css │ │ │ │ │ ├── skin-blue-grey.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 │ │ │ │ ├── default-50x50.gif │ │ │ │ └── icons.png │ │ │ ├── js │ │ │ │ ├── app.js │ │ │ │ ├── app.min.js │ │ │ │ ├── custom.js │ │ │ │ ├── demo.js │ │ │ │ └── pages │ │ │ │ │ ├── dashboard.js │ │ │ │ │ └── dashboard2.js │ │ │ ├── layout.html │ │ │ ├── libraries.html │ │ │ ├── login.html │ │ │ └── public.html │ │ └── theme4 │ │ │ ├── application.css │ │ │ ├── css │ │ │ ├── common.css │ │ │ ├── custom.css │ │ │ ├── fonts │ │ │ │ ├── 2fcrYFNaTjcS6g4U3t-Y5UEw0lE80llgEseQY3FEmqw.woff2 │ │ │ │ ├── 77FXFjRbGzN4aCrSFhlh3oX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ │ ├── 97uahxiqZRoncBaCEI3aW4X0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ │ ├── Ks_cVxiCiwUWVsFWFA3Bjn-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ │ ├── NJ4vxlgWwWbEsv18dAhqnn-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ │ ├── PwZc-YbIL414wB9rB1IAPYX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ │ ├── UX6i4JxQDm3fVTc1CPuwqoX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ │ ├── _VYFx-s824kXq_Ul2BHqYH-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ │ ├── d-6IYplOFocCacKzxwXSOJBw1xU1rKptJj_0jans920.woff2 │ │ │ │ ├── isZ-wbCXNKAbnjo6_TwHToX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ │ ├── jSN2CGVDbcVyCnfJfjSdfIX0hVgzZQUfRDuZrPvH3D8.woff2 │ │ │ │ ├── oMMgfZMQthOryQo9n22dcuvvDin1pK8aKteLpeZ5c0A.woff2 │ │ │ │ ├── sTdaA6j0Psb920Vjv-mrzH-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ │ ├── tnj4SB6DNbdaQnsM8CFqBX-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ │ └── uYECMKoHcO9x1wdmbyHIm3-_kf6ByYO6CLYdB4HQE-Y.woff2 │ │ │ ├── materialize.css │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── sweetalert.css │ │ │ └── themes │ │ │ │ ├── all-themes.css │ │ │ │ ├── all-themes.min.css │ │ │ │ ├── theme-amber.css │ │ │ │ ├── theme-amber.min.css │ │ │ │ ├── theme-black.css │ │ │ │ ├── theme-black.min.css │ │ │ │ ├── theme-blue-grey.css │ │ │ │ ├── theme-blue-grey.min.css │ │ │ │ ├── theme-blue.css │ │ │ │ ├── theme-blue.min.css │ │ │ │ ├── theme-brown.css │ │ │ │ ├── theme-brown.min.css │ │ │ │ ├── theme-cyan.css │ │ │ │ ├── theme-cyan.min.css │ │ │ │ ├── theme-deep-orange.css │ │ │ │ ├── theme-deep-orange.min.css │ │ │ │ ├── theme-deep-purple.css │ │ │ │ ├── theme-deep-purple.min.css │ │ │ │ ├── theme-green.css │ │ │ │ ├── theme-green.min.css │ │ │ │ ├── theme-grey.css │ │ │ │ ├── theme-grey.min.css │ │ │ │ ├── theme-indigo.css │ │ │ │ ├── theme-indigo.min.css │ │ │ │ ├── theme-light-blue.css │ │ │ │ ├── theme-light-blue.min.css │ │ │ │ ├── theme-lime.css │ │ │ │ ├── theme-lime.min.css │ │ │ │ ├── theme-orange.css │ │ │ │ ├── theme-orange.min.css │ │ │ │ ├── theme-pink.css │ │ │ │ ├── theme-pink.min.css │ │ │ │ ├── theme-purple.css │ │ │ │ ├── theme-purple.min.css │ │ │ │ ├── theme-red.css │ │ │ │ ├── theme-red.min.css │ │ │ │ ├── theme-teal.css │ │ │ │ ├── theme-teal.min.css │ │ │ │ ├── theme-yellow.css │ │ │ │ └── theme-yellow.min.css │ │ │ ├── images │ │ │ ├── animation-bg.jpg │ │ │ ├── screenshot.png │ │ │ ├── thumbs-up.png │ │ │ ├── user-img-background.jpg │ │ │ ├── user.jpg │ │ │ ├── user.png │ │ │ └── user.webp │ │ │ ├── js │ │ │ ├── admin-login.js │ │ │ ├── admin.js │ │ │ ├── custom.js │ │ │ ├── demo.js │ │ │ ├── helpers.js │ │ │ ├── pages │ │ │ │ ├── cards │ │ │ │ │ ├── basic.js │ │ │ │ │ └── colored.js │ │ │ │ ├── charts │ │ │ │ │ ├── chartjs.js │ │ │ │ │ ├── flot.js │ │ │ │ │ ├── jquery-knob.js │ │ │ │ │ ├── morris.js │ │ │ │ │ └── sparkline.js │ │ │ │ ├── examples │ │ │ │ │ ├── forgot-password.js │ │ │ │ │ ├── sign-in.js │ │ │ │ │ └── sign-up.js │ │ │ │ ├── forms │ │ │ │ │ ├── advanced-form-elements.js │ │ │ │ │ ├── basic-form-elements.js │ │ │ │ │ ├── editors.js │ │ │ │ │ ├── form-validation.js │ │ │ │ │ └── form-wizard.js │ │ │ │ ├── index.js │ │ │ │ ├── maps │ │ │ │ │ ├── google.js │ │ │ │ │ └── jvectormap.js │ │ │ │ ├── medias │ │ │ │ │ └── image-gallery.js │ │ │ │ ├── tables │ │ │ │ │ ├── editable-table.js │ │ │ │ │ └── jquery-datatable.js │ │ │ │ ├── ui │ │ │ │ │ ├── animations.js │ │ │ │ │ ├── dialogs.js │ │ │ │ │ ├── modals.js │ │ │ │ │ ├── notifications.js │ │ │ │ │ ├── range-sliders.js │ │ │ │ │ ├── sortable-nestable.js │ │ │ │ │ └── tooltips-popovers.js │ │ │ │ └── widgets │ │ │ │ │ └── infobox │ │ │ │ │ ├── infobox-1.js │ │ │ │ │ ├── infobox-2.js │ │ │ │ │ ├── infobox-3.js │ │ │ │ │ ├── infobox-4.js │ │ │ │ │ └── infobox-5.js │ │ │ ├── script.js │ │ │ └── sweetalert.min.js │ │ │ ├── layout.html │ │ │ ├── libraries.html │ │ │ ├── login.html │ │ │ ├── plugins │ │ │ ├── animate-css │ │ │ │ ├── animate.css │ │ │ │ └── animate.min.css │ │ │ ├── bootstrap-material-datetimepicker │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── css │ │ │ │ │ └── bootstrap-material-datetimepicker.css │ │ │ │ ├── font │ │ │ │ │ ├── Material-Design-Icons.eot │ │ │ │ │ ├── Material-Design-Icons.svg │ │ │ │ │ ├── Material-Design-Icons.ttf │ │ │ │ │ ├── Material-Design-Icons.woff │ │ │ │ │ └── Material-Design-Icons.woff2 │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ └── bootstrap-material-datetimepicker.js │ │ │ │ └── package.json │ │ │ ├── jquery-slimscroll │ │ │ │ └── jquery.slimscroll.js │ │ │ ├── moment │ │ │ │ └── moment-with-locales.min.js │ │ │ └── node-waves │ │ │ │ ├── waves.css │ │ │ │ ├── waves.js │ │ │ │ ├── waves.min.css │ │ │ │ ├── waves.min.js │ │ │ │ └── waves.min.js.map │ │ │ └── public.html │ └── view │ │ └── .htaccess ├── cmd.php ├── composer.json ├── composer.lock ├── download.php ├── engine.php ├── files │ ├── .htaccess │ └── documents │ │ ├── 1 │ │ └── amostra.pdf │ │ └── .htaccess ├── htaccess-dist ├── index.php ├── init.php ├── lib │ ├── VERSION │ ├── adianti │ │ ├── LICENSE │ │ ├── base │ │ │ ├── .htaccess │ │ │ ├── AdiantiFileSaveTrait.php │ │ │ ├── AdiantiMasterDetailTrait.php │ │ │ ├── AdiantiStandardCollectionTrait.php │ │ │ ├── AdiantiStandardControlTrait.php │ │ │ ├── AdiantiStandardFormListTrait.php │ │ │ ├── AdiantiStandardFormTrait.php │ │ │ ├── AdiantiStandardListTrait.php │ │ │ ├── TStandardForm.php │ │ │ ├── TStandardFormList.php │ │ │ ├── TStandardList.php │ │ │ └── TStandardSeek.php │ │ ├── control │ │ │ ├── .htaccess │ │ │ ├── TAction.php │ │ │ ├── TPage.php │ │ │ └── TWindow.php │ │ ├── core │ │ │ ├── AdiantiApplicationConfig.php │ │ │ ├── AdiantiApplicationLoader.php │ │ │ ├── AdiantiClassMap.php │ │ │ ├── AdiantiCoreApplication.php │ │ │ ├── AdiantiCoreLoader.php │ │ │ ├── AdiantiCoreTranslator.php │ │ │ └── AdiantiTemplateParser.php │ │ ├── database │ │ │ ├── .htaccess │ │ │ ├── TConnection.php │ │ │ ├── TCriteria.php │ │ │ ├── TDatabase.php │ │ │ ├── TExpression.php │ │ │ ├── TFilter.php │ │ │ ├── TRecord.php │ │ │ ├── TRepository.php │ │ │ ├── TSqlDelete.php │ │ │ ├── TSqlInsert.php │ │ │ ├── TSqlMultiInsert.php │ │ │ ├── TSqlSelect.php │ │ │ ├── TSqlStatement.php │ │ │ ├── TSqlUpdate.php │ │ │ └── TTransaction.php │ │ ├── http │ │ │ └── AdiantiHttpClient.php │ │ ├── include │ │ │ ├── adianti.css │ │ │ ├── adianti.js │ │ │ ├── adianti.min.css │ │ │ ├── adianti.min.js │ │ │ ├── components.css │ │ │ ├── components.js │ │ │ ├── components.min.css │ │ │ ├── components.min.js │ │ │ ├── fonts │ │ │ │ └── opensans │ │ │ │ │ └── v13 │ │ │ │ │ └── cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2 │ │ │ ├── talert │ │ │ │ └── talert.css │ │ │ ├── tbarcodeinputreader │ │ │ │ ├── tbarcodeinputreader.css │ │ │ │ └── tbarcodeinputreader.js │ │ │ ├── tbreadcrumb │ │ │ │ ├── footer-arrow.png │ │ │ │ └── tbreadcrumb.css │ │ │ ├── tbutton │ │ │ │ └── tbutton.js │ │ │ ├── tcalendar │ │ │ │ └── tcalendar.css │ │ │ ├── tcard │ │ │ │ └── tcard.css │ │ │ ├── tcheckgroup │ │ │ │ └── tcheckgroup.js │ │ │ ├── tchecklist │ │ │ │ └── tchecklist.js │ │ │ ├── tcolor │ │ │ │ ├── tcolor.css │ │ │ │ └── tcolor.js │ │ │ ├── tcombo │ │ │ │ ├── tcombo.css │ │ │ │ └── tcombo.js │ │ │ ├── tdatagrid │ │ │ │ ├── tdatagrid.css │ │ │ │ └── tdatagrid.js │ │ │ ├── tdate │ │ │ │ ├── tdate.css │ │ │ │ └── tdate.js │ │ │ ├── tdatetime │ │ │ │ ├── tdatetime.css │ │ │ │ └── tdatetime.js │ │ │ ├── tdbentry │ │ │ │ └── tdbentry.js │ │ │ ├── tdbmultisearch │ │ │ │ └── tdbmultisearch.js │ │ │ ├── tdbuniquesearch │ │ │ │ └── tdbuniquesearch.js │ │ │ ├── tdialog │ │ │ │ ├── tdialog.css │ │ │ │ └── tdialog.js │ │ │ ├── tentry │ │ │ │ └── tentry.js │ │ │ ├── texpander │ │ │ │ └── texpander.js │ │ │ ├── tfield │ │ │ │ ├── tfield.css │ │ │ │ └── tfield.js │ │ │ ├── tfieldlist │ │ │ │ ├── tfieldlist.css │ │ │ │ └── tfieldlist.js │ │ │ ├── tfile │ │ │ │ ├── tfile.css │ │ │ │ └── tfile.js │ │ │ ├── tform │ │ │ │ ├── tform.css │ │ │ │ └── tform.js │ │ │ ├── tframe │ │ │ │ └── tframe.css │ │ │ ├── tfullcalendar │ │ │ │ └── tfullcalendar.js │ │ │ ├── thtmleditor │ │ │ │ └── thtmleditor.js │ │ │ ├── ticon │ │ │ │ ├── ticon.css │ │ │ │ └── ticon.js │ │ │ ├── ticonview │ │ │ │ ├── ticonview.css │ │ │ │ └── ticonview.js │ │ │ ├── timagecropper │ │ │ │ ├── timagecropper.css │ │ │ │ └── timagecropper.js │ │ │ ├── tjquerydialog │ │ │ │ └── tjquerydialog.js │ │ │ ├── tkanban │ │ │ │ ├── tkanban.css │ │ │ │ └── tkanban.js │ │ │ ├── tlabel │ │ │ │ └── tlabel.css │ │ │ ├── tmenu │ │ │ │ └── tmenu.css │ │ │ ├── tmenubar │ │ │ │ └── tmenubar.js │ │ │ ├── tmultientry │ │ │ │ └── tmultientry.js │ │ │ ├── tmultifile │ │ │ │ └── tmultifile.js │ │ │ ├── tmultisearch │ │ │ │ ├── tmultisearch.css │ │ │ │ └── tmultisearch.js │ │ │ ├── tnotebook │ │ │ │ └── tnotebook.css │ │ │ ├── tooltip │ │ │ │ └── tooltip.css │ │ │ ├── tpagenavigation │ │ │ │ └── tpagenavigation.css │ │ │ ├── tpagestep │ │ │ │ └── tpagestep.css │ │ │ ├── tqrcodeinputreader │ │ │ │ ├── tqrcodeinputreader.css │ │ │ │ └── tqrcodeinputreader.js │ │ │ ├── tradiogroup │ │ │ │ └── tradiogroup.js │ │ │ ├── tscroll │ │ │ │ └── tscroll.css │ │ │ ├── tseekbutton │ │ │ │ ├── tseekbutton.css │ │ │ │ └── tseekbutton.js │ │ │ ├── tselect │ │ │ │ ├── tselect.css │ │ │ │ └── tselect.js │ │ │ ├── tslider │ │ │ │ ├── tslider.css │ │ │ │ └── tslider.js │ │ │ ├── tsortlist │ │ │ │ ├── tsortlist.css │ │ │ │ └── tsortlist.js │ │ │ ├── tsourcecode │ │ │ │ └── tsourcecode.css │ │ │ ├── tspinner │ │ │ │ ├── tspinner.css │ │ │ │ └── tspinner.js │ │ │ ├── ttable │ │ │ │ └── ttable.js │ │ │ ├── ttext │ │ │ │ └── ttext.css │ │ │ ├── ttimeline │ │ │ │ └── ttimeline.css │ │ │ ├── ttreeview │ │ │ │ └── ttreeview.js │ │ │ └── twindow │ │ │ │ └── twindow.css │ │ ├── log │ │ │ ├── AdiantiLoggerInterface.php │ │ │ ├── TLogger.php │ │ │ ├── TLoggerHTML.php │ │ │ ├── TLoggerSTD.php │ │ │ ├── TLoggerTXT.php │ │ │ └── TLoggerXML.php │ │ ├── registry │ │ │ ├── AdiantiRegistryInterface.php │ │ │ ├── TAPCache.php │ │ │ └── TSession.php │ │ ├── service │ │ │ ├── AdiantiAutocompleteService.php │ │ │ ├── AdiantiMultiSearchService.php │ │ │ ├── AdiantiRecordService.php │ │ │ └── AdiantiUploaderService.php │ │ ├── util │ │ │ ├── AdiantiStringConversion.php │ │ │ └── AdiantiTemplateHandler.php │ │ ├── validator │ │ │ ├── TCNPJValidator.php │ │ │ ├── TCPFValidator.php │ │ │ ├── TEmailValidator.php │ │ │ ├── TFieldValidator.php │ │ │ ├── TMaxLengthValidator.php │ │ │ ├── TMaxValueValidator.php │ │ │ ├── TMinLengthValidator.php │ │ │ ├── TMinValueValidator.php │ │ │ ├── TNumericValidator.php │ │ │ ├── TRequiredListValidator.php │ │ │ └── TRequiredValidator.php │ │ ├── widget │ │ │ ├── .htaccess │ │ │ ├── base │ │ │ │ ├── TElement.php │ │ │ │ ├── TScript.php │ │ │ │ └── TStyle.php │ │ │ ├── container │ │ │ │ ├── TExpander.php │ │ │ │ ├── TFrame.php │ │ │ │ ├── THBox.php │ │ │ │ ├── TJQueryDialog.php │ │ │ │ ├── TNotebook.php │ │ │ │ ├── TPanel.php │ │ │ │ ├── TPanelGroup.php │ │ │ │ ├── TScroll.php │ │ │ │ ├── TTable.php │ │ │ │ ├── TTableCell.php │ │ │ │ ├── TTableRow.php │ │ │ │ └── TVBox.php │ │ │ ├── datagrid │ │ │ │ ├── TDataGrid.php │ │ │ │ ├── TDataGridAction.php │ │ │ │ ├── TDataGridActionGroup.php │ │ │ │ ├── TDataGridColumn.php │ │ │ │ └── TPageNavigation.php │ │ │ ├── dialog │ │ │ │ ├── TAlert.php │ │ │ │ ├── TInputDialog.php │ │ │ │ ├── TMessage.php │ │ │ │ ├── TQuestion.php │ │ │ │ └── TToast.php │ │ │ ├── form │ │ │ │ ├── AdiantiFormInterface.php │ │ │ │ ├── AdiantiWidgetInterface.php │ │ │ │ ├── TBarCodeInputReader.php │ │ │ │ ├── TButton.php │ │ │ │ ├── TCheckButton.php │ │ │ │ ├── TCheckGroup.php │ │ │ │ ├── TCheckList.php │ │ │ │ ├── TColor.php │ │ │ │ ├── TCombo.php │ │ │ │ ├── TDate.php │ │ │ │ ├── TDateTime.php │ │ │ │ ├── TEntry.php │ │ │ │ ├── TField.php │ │ │ │ ├── TFieldList.php │ │ │ │ ├── TFile.php │ │ │ │ ├── TForm.php │ │ │ │ ├── TFormSeparator.php │ │ │ │ ├── THidden.php │ │ │ │ ├── THtmlEditor.php │ │ │ │ ├── TIcon.php │ │ │ │ ├── TImageCapture.php │ │ │ │ ├── TImageCropper.php │ │ │ │ ├── TLabel.php │ │ │ │ ├── TMultiEntry.php │ │ │ │ ├── TMultiFile.php │ │ │ │ ├── TMultiSearch.php │ │ │ │ ├── TNumeric.php │ │ │ │ ├── TPassword.php │ │ │ │ ├── TQRCodeInputReader.php │ │ │ │ ├── TRadioButton.php │ │ │ │ ├── TRadioGroup.php │ │ │ │ ├── TSeekButton.php │ │ │ │ ├── TSelect.php │ │ │ │ ├── TSlider.php │ │ │ │ ├── TSortList.php │ │ │ │ ├── TSpinner.php │ │ │ │ ├── TText.php │ │ │ │ ├── TTime.php │ │ │ │ └── TUniqueSearch.php │ │ │ ├── menu │ │ │ │ ├── TMenu.php │ │ │ │ ├── TMenuBar.php │ │ │ │ ├── TMenuItem.php │ │ │ │ └── TMenuParser.php │ │ │ ├── template │ │ │ │ └── THtmlRenderer.php │ │ │ ├── util │ │ │ │ ├── TActionLink.php │ │ │ │ ├── TBreadCrumb.php │ │ │ │ ├── TCalendar.php │ │ │ │ ├── TCardView.php │ │ │ │ ├── TDropDown.php │ │ │ │ ├── TExceptionView.php │ │ │ │ ├── TFullCalendar.php │ │ │ │ ├── THyperLink.php │ │ │ │ ├── TIconView.php │ │ │ │ ├── TImage.php │ │ │ │ ├── TKanban.php │ │ │ │ ├── TPageStep.php │ │ │ │ ├── TProgressBar.php │ │ │ │ ├── TSourceCode.php │ │ │ │ ├── TTextDisplay.php │ │ │ │ ├── TTimeline.php │ │ │ │ ├── TTreeView.php │ │ │ │ └── TXMLBreadCrumb.php │ │ │ └── wrapper │ │ │ │ ├── AdiantiDatabaseWidgetTrait.php │ │ │ │ ├── TDBCheckGroup.php │ │ │ │ ├── TDBCheckList.php │ │ │ │ ├── TDBCombo.php │ │ │ │ ├── TDBEntry.php │ │ │ │ ├── TDBMultiSearch.php │ │ │ │ ├── TDBRadioGroup.php │ │ │ │ ├── TDBSeekButton.php │ │ │ │ ├── TDBSelect.php │ │ │ │ ├── TDBSortList.php │ │ │ │ ├── TDBUniqueSearch.php │ │ │ │ ├── TQuickForm.php │ │ │ │ ├── TQuickGrid.php │ │ │ │ └── TQuickNotebookForm.php │ │ └── wrapper │ │ │ ├── BootstrapDatagridWrapper.php │ │ │ ├── BootstrapFormBuilder.php │ │ │ ├── BootstrapFormWrapper.php │ │ │ └── BootstrapNotebookWrapper.php │ ├── bootstrap │ │ ├── css │ │ │ ├── boostrap-plugins.min.css │ │ │ ├── bootstrap-colorpicker.css │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ ├── bootstrap-colorpicker.min.css.map │ │ │ ├── bootstrap-datepicker.css │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datetimepicker.min.css │ │ │ ├── bootstrap-print.min.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.vertical-tabs.css │ │ │ ├── bootstrap.vertical-tabs.min.css │ │ │ ├── font │ │ │ │ ├── summernote.eot │ │ │ │ ├── summernote.ttf │ │ │ │ └── summernote.woff │ │ │ ├── fontawesome-iconpicker.css │ │ │ ├── fontawesome-iconpicker.min.css │ │ │ ├── lang │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ ├── summernote-ar-AR.min.js │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ ├── summernote-bg-BG.min.js │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ ├── summernote-ca-ES.min.js │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ ├── summernote-cs-CZ.min.js │ │ │ │ ├── summernote-da-DK.js │ │ │ │ ├── summernote-da-DK.min.js │ │ │ │ ├── summernote-de-DE.js │ │ │ │ ├── summernote-de-DE.min.js │ │ │ │ ├── summernote-el-GR.js │ │ │ │ ├── summernote-el-GR.min.js │ │ │ │ ├── summernote-es-ES.js │ │ │ │ ├── summernote-es-ES.min.js │ │ │ │ ├── summernote-es-EU.js │ │ │ │ ├── summernote-es-EU.min.js │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ ├── summernote-fa-IR.min.js │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ ├── summernote-fi-FI.min.js │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ ├── summernote-fr-FR.min.js │ │ │ │ ├── summernote-gl-ES.js │ │ │ │ ├── summernote-gl-ES.min.js │ │ │ │ ├── summernote-he-IL.js │ │ │ │ ├── summernote-he-IL.min.js │ │ │ │ ├── summernote-hr-HR.js │ │ │ │ ├── summernote-hr-HR.min.js │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ ├── summernote-hu-HU.min.js │ │ │ │ ├── summernote-id-ID.js │ │ │ │ ├── summernote-id-ID.min.js │ │ │ │ ├── summernote-it-IT.js │ │ │ │ ├── summernote-it-IT.min.js │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ ├── summernote-ja-JP.min.js │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ ├── summernote-ko-KR.min.js │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ ├── summernote-lt-LT.min.js │ │ │ │ ├── summernote-lt-LV.js │ │ │ │ ├── summernote-lt-LV.min.js │ │ │ │ ├── summernote-mn-MN.js │ │ │ │ ├── summernote-mn-MN.min.js │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ ├── summernote-nb-NO.min.js │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ ├── summernote-nl-NL.min.js │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ ├── summernote-pl-PL.min.js │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ ├── summernote-pt-BR.min.js │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ ├── summernote-pt-PT.min.js │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ ├── summernote-ro-RO.min.js │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ ├── summernote-ru-RU.min.js │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ ├── summernote-sk-SK.min.js │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ ├── summernote-sl-SI.min.js │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ ├── summernote-sr-RS.min.js │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ ├── summernote-sv-SE.min.js │ │ │ │ ├── summernote-ta-IN.js │ │ │ │ ├── summernote-ta-IN.min.js │ │ │ │ ├── summernote-th-TH.js │ │ │ │ ├── summernote-th-TH.min.js │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ ├── summernote-tr-TR.min.js │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ ├── summernote-uk-UA.min.js │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ ├── summernote-vi-VN.min.js │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ ├── summernote-zh-CN.min.js │ │ │ │ ├── summernote-zh-TW.js │ │ │ │ └── summernote-zh-TW.min.js │ │ │ └── summernote.css │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ └── js │ │ │ ├── bootbox.min.js │ │ │ ├── bootstrap-colorpicker.js │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── bootstrap-datepicker.min.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ ├── bootstrap-plugins.js │ │ │ ├── bootstrap-plugins.min.js │ │ │ ├── bootstrap-plugins.txt │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── fontawesome-iconpicker.js │ │ │ ├── fontawesome-iconpicker.min.js │ │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-el-GR.min.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-mn-MN.min.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-ta-IN.min.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-TW.js │ │ │ └── summernote-zh-TW.min.js │ │ │ ├── locales │ │ │ ├── bootstrap-datepicker-en-CA.js │ │ │ ├── bootstrap-datepicker.ar-tn.js │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ ├── bootstrap-datepicker.az.js │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.bn.js │ │ │ ├── bootstrap-datepicker.br.js │ │ │ ├── bootstrap-datepicker.bs.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.de.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.en-AU.js │ │ │ ├── bootstrap-datepicker.en-CA.js │ │ │ ├── bootstrap-datepicker.en-GB.js │ │ │ ├── bootstrap-datepicker.en-IE.js │ │ │ ├── bootstrap-datepicker.en-NZ.js │ │ │ ├── bootstrap-datepicker.en-ZA.js │ │ │ ├── bootstrap-datepicker.eo.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.et.js │ │ │ ├── bootstrap-datepicker.eu.js │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ ├── bootstrap-datepicker.fo.js │ │ │ ├── bootstrap-datepicker.fr-CH.js │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.hi.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ ├── bootstrap-datepicker.hy.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.is.js │ │ │ ├── bootstrap-datepicker.it-CH.js │ │ │ ├── bootstrap-datepicker.it.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ ├── bootstrap-datepicker.kh.js │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ ├── bootstrap-datepicker.km.js │ │ │ ├── bootstrap-datepicker.ko.js │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ ├── bootstrap-datepicker.me.js │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ ├── bootstrap-datepicker.mn.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.no.js │ │ │ ├── bootstrap-datepicker.oc.js │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ ├── bootstrap-datepicker.si.js │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ ├── bootstrap-datepicker.sr-latin.js │ │ │ ├── bootstrap-datepicker.sr.js │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ ├── bootstrap-datepicker.ta.js │ │ │ ├── bootstrap-datepicker.tg.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.js │ │ │ ├── bootstrap-datepicker.uz-latn.js │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ ├── bootstrap-datepicker.zh-TW.js │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ └── bootstrap-datetimepicker.pt.js │ │ │ ├── popper.js │ │ │ ├── popper.min.js │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ ├── independent │ │ ├── css │ │ │ ├── cropper.min.css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.min.css │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.min.css │ │ │ ├── independent-plugins.min.css │ │ │ ├── iziToast.css │ │ │ └── iziToast.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── independent-plugins.txt │ │ ├── js │ │ │ ├── cropper.min.js │ │ │ ├── fullcalendar-pt.js │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fuse.js │ │ │ ├── fuse.min.js │ │ │ ├── html5-qrcode.min.js │ │ │ ├── independent-plugins.js │ │ │ ├── independent-plugins.min.js │ │ │ ├── iziToast.js │ │ │ ├── iziToast.min.js │ │ │ ├── moment.min.js │ │ │ ├── php.js │ │ │ ├── php.min.js │ │ │ ├── webcam.min.js │ │ │ └── zxing.index.min.js │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── jquery │ │ ├── css │ │ │ ├── bootstrap-spinner.css │ │ │ ├── bootstrap-spinner.min.css │ │ │ ├── dataTables.responsive.css │ │ │ ├── images │ │ │ │ ├── buttons.gif │ │ │ │ ├── ico_folder.png │ │ │ │ ├── ico_folder_open.png │ │ │ │ ├── select2-spinner.gif │ │ │ │ ├── select2.png │ │ │ │ ├── select2x2.png │ │ │ │ ├── toolbar.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-plugins.min.css │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ ├── jquery-ui.theme.min.css │ │ │ ├── jquery.autocomplete.css │ │ │ ├── jquery.dataTables.min.css │ │ │ ├── jquery.treeview.css │ │ │ ├── jquery.treeview.min.css │ │ │ ├── select2-bootstrap.css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ │ ├── i18n │ │ │ ├── datatables │ │ │ │ ├── en.json │ │ │ │ ├── es.json │ │ │ │ └── pt.json │ │ │ ├── jquery-ui-i18n.js │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ ├── jquery.ui.datepicker-kz.js │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ ├── jquery-licence.txt │ │ ├── jquery-plugins.txt │ │ └── js │ │ │ ├── dataTables.responsive.min.js │ │ │ ├── jquery-migrate-3.0.0.js │ │ │ ├── jquery-plugins.js │ │ │ ├── jquery-plugins.min.js │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.autocomplete.min.js │ │ │ ├── jquery.blockUI.js │ │ │ ├── jquery.blockUI.min.js │ │ │ ├── jquery.dataTables.min.js │ │ │ ├── jquery.editinplace.js │ │ │ ├── jquery.editinplace.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.mask.js │ │ │ ├── jquery.mask.min.js │ │ │ ├── jquery.maskMoney.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.scrollto.min.js │ │ │ ├── jquery.spinner.js │ │ │ ├── jquery.spinner.min.js │ │ │ ├── jquery.treeview.js │ │ │ ├── jquery.treeview.min.js │ │ │ ├── select2.css │ │ │ ├── select2.js │ │ │ ├── select2.min.css │ │ │ ├── select2.min.js │ │ │ ├── select2_locale_es.js │ │ │ └── select2_locale_pt.js │ └── math │ │ ├── Lexer.php │ │ ├── Operator.php │ │ ├── Parser.php │ │ ├── Token.php │ │ └── translationstrategy │ │ ├── ShuntingYard.php │ │ └── TranslationStrategyInterface.php ├── manifest.json ├── menu-dist.xml ├── menu-public.xml ├── menu.xml ├── rest-secure.php.dist ├── rest.php.dist ├── rest │ ├── request.php │ ├── user-create.php │ ├── user-delete.php │ ├── user-get.php │ ├── user-list.php │ └── user-update.php ├── soap.php.dist ├── tmp │ └── .htaccess └── vendor │ ├── adianti │ └── pdfdesigner │ │ ├── AdiantiPDFDesigner.php │ │ ├── TPDFDesigner.php │ │ └── composer.json │ ├── autoload.php │ ├── bacon │ └── bacon-qr-code │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Module.php │ │ ├── README.md │ │ ├── autoload_classmap.php │ │ ├── autoload_function.php │ │ ├── autoload_register.php │ │ ├── composer.json │ │ ├── src │ │ └── BaconQrCode │ │ │ ├── Common │ │ │ ├── AbstractEnum.php │ │ │ ├── BitArray.php │ │ │ ├── BitMatrix.php │ │ │ ├── BitUtils.php │ │ │ ├── CharacterSetEci.php │ │ │ ├── EcBlock.php │ │ │ ├── EcBlocks.php │ │ │ ├── ErrorCorrectionLevel.php │ │ │ ├── FormatInformation.php │ │ │ ├── Mode.php │ │ │ ├── ReedSolomonCodec.php │ │ │ └── Version.php │ │ │ ├── Encoder │ │ │ ├── BlockPair.php │ │ │ ├── ByteMatrix.php │ │ │ ├── Encoder.php │ │ │ ├── MaskUtil.php │ │ │ ├── MatrixUtil.php │ │ │ └── QrCode.php │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── RuntimeException.php │ │ │ ├── UnexpectedValueException.php │ │ │ └── WriterException.php │ │ │ ├── Renderer │ │ │ ├── Color │ │ │ │ ├── Cmyk.php │ │ │ │ ├── ColorInterface.php │ │ │ │ ├── Gray.php │ │ │ │ └── Rgb.php │ │ │ ├── Image │ │ │ │ ├── AbstractRenderer.php │ │ │ │ ├── Decorator │ │ │ │ │ ├── DecoratorInterface.php │ │ │ │ │ └── FinderPattern.php │ │ │ │ ├── Eps.php │ │ │ │ ├── Png.php │ │ │ │ ├── RendererInterface.php │ │ │ │ └── Svg.php │ │ │ ├── RendererInterface.php │ │ │ └── Text │ │ │ │ ├── Html.php │ │ │ │ └── Plain.php │ │ │ └── Writer.php │ │ └── tests │ │ ├── BaconQrCode │ │ ├── Common │ │ │ ├── BitArrayTest.php │ │ │ ├── BitMatrixTest.php │ │ │ ├── BitUtilsTest.php │ │ │ ├── ErrorCorrectionLevelTest.php │ │ │ ├── FormatInformationTest.php │ │ │ ├── ModeTest.php │ │ │ ├── ReedSolomonCodecTest.php │ │ │ └── VersionTest.php │ │ ├── Encoder │ │ │ ├── EncoderTest.php │ │ │ ├── MaskUtilTest.php │ │ │ └── MatrixUtilTest.php │ │ └── Renderer │ │ │ └── Text │ │ │ ├── HtmlTest.php │ │ │ └── TextTest.php │ │ ├── bootstrap.php │ │ └── phpunit.xml │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── include_paths.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── dompdf │ └── dompdf │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.LGPL │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── lib │ │ ├── Cpdf.php │ │ ├── fonts │ │ │ ├── Courier-Bold.afm │ │ │ ├── Courier-BoldOblique.afm │ │ │ ├── Courier-Oblique.afm │ │ │ ├── Courier.afm │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ ├── DejaVuSans-Bold.ufm │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ ├── DejaVuSans-BoldOblique.ufm │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ ├── DejaVuSans-Oblique.ufm │ │ │ ├── DejaVuSans.ttf │ │ │ ├── DejaVuSans.ufm │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ ├── DejaVuSansMono-Bold.ufm │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ ├── DejaVuSansMono-BoldOblique.ufm │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ ├── DejaVuSansMono-Oblique.ufm │ │ │ ├── DejaVuSansMono.ttf │ │ │ ├── DejaVuSansMono.ufm │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ ├── DejaVuSerif-Bold.ufm │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ ├── DejaVuSerif-BoldItalic.ufm │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ ├── DejaVuSerif-Italic.ufm │ │ │ ├── DejaVuSerif.ttf │ │ │ ├── DejaVuSerif.ufm │ │ │ ├── Helvetica-Bold.afm │ │ │ ├── Helvetica-BoldOblique.afm │ │ │ ├── Helvetica-Oblique.afm │ │ │ ├── Helvetica.afm │ │ │ ├── Symbol.afm │ │ │ ├── Times-Bold.afm │ │ │ ├── Times-BoldItalic.afm │ │ │ ├── Times-Italic.afm │ │ │ ├── Times-Roman.afm │ │ │ ├── ZapfDingbats.afm │ │ │ ├── dompdf_font_family_cache.dist.php │ │ │ └── mustRead.html │ │ ├── html5lib │ │ │ ├── Data.php │ │ │ ├── InputStream.php │ │ │ ├── Parser.php │ │ │ ├── Tokenizer.php │ │ │ ├── TreeBuilder.php │ │ │ └── named-character-references.ser │ │ └── res │ │ │ ├── broken_image.png │ │ │ ├── broken_image.svg │ │ │ └── html.css │ │ ├── phpcs.xml │ │ └── src │ │ ├── Adapter │ │ ├── CPDF.php │ │ ├── GD.php │ │ └── PDFLib.php │ │ ├── Autoloader.php │ │ ├── Canvas.php │ │ ├── CanvasFactory.php │ │ ├── Cellmap.php │ │ ├── Css │ │ ├── AttributeTranslator.php │ │ ├── Color.php │ │ ├── Style.php │ │ └── Stylesheet.php │ │ ├── Dompdf.php │ │ ├── Exception.php │ │ ├── Exception │ │ └── ImageException.php │ │ ├── FontMetrics.php │ │ ├── Frame.php │ │ ├── Frame │ │ ├── Factory.php │ │ ├── FrameList.php │ │ ├── FrameListIterator.php │ │ ├── FrameTree.php │ │ ├── FrameTreeIterator.php │ │ └── FrameTreeList.php │ │ ├── FrameDecorator │ │ ├── AbstractFrameDecorator.php │ │ ├── Block.php │ │ ├── Image.php │ │ ├── Inline.php │ │ ├── ListBullet.php │ │ ├── ListBulletImage.php │ │ ├── NullFrameDecorator.php │ │ ├── Page.php │ │ ├── Table.php │ │ ├── TableCell.php │ │ ├── TableRow.php │ │ ├── TableRowGroup.php │ │ └── Text.php │ │ ├── FrameReflower │ │ ├── AbstractFrameReflower.php │ │ ├── Block.php │ │ ├── Image.php │ │ ├── Inline.php │ │ ├── ListBullet.php │ │ ├── NullFrameReflower.php │ │ ├── Page.php │ │ ├── Table.php │ │ ├── TableCell.php │ │ ├── TableRow.php │ │ ├── TableRowGroup.php │ │ └── Text.php │ │ ├── Helpers.php │ │ ├── Image │ │ └── Cache.php │ │ ├── JavascriptEmbedder.php │ │ ├── LineBox.php │ │ ├── Options.php │ │ ├── PhpEvaluator.php │ │ ├── Positioner │ │ ├── Absolute.php │ │ ├── AbstractPositioner.php │ │ ├── Block.php │ │ ├── Fixed.php │ │ ├── Inline.php │ │ ├── ListBullet.php │ │ ├── NullPositioner.php │ │ ├── TableCell.php │ │ └── TableRow.php │ │ ├── Renderer.php │ │ └── Renderer │ │ ├── AbstractRenderer.php │ │ ├── Block.php │ │ ├── Image.php │ │ ├── Inline.php │ │ ├── ListBullet.php │ │ ├── TableCell.php │ │ ├── TableRowGroup.php │ │ └── Text.php │ ├── firebase │ └── php-jwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BeforeValidException.php │ │ ├── ExpiredException.php │ │ ├── JWK.php │ │ ├── JWT.php │ │ └── SignatureInvalidException.php │ ├── jbroadway │ └── urlify │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── README.md │ │ ├── URLify.php │ │ ├── composer.json │ │ └── scripts │ │ ├── downcode.php │ │ ├── filter.php │ │ └── transliterate.php │ ├── linfo │ └── linfo │ │ ├── .git-blame-ignore-revs │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── DEVELOPERS.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── NCURSES.md │ │ ├── README.md │ │ ├── cache │ │ └── .htaccess │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── gulpfile.js │ │ ├── index.php │ │ ├── layout │ │ ├── favicon.ico │ │ ├── icons.css │ │ ├── icons │ │ │ ├── distro_alpinelinux.png │ │ │ ├── distro_arch.png │ │ │ ├── distro_centos.png │ │ │ ├── distro_debian.png │ │ │ ├── distro_fedora.png │ │ │ ├── distro_linuxmint.png │ │ │ ├── distro_opensuse.png │ │ │ ├── distro_raspbian.png │ │ │ ├── distro_redhat.png │ │ │ ├── distro_ubuntu.png │ │ │ ├── logo.png │ │ │ ├── os_darwin.png │ │ │ ├── os_dragonflybsd.png │ │ │ ├── os_freebsd.png │ │ │ ├── os_linux.gif │ │ │ ├── os_minix.png │ │ │ ├── os_netbsd.png │ │ │ ├── os_openbsd.png │ │ │ ├── os_solaris.png │ │ │ ├── os_windows.gif │ │ │ ├── os_windows.png │ │ │ ├── vm_docker.png │ │ │ ├── vm_hyper-v.png │ │ │ ├── vm_kvm.png │ │ │ ├── vm_lxc.png │ │ │ ├── vm_openvz.png │ │ │ ├── vm_veertu.png │ │ │ ├── vm_virtualbox.png │ │ │ ├── vm_vmware.png │ │ │ └── vm_xen.png │ │ ├── mobile.css │ │ ├── old_ie.css │ │ ├── sass │ │ │ ├── _base.sass │ │ │ ├── _icons.sass │ │ │ ├── compilecss.sh │ │ │ ├── icons.sass │ │ │ ├── mobile.sass │ │ │ ├── theme_dark.sass │ │ │ ├── theme_default.sass │ │ │ ├── theme_frogg.sass │ │ │ ├── theme_neuro.sass │ │ │ ├── theme_photon.sass │ │ │ └── theme_stb.sass │ │ ├── scripts.js │ │ ├── scripts.min.js │ │ ├── theme_dark.css │ │ ├── theme_default.css │ │ ├── theme_frogg.css │ │ ├── theme_neuro.css │ │ ├── theme_photon.css │ │ └── theme_stb.css │ │ ├── linfo-curses │ │ ├── linfo-dev-server │ │ ├── package.json │ │ ├── sample.config.inc.php │ │ ├── src │ │ └── Linfo │ │ │ ├── Common.php │ │ │ ├── Exceptions │ │ │ └── FatalException.php │ │ │ ├── Extension │ │ │ ├── Apcaccess.php │ │ │ ├── Cups.php │ │ │ ├── Dhcpd3_leases.php │ │ │ ├── Dnsmasq_dhcpd.php │ │ │ ├── Extension.php │ │ │ ├── Ipmi.php │ │ │ ├── Libvirt.php │ │ │ ├── Lxd.php │ │ │ ├── Nvidia.php │ │ │ ├── Smb.php │ │ │ ├── Soldat.php │ │ │ ├── Transmission.php │ │ │ ├── Truecrypt.php │ │ │ └── Utorrent.php │ │ │ ├── Lang │ │ │ ├── de.php │ │ │ ├── en.php │ │ │ ├── es.php │ │ │ ├── fa.php │ │ │ ├── fi.php │ │ │ ├── fr.php │ │ │ ├── id.php │ │ │ ├── it.php │ │ │ ├── ko.php │ │ │ ├── pl.php │ │ │ ├── pt.php │ │ │ └── zh.php │ │ │ ├── Leveldict.php │ │ │ ├── Linfo.php │ │ │ ├── Meta │ │ │ ├── Errors.php │ │ │ └── Timer.php │ │ │ ├── OS │ │ │ ├── BSDcommon.php │ │ │ ├── Darwin.php │ │ │ ├── DragonFly.php │ │ │ ├── FreeBSD.php │ │ │ ├── Linux.php │ │ │ ├── Minix.php │ │ │ ├── NetBSD.php │ │ │ ├── OS.php │ │ │ ├── OpenBSD.php │ │ │ ├── SunOS.php │ │ │ ├── Unixcommon.php │ │ │ └── Windows.php │ │ │ ├── Output │ │ │ ├── Html.php │ │ │ ├── Json.php │ │ │ ├── Ncurses.php │ │ │ ├── Output.php │ │ │ └── Serialized.php │ │ │ └── Parsers │ │ │ ├── CallExt.php │ │ │ ├── FileIO.php │ │ │ ├── Hddtemp.php │ │ │ ├── Hwpci.php │ │ │ ├── IO.php │ │ │ ├── MacSystemProfiler.php │ │ │ ├── Mbmon.php │ │ │ └── Sensord.php │ │ ├── standalone_autoload.php │ │ └── tests │ │ ├── .htaccess │ │ ├── bootstrap.php │ │ ├── files │ │ ├── darwin │ │ │ └── system_profiler.txt │ │ ├── intfile.txt │ │ ├── lines.txt │ │ ├── linux │ │ │ └── generic_distro │ │ │ │ ├── etc │ │ │ │ └── lsb-release │ │ │ │ ├── proc │ │ │ │ ├── asound │ │ │ │ │ └── cards │ │ │ │ ├── cpuinfo │ │ │ │ ├── loadavg │ │ │ │ ├── mdstat │ │ │ │ ├── sys │ │ │ │ │ └── kernel │ │ │ │ │ │ └── hostname │ │ │ │ └── version │ │ │ │ └── sys │ │ │ │ └── devices │ │ │ │ └── virtual │ │ │ │ └── dmi │ │ │ │ └── id │ │ │ │ ├── board_name │ │ │ │ ├── board_vendor │ │ │ │ └── product_name │ │ ├── pci.ids │ │ ├── test2.txt │ │ ├── usb.ids │ │ └── varfile.php │ │ ├── linfo │ │ ├── LeveldictTest.php │ │ ├── LinfoCommonTest.php │ │ ├── LinfoErrorTest.php │ │ ├── LinfoTest.php │ │ ├── LinfoTimerTest.php │ │ └── parsers │ │ │ ├── HwpciTest.php │ │ │ └── MacSystemProfilerTest.php │ │ ├── os │ │ ├── Darwin │ │ │ └── Darwin.php │ │ ├── FreeBSD │ │ │ └── FreeBSD.php │ │ └── Linux │ │ │ ├── DistroCheck.php │ │ │ ├── GenericDistro.php │ │ │ └── Linux.php │ │ ├── phpunit.xml │ │ ├── test_lang.php │ │ ├── test_settings.php │ │ ├── test_utils.php │ │ └── testing_readme.txt │ ├── pablodalloglio │ ├── fpdf │ │ ├── FPDF.php │ │ ├── composer.json │ │ ├── font │ │ │ ├── courier.php │ │ │ ├── courierb.php │ │ │ ├── courierbi.php │ │ │ ├── courieri.php │ │ │ ├── helvetica.php │ │ │ ├── helveticab.php │ │ │ ├── helveticabi.php │ │ │ ├── helveticai.php │ │ │ ├── makefont │ │ │ │ ├── cp1250.map │ │ │ │ ├── cp1251.map │ │ │ │ ├── cp1252.map │ │ │ │ ├── cp1253.map │ │ │ │ ├── cp1254.map │ │ │ │ ├── cp1255.map │ │ │ │ ├── cp1257.map │ │ │ │ ├── cp1258.map │ │ │ │ ├── cp874.map │ │ │ │ ├── iso-8859-1.map │ │ │ │ ├── iso-8859-11.map │ │ │ │ ├── iso-8859-15.map │ │ │ │ ├── iso-8859-16.map │ │ │ │ ├── iso-8859-2.map │ │ │ │ ├── iso-8859-4.map │ │ │ │ ├── iso-8859-5.map │ │ │ │ ├── iso-8859-7.map │ │ │ │ ├── iso-8859-9.map │ │ │ │ ├── koi8-r.map │ │ │ │ ├── koi8-u.map │ │ │ │ ├── makefont.php │ │ │ │ └── ttfparser.php │ │ │ ├── symbol.php │ │ │ ├── times.php │ │ │ ├── timesb.php │ │ │ ├── timesbi.php │ │ │ ├── timesi.php │ │ │ └── zapfdingbats.php │ │ └── license.txt │ ├── ole │ │ ├── OLE.php │ │ ├── OLE │ │ │ ├── ChainedBlockStream.php │ │ │ ├── PPS.php │ │ │ └── PPS │ │ │ │ ├── File.php │ │ │ │ └── Root.php │ │ └── composer.json │ └── spreadsheet_excel_writer │ │ ├── Spreadsheet │ │ └── Excel │ │ │ └── Writer │ │ │ ├── BIFFwriter.php │ │ │ ├── Format.php │ │ │ ├── Parser.php │ │ │ ├── Validator.php │ │ │ ├── Workbook.php │ │ │ └── Worksheet.php │ │ └── composer.json │ ├── phenx │ ├── php-font-lib │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .htaccess │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── index.php │ │ ├── maps │ │ │ ├── adobe-standard-encoding.map │ │ │ ├── cp1250.map │ │ │ ├── cp1251.map │ │ │ ├── cp1252.map │ │ │ ├── cp1253.map │ │ │ ├── cp1254.map │ │ │ ├── cp1255.map │ │ │ ├── cp1257.map │ │ │ ├── cp1258.map │ │ │ ├── cp874.map │ │ │ ├── iso-8859-1.map │ │ │ ├── iso-8859-11.map │ │ │ ├── iso-8859-15.map │ │ │ ├── iso-8859-16.map │ │ │ ├── iso-8859-2.map │ │ │ ├── iso-8859-4.map │ │ │ ├── iso-8859-5.map │ │ │ ├── iso-8859-7.map │ │ │ ├── iso-8859-9.map │ │ │ ├── koi8-r.map │ │ │ └── koi8-u.map │ │ ├── phpunit.xml.dist │ │ ├── sample-fonts │ │ │ ├── IntelClear-Light.ttf │ │ │ └── NotoSansShavian-Regular.ttf │ │ ├── src │ │ │ └── FontLib │ │ │ │ ├── AdobeFontMetrics.php │ │ │ │ ├── Autoloader.php │ │ │ │ ├── BinaryStream.php │ │ │ │ ├── EOT │ │ │ │ ├── File.php │ │ │ │ └── Header.php │ │ │ │ ├── EncodingMap.php │ │ │ │ ├── Exception │ │ │ │ └── FontNotFoundException.php │ │ │ │ ├── Font.php │ │ │ │ ├── Glyph │ │ │ │ ├── Outline.php │ │ │ │ ├── OutlineComponent.php │ │ │ │ ├── OutlineComposite.php │ │ │ │ └── OutlineSimple.php │ │ │ │ ├── Header.php │ │ │ │ ├── OpenType │ │ │ │ ├── File.php │ │ │ │ └── TableDirectoryEntry.php │ │ │ │ ├── Table │ │ │ │ ├── DirectoryEntry.php │ │ │ │ ├── Table.php │ │ │ │ └── Type │ │ │ │ │ ├── cmap.php │ │ │ │ │ ├── glyf.php │ │ │ │ │ ├── head.php │ │ │ │ │ ├── hhea.php │ │ │ │ │ ├── hmtx.php │ │ │ │ │ ├── kern.php │ │ │ │ │ ├── loca.php │ │ │ │ │ ├── maxp.php │ │ │ │ │ ├── name.php │ │ │ │ │ ├── nameRecord.php │ │ │ │ │ ├── os2.php │ │ │ │ │ └── post.php │ │ │ │ ├── TrueType │ │ │ │ ├── Collection.php │ │ │ │ ├── File.php │ │ │ │ ├── Header.php │ │ │ │ └── TableDirectoryEntry.php │ │ │ │ └── WOFF │ │ │ │ ├── File.php │ │ │ │ ├── Header.php │ │ │ │ └── TableDirectoryEntry.php │ │ └── tests │ │ │ └── FontLib │ │ │ └── FontTest.php │ └── php-svg-lib │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── COPYING │ │ ├── COPYING.GPL │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ ├── Svg │ │ │ ├── DefaultStyle.php │ │ │ ├── Document.php │ │ │ ├── Gradient │ │ │ │ └── Stop.php │ │ │ ├── Style.php │ │ │ ├── Surface │ │ │ │ ├── CPdf.php │ │ │ │ ├── SurfaceCpdf.php │ │ │ │ ├── SurfaceGmagick.php │ │ │ │ ├── SurfaceInterface.php │ │ │ │ └── SurfacePDFLib.php │ │ │ └── Tag │ │ │ │ ├── AbstractTag.php │ │ │ │ ├── Anchor.php │ │ │ │ ├── Circle.php │ │ │ │ ├── ClipPath.php │ │ │ │ ├── Ellipse.php │ │ │ │ ├── Group.php │ │ │ │ ├── Image.php │ │ │ │ ├── Line.php │ │ │ │ ├── LinearGradient.php │ │ │ │ ├── Path.php │ │ │ │ ├── Polygon.php │ │ │ │ ├── Polyline.php │ │ │ │ ├── RadialGradient.php │ │ │ │ ├── Rect.php │ │ │ │ ├── Shape.php │ │ │ │ ├── Stop.php │ │ │ │ ├── StyleTag.php │ │ │ │ ├── Text.php │ │ │ │ └── UseTag.php │ │ └── autoload.php │ │ └── tests │ │ └── Svg │ │ └── StyleTest.php │ ├── phpmailer │ └── phpmailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ ├── phpmailer.lang-af.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-hy.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php │ ├── phprtflite │ └── phprtflite │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ ├── doctrees │ │ │ ├── bug-feature.doctree │ │ │ ├── document-settings.doctree │ │ │ ├── enumerations-numberings.doctree │ │ │ ├── environment.pickle │ │ │ ├── feature-overview.doctree │ │ │ ├── footnotes-endnotes.doctree │ │ │ ├── formatting.doctree │ │ │ ├── formfields.doctree │ │ │ ├── getting-started.doctree │ │ │ ├── header-footer.doctree │ │ │ ├── images.doctree │ │ │ ├── index.doctree │ │ │ ├── intro.doctree │ │ │ ├── introduction.doctree │ │ │ ├── license.doctree │ │ │ ├── page-layouts.doctree │ │ │ ├── sections.doctree │ │ │ ├── styling.doctree │ │ │ ├── tables.doctree │ │ │ └── tutorials │ │ │ │ ├── introducation.doctree │ │ │ │ └── introduction.doctree │ │ └── html │ │ │ ├── .buildinfo │ │ │ ├── _sources │ │ │ ├── bug-feature.txt │ │ │ ├── document-settings.txt │ │ │ ├── enumerations-numberings.txt │ │ │ ├── feature-overview.txt │ │ │ ├── footnotes-endnotes.txt │ │ │ ├── formatting.txt │ │ │ ├── formfields.txt │ │ │ ├── getting-started.txt │ │ │ ├── header-footer.txt │ │ │ ├── images.txt │ │ │ ├── index.txt │ │ │ ├── intro.txt │ │ │ ├── introduction.txt │ │ │ ├── license.txt │ │ │ ├── page-layouts.txt │ │ │ ├── sections.txt │ │ │ ├── styling.txt │ │ │ ├── tables.txt │ │ │ └── tutorials │ │ │ │ ├── introducation.txt │ │ │ │ └── introduction.txt │ │ │ ├── _static │ │ │ ├── basic.css │ │ │ ├── default.css │ │ │ ├── doctools.js │ │ │ ├── file.png │ │ │ ├── jquery.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── sidebar.js │ │ │ └── underscore.js │ │ │ ├── bug-feature.html │ │ │ ├── document-settings.html │ │ │ ├── enumerations-numberings.html │ │ │ ├── feature-overview.html │ │ │ ├── footnotes-endnotes.html │ │ │ ├── formatting.html │ │ │ ├── formfields.html │ │ │ ├── genindex.html │ │ │ ├── getting-started.html │ │ │ ├── header-footer.html │ │ │ ├── images.html │ │ │ ├── index.html │ │ │ ├── introduction.html │ │ │ ├── license.html │ │ │ ├── objects.inv │ │ │ ├── page-layouts.html │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ ├── sections.html │ │ │ ├── styling.html │ │ │ └── tables.html │ │ ├── lib │ │ ├── PHPRtfLite.php │ │ └── PHPRtfLite │ │ │ ├── Autoloader.php │ │ │ ├── Border.php │ │ │ ├── Border │ │ │ └── Format.php │ │ │ ├── Container.php │ │ │ ├── Container │ │ │ ├── Base.php │ │ │ ├── Footer.php │ │ │ ├── Header.php │ │ │ └── Section.php │ │ │ ├── DocHead │ │ │ ├── ColorTable.php │ │ │ ├── FontTable.php │ │ │ └── Note.php │ │ │ ├── Element.php │ │ │ ├── Element │ │ │ ├── Hyperlink.php │ │ │ └── Plain.php │ │ │ ├── Endnote.php │ │ │ ├── Exception.php │ │ │ ├── Font.php │ │ │ ├── Footnote.php │ │ │ ├── FormField.php │ │ │ ├── FormField │ │ │ ├── Checkbox.php │ │ │ ├── Dropdown.php │ │ │ └── Text.php │ │ │ ├── Image.php │ │ │ ├── Image │ │ │ ├── Gd.php │ │ │ └── Wmf.php │ │ │ ├── List.php │ │ │ ├── List │ │ │ ├── Enumeration.php │ │ │ └── Numbering.php │ │ │ ├── ParFormat.php │ │ │ ├── StreamOutput.php │ │ │ ├── Table.php │ │ │ ├── Table │ │ │ ├── Cell.php │ │ │ ├── Column.php │ │ │ ├── Nested.php │ │ │ └── Row.php │ │ │ ├── Unit.php │ │ │ ├── Utf8.php │ │ │ └── Writer │ │ │ ├── Interface.php │ │ │ └── String.php │ │ ├── samples │ │ ├── chess_tournament.php │ │ ├── document_sections.php │ │ ├── footnotes.php │ │ ├── formfields.php │ │ ├── generated │ │ │ ├── chess_tournament.rtf │ │ │ ├── document_sections.rtf │ │ │ ├── footnotes.rtf │ │ │ ├── formfields.rtf │ │ │ ├── hello_world.rtf │ │ │ ├── image_from_strings.rtf │ │ │ ├── images.rtf │ │ │ ├── lists.rtf │ │ │ ├── merged_cells.rtf │ │ │ ├── nested_tables.rtf │ │ │ ├── paragraphs_fonts.rtf │ │ │ ├── paragraphs_in_tables.rtf │ │ │ ├── table_in_header.rtf │ │ │ ├── tables.rtf │ │ │ └── utf8.rtf │ │ ├── hello_world.php │ │ ├── image_from_strings.php │ │ ├── images.php │ │ ├── lists.php │ │ ├── merged_cells.php │ │ ├── nested_tables.php │ │ ├── paragraphs_fonts.php │ │ ├── paragraphs_in_tables.php │ │ ├── sources │ │ │ ├── cats.jpg │ │ │ ├── html.png │ │ │ ├── rtf_thumb.jpg │ │ │ ├── test.wmf │ │ │ ├── utf8.txt │ │ │ └── word_thumb.jpg │ │ ├── table_in_header.php │ │ ├── tables.php │ │ └── utf8.php │ │ └── tests │ │ ├── PHPRtfLite │ │ ├── Border │ │ │ └── FormatTest.php │ │ ├── BorderTest.php │ │ ├── Container │ │ │ ├── HeaderTest.php │ │ │ └── SectionTest.php │ │ ├── ContainerTest.php │ │ ├── DocHead │ │ │ ├── ColorTableTest.php │ │ │ └── FontTableTest.php │ │ ├── Element │ │ │ └── HyperlinkTest.php │ │ ├── FontTest.php │ │ ├── FootnoteTest.php │ │ ├── ImageTest.php │ │ ├── ParFormatTest.php │ │ ├── Table │ │ │ ├── CellTest.php │ │ │ └── RowTest.php │ │ ├── TableTest.php │ │ └── WriterTest.php │ │ ├── PHPRtfLiteSampleTestCase.php │ │ ├── PHPRtfLiteTest.php │ │ ├── SampleTest │ │ ├── ChessTournamentSampleTest.php │ │ ├── DocumentSectionsSampleTest.php │ │ ├── FootnotesSampleTest.php │ │ ├── HelloWorldSampleTest.php │ │ ├── ImagesSampleTest.php │ │ ├── ListsSampleTest.php │ │ ├── MergedCellsSampleTest.php │ │ ├── ParagraphsFontsSampleTest.php │ │ ├── ParagraphsInTablesSampleTest.php │ │ ├── TableSampleTest.php │ │ └── Utf8SampleTest.php │ │ ├── bootstrap.php │ │ └── phpunit.xml.dist │ ├── picqer │ └── php-barcode-generator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── Readme.md │ │ ├── composer.json │ │ ├── generate-verified-files.php │ │ ├── phpunit.xml │ │ ├── src │ │ ├── BarcodeGenerator.php │ │ ├── BarcodeGeneratorHTML.php │ │ ├── BarcodeGeneratorJPG.php │ │ ├── BarcodeGeneratorPNG.php │ │ ├── BarcodeGeneratorSVG.php │ │ └── Exceptions │ │ │ ├── BarcodeException.php │ │ │ ├── InvalidCharacterException.php │ │ │ ├── InvalidCheckDigitException.php │ │ │ ├── InvalidFormatException.php │ │ │ ├── InvalidLengthException.php │ │ │ └── UnknownTypeException.php │ │ └── tests │ │ ├── BarcodeTest.php │ │ └── verified-files │ │ ├── 0049000004632-ean13.svg │ │ ├── 081231723897-code128.html │ │ └── 081231723897-ean13.svg │ ├── sabberworm │ └── php-css-parser │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Doxyfile │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── lib │ │ └── Sabberworm │ │ │ └── CSS │ │ │ ├── CSSList │ │ │ ├── AtRuleBlockList.php │ │ │ ├── CSSBlockList.php │ │ │ ├── CSSList.php │ │ │ ├── Document.php │ │ │ └── KeyFrame.php │ │ │ ├── Comment │ │ │ ├── Comment.php │ │ │ └── Commentable.php │ │ │ ├── OutputFormat.php │ │ │ ├── Parser.php │ │ │ ├── Parsing │ │ │ ├── OutputException.php │ │ │ ├── ParserState.php │ │ │ ├── SourceException.php │ │ │ └── UnexpectedTokenException.php │ │ │ ├── Property │ │ │ ├── AtRule.php │ │ │ ├── CSSNamespace.php │ │ │ ├── Charset.php │ │ │ ├── Import.php │ │ │ └── Selector.php │ │ │ ├── Renderable.php │ │ │ ├── Rule │ │ │ └── Rule.php │ │ │ ├── RuleSet │ │ │ ├── AtRuleSet.php │ │ │ ├── DeclarationBlock.php │ │ │ └── RuleSet.php │ │ │ ├── Settings.php │ │ │ └── Value │ │ │ ├── CSSFunction.php │ │ │ ├── CSSString.php │ │ │ ├── CalcFunction.php │ │ │ ├── CalcRuleValueList.php │ │ │ ├── Color.php │ │ │ ├── LineName.php │ │ │ ├── PrimitiveValue.php │ │ │ ├── RuleValueList.php │ │ │ ├── Size.php │ │ │ ├── URL.php │ │ │ ├── Value.php │ │ │ └── ValueList.php │ │ ├── phpunit.xml │ │ └── tests │ │ ├── Sabberworm │ │ └── CSS │ │ │ ├── CSSList │ │ │ ├── AtRuleBlockListTest.php │ │ │ └── DocumentTest.php │ │ │ ├── OutputFormatTest.php │ │ │ ├── ParserTest.php │ │ │ └── RuleSet │ │ │ ├── DeclarationBlockTest.php │ │ │ └── LenientParsingTest.php │ │ ├── bootstrap.php │ │ ├── files │ │ ├── -calc-no-space-around-minus.css │ │ ├── -charset-after-rule.css │ │ ├── -charset-in-block.css │ │ ├── -empty-grid-linename.css │ │ ├── -empty.css │ │ ├── -end-token-2.css │ │ ├── -end-token.css │ │ ├── -fault-tolerance.css │ │ ├── -tobedone.css │ │ ├── 1readme.css │ │ ├── 2readme.css │ │ ├── atrules.css │ │ ├── calc-nested.css │ │ ├── calc.css │ │ ├── case-insensitivity.css │ │ ├── colortest.css │ │ ├── comments.css │ │ ├── create-shorthands.css │ │ ├── docuwiki.css │ │ ├── empty-grid-linename.css │ │ ├── expand-shorthands.css │ │ ├── functions.css │ │ ├── grid-linename.css │ │ ├── hex-alpha.css │ │ ├── ie-hacks.css │ │ ├── ie.css │ │ ├── important.css │ │ ├── inner-color.css │ │ ├── line-numbers.css │ │ ├── missing-property-value.css │ │ ├── ms-filter.css │ │ ├── namespaces.css │ │ ├── nested.css │ │ ├── slashed.css │ │ ├── specificity.css │ │ ├── trailing-whitespace.css │ │ ├── unicode-range.css │ │ ├── unicode.css │ │ ├── unmatched_braces.css │ │ ├── unopened-close-brackets.css │ │ ├── url.css │ │ ├── values.css │ │ ├── webkit.css │ │ └── whitespace.css │ │ ├── phpunit.xml │ │ └── quickdump.php │ ├── tburry │ └── pquery │ │ ├── IQuery.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── autoload.php │ │ ├── composer.json │ │ ├── gan_formatter.php │ │ ├── gan_node_html.php │ │ ├── gan_parser_html.php │ │ ├── gan_selector_html.php │ │ ├── gan_tokenizer.php │ │ ├── gan_xml2array.php │ │ ├── ganon.php │ │ ├── pQuery.php │ │ └── third party │ │ └── jsminplus.php │ └── voku │ ├── portable-ascii │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── build │ │ ├── composer.json │ │ ├── docs │ │ │ └── base.md │ │ ├── generate_docs.php │ │ └── generate_max_key_length.php │ ├── composer.json │ └── src │ │ └── voku │ │ └── helper │ │ ├── ASCII.php │ │ └── data │ │ ├── ascii_by_languages.php │ │ ├── ascii_extras_by_languages.php │ │ ├── ascii_language_max_key.php │ │ ├── ascii_ord.php │ │ ├── x000.php │ │ ├── x001.php │ │ ├── x002.php │ │ ├── x003.php │ │ ├── x004.php │ │ ├── x005.php │ │ ├── x006.php │ │ ├── x007.php │ │ ├── x009.php │ │ ├── x00a.php │ │ ├── x00b.php │ │ ├── x00c.php │ │ ├── x00d.php │ │ ├── x00e.php │ │ ├── x00f.php │ │ ├── x010.php │ │ ├── x011.php │ │ ├── x012.php │ │ ├── x013.php │ │ ├── x014.php │ │ ├── x015.php │ │ ├── x016.php │ │ ├── x017.php │ │ ├── x018.php │ │ ├── x01d.php │ │ ├── x01e.php │ │ ├── x01f.php │ │ ├── x020.php │ │ ├── x021.php │ │ ├── x022.php │ │ ├── x023.php │ │ ├── x024.php │ │ ├── x025.php │ │ ├── x026.php │ │ ├── x027.php │ │ ├── x028.php │ │ ├── x029.php │ │ ├── x02a.php │ │ ├── x02c.php │ │ ├── x02e.php │ │ ├── x02f.php │ │ ├── x030.php │ │ ├── x031.php │ │ ├── x032.php │ │ ├── x033.php │ │ ├── x04d.php │ │ ├── x04e.php │ │ ├── x04f.php │ │ ├── x050.php │ │ ├── x051.php │ │ ├── x052.php │ │ ├── x053.php │ │ ├── x054.php │ │ ├── x055.php │ │ ├── x056.php │ │ ├── x057.php │ │ ├── x058.php │ │ ├── x059.php │ │ ├── x05a.php │ │ ├── x05b.php │ │ ├── x05c.php │ │ ├── x05d.php │ │ ├── x05e.php │ │ ├── x05f.php │ │ ├── x060.php │ │ ├── x061.php │ │ ├── x062.php │ │ ├── x063.php │ │ ├── x064.php │ │ ├── x065.php │ │ ├── x066.php │ │ ├── x067.php │ │ ├── x068.php │ │ ├── x069.php │ │ ├── x06a.php │ │ ├── x06b.php │ │ ├── x06c.php │ │ ├── x06d.php │ │ ├── x06e.php │ │ ├── x06f.php │ │ ├── x070.php │ │ ├── x071.php │ │ ├── x072.php │ │ ├── x073.php │ │ ├── x074.php │ │ ├── x075.php │ │ ├── x076.php │ │ ├── x077.php │ │ ├── x078.php │ │ ├── x079.php │ │ ├── x07a.php │ │ ├── x07b.php │ │ ├── x07c.php │ │ ├── x07d.php │ │ ├── x07e.php │ │ ├── x07f.php │ │ ├── x080.php │ │ ├── x081.php │ │ ├── x082.php │ │ ├── x083.php │ │ ├── x084.php │ │ ├── x085.php │ │ ├── x086.php │ │ ├── x087.php │ │ ├── x088.php │ │ ├── x089.php │ │ ├── x08a.php │ │ ├── x08b.php │ │ ├── x08c.php │ │ ├── x08d.php │ │ ├── x08e.php │ │ ├── x08f.php │ │ ├── x090.php │ │ ├── x091.php │ │ ├── x092.php │ │ ├── x093.php │ │ ├── x094.php │ │ ├── x095.php │ │ ├── x096.php │ │ ├── x097.php │ │ ├── x098.php │ │ ├── x099.php │ │ ├── x09a.php │ │ ├── x09b.php │ │ ├── x09c.php │ │ ├── x09d.php │ │ ├── x09e.php │ │ ├── x09f.php │ │ ├── x0a0.php │ │ ├── x0a1.php │ │ ├── x0a2.php │ │ ├── x0a3.php │ │ ├── x0a4.php │ │ ├── x0ac.php │ │ ├── x0ad.php │ │ ├── x0ae.php │ │ ├── x0af.php │ │ ├── x0b0.php │ │ ├── x0b1.php │ │ ├── x0b2.php │ │ ├── x0b3.php │ │ ├── x0b4.php │ │ ├── x0b5.php │ │ ├── x0b6.php │ │ ├── x0b7.php │ │ ├── x0b8.php │ │ ├── x0b9.php │ │ ├── x0ba.php │ │ ├── x0bb.php │ │ ├── x0bc.php │ │ ├── x0bd.php │ │ ├── x0be.php │ │ ├── x0bf.php │ │ ├── x0c0.php │ │ ├── x0c1.php │ │ ├── x0c2.php │ │ ├── x0c3.php │ │ ├── x0c4.php │ │ ├── x0c5.php │ │ ├── x0c6.php │ │ ├── x0c7.php │ │ ├── x0c8.php │ │ ├── x0c9.php │ │ ├── x0ca.php │ │ ├── x0cb.php │ │ ├── x0cc.php │ │ ├── x0cd.php │ │ ├── x0ce.php │ │ ├── x0cf.php │ │ ├── x0d0.php │ │ ├── x0d1.php │ │ ├── x0d2.php │ │ ├── x0d3.php │ │ ├── x0d4.php │ │ ├── x0d5.php │ │ ├── x0d6.php │ │ ├── x0d7.php │ │ ├── x0f9.php │ │ ├── x0fa.php │ │ ├── x0fb.php │ │ ├── x0fc.php │ │ ├── x0fd.php │ │ ├── x0fe.php │ │ ├── x0ff.php │ │ ├── x1d4.php │ │ ├── x1d5.php │ │ ├── x1d6.php │ │ ├── x1d7.php │ │ └── x1f1.php │ └── stop-words │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── voku │ └── helper │ ├── StopWords.php │ ├── StopWordsLanguageNotExists.php │ └── stopwords │ ├── ar.php │ ├── bg.php │ ├── ca.php │ ├── cz.php │ ├── da.php │ ├── de.php │ ├── el.php │ ├── en.php │ ├── eo.php │ ├── es.php │ ├── et.php │ ├── fi.php │ ├── fr.php │ ├── hi.php │ ├── hr.php │ ├── hu.php │ ├── id.php │ ├── it.php │ ├── ka.php │ ├── lt.php │ ├── lv.php │ ├── nl.php │ ├── no.php │ ├── pl.php │ ├── pt.php │ ├── ro.php │ ├── ru.php │ ├── sk.php │ ├── sv.php │ ├── tr.php │ ├── uk.php │ └── vi.php ├── cache └── .htaccess ├── images └── .htaccess ├── index.php ├── lib ├── Cache.php ├── HtmlBase.php ├── Loader.php ├── Route.php ├── SiteRender.class.php ├── Sitemap.php ├── TinyHtmlMinifier.php └── recaptcha │ ├── ReCaptcha │ ├── ReCaptcha.php │ ├── RequestMethod.php │ ├── RequestMethod │ │ ├── Curl.php │ │ ├── CurlPost.php │ │ ├── Post.php │ │ ├── Socket.php │ │ └── SocketPost.php │ ├── RequestParameters.php │ └── Response.php │ └── autoload.php └── templates └── infortcms ├── 404.html ├── TemplateFunctions.php ├── assets ├── css │ ├── argon-design-system.css │ ├── argon-design-system.css.map │ ├── argon-design-system.min.css │ ├── custom.css │ ├── font-awesome.css │ ├── nucleo-icons.css │ └── nucleo-svg.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── nucleo-icons.eot │ ├── nucleo-icons.svg │ ├── nucleo-icons.ttf │ ├── nucleo-icons.woff │ └── nucleo-icons.woff2 ├── img │ ├── apple-icon.png │ ├── brand │ │ ├── blue.png │ │ ├── creativetim-black-slim.png │ │ ├── creativetim-white-slim.png │ │ └── white.png │ ├── favicon.png │ ├── icons │ │ ├── common │ │ │ ├── github.svg │ │ │ └── google.svg │ │ └── flags │ │ │ ├── AD.png │ │ │ ├── AE.png │ │ │ ├── AG.png │ │ │ ├── AM.png │ │ │ ├── AR.png │ │ │ ├── AT.png │ │ │ ├── AU.png │ │ │ ├── BE.png │ │ │ ├── BF.png │ │ │ ├── BG.png │ │ │ ├── BO.png │ │ │ ├── BR.png │ │ │ ├── CA.png │ │ │ ├── CD.png │ │ │ ├── CG.png │ │ │ ├── CH.png │ │ │ ├── CL.png │ │ │ ├── CM.png │ │ │ ├── CN.png │ │ │ ├── CO.png │ │ │ ├── CZ.png │ │ │ ├── DE.png │ │ │ ├── DJ.png │ │ │ ├── DK.png │ │ │ ├── DZ.png │ │ │ ├── EE.png │ │ │ ├── EG.png │ │ │ ├── ES.png │ │ │ ├── FI.png │ │ │ ├── FR.png │ │ │ ├── GA.png │ │ │ ├── GB.png │ │ │ ├── GM.png │ │ │ ├── GT.png │ │ │ ├── HN.png │ │ │ ├── HT.png │ │ │ ├── HU.png │ │ │ ├── ID.png │ │ │ ├── IE.png │ │ │ ├── IL.png │ │ │ ├── IN.png │ │ │ ├── IQ.png │ │ │ ├── IR.png │ │ │ ├── IT.png │ │ │ ├── JM.png │ │ │ ├── JO.png │ │ │ ├── JP.png │ │ │ ├── KG.png │ │ │ ├── KN.png │ │ │ ├── KP.png │ │ │ ├── KR.png │ │ │ ├── KW.png │ │ │ ├── KZ.png │ │ │ ├── LA.png │ │ │ ├── LB.png │ │ │ ├── LC.png │ │ │ ├── LS.png │ │ │ ├── LU.png │ │ │ ├── LV.png │ │ │ ├── MG.png │ │ │ ├── MK.png │ │ │ ├── ML.png │ │ │ ├── MM.png │ │ │ ├── MT.png │ │ │ ├── MX.png │ │ │ ├── NA.png │ │ │ ├── NE.png │ │ │ ├── NG.png │ │ │ ├── NI.png │ │ │ ├── NL.png │ │ │ ├── NO.png │ │ │ ├── OM.png │ │ │ ├── PA.png │ │ │ ├── PE.png │ │ │ ├── PG.png │ │ │ ├── PK.png │ │ │ ├── PL.png │ │ │ ├── PT.png │ │ │ ├── PY.png │ │ │ ├── QA.png │ │ │ ├── RO.png │ │ │ ├── RU.png │ │ │ ├── RW.png │ │ │ ├── SA.png │ │ │ ├── SE.png │ │ │ ├── SG.png │ │ │ ├── SL.png │ │ │ ├── SN.png │ │ │ ├── SO.png │ │ │ ├── SV.png │ │ │ ├── TD.png │ │ │ ├── TJ.png │ │ │ ├── TL.png │ │ │ ├── TR.png │ │ │ ├── TZ.png │ │ │ ├── UA.png │ │ │ ├── US.png │ │ │ ├── VE.png │ │ │ ├── VN.png │ │ │ └── YE.png │ ├── ill │ │ ├── 1.svg │ │ ├── ill-2.svg │ │ └── ill.png │ ├── logo.png │ └── nucleo-logo.svg ├── js │ ├── argon-design-system.js │ ├── argon-design-system.js.map │ ├── argon-design-system.min.js │ ├── core │ │ ├── bootstrap.min.js │ │ ├── jquery.min.js │ │ └── popper.min.js │ └── plugins │ │ ├── bootstrap-datepicker.min.js │ │ ├── bootstrap-switch.js │ │ ├── chartjs.min.js │ │ ├── datetimepicker.js │ │ ├── jquery.sharrre.min.js │ │ ├── moment.min.js │ │ ├── nouislider.min.js │ │ └── perfect-scrollbar.jquery.min.js └── scss │ ├── argon-design-system.scss │ └── argon-design-system │ ├── accordion.scss │ ├── alert.scss │ ├── avatar.scss │ ├── badge.scss │ ├── buttons.scss │ ├── card.scss │ ├── carousel.scss │ ├── close.scss │ ├── content.scss │ ├── custom-forms.scss │ ├── docs.scss │ ├── docs │ ├── clipboard-js.scss │ ├── component-examples.scss │ ├── content.scss │ ├── footer.scss │ ├── nav.scss │ ├── prism.scss │ ├── sidebar.scss │ └── variables.scss │ ├── dropdown.scss │ ├── footer.scss │ ├── forms.scss │ ├── functions.scss │ ├── global.scss │ ├── grid.scss │ ├── icons.scss │ ├── input-group.scss │ ├── kit-free.scss │ ├── list-group.scss │ ├── mixins.scss │ ├── mixins │ ├── alert.scss │ ├── background-variant.scss │ ├── badge.scss │ ├── buttons.scss │ ├── forms.scss │ ├── icon.scss │ ├── modals.scss │ └── popover.scss │ ├── modal.scss │ ├── nav.scss │ ├── navbar.scss │ ├── pagination.scss │ ├── popover.scss │ ├── progress.scss │ ├── reboot.scss │ ├── section.scss │ ├── separator.scss │ ├── theme.scss │ ├── type.scss │ ├── utilities.scss │ ├── utilities │ ├── backgrounds.scss │ ├── floating.scss │ ├── helper.scss │ ├── position.scss │ ├── shadows.scss │ ├── sizing.scss │ ├── spacing.scss │ ├── text.scss │ └── transform.scss │ ├── variables.scss │ ├── vendor │ ├── _bootstrap-datepicker.scss │ ├── datetimepicker.scss │ ├── headroom.scss │ ├── nouislider.scss │ └── scrollbar.scss │ └── vendors.scss ├── layout.html ├── manutencao.html └── partials ├── blog_listagem.html ├── blog_post.html ├── listagem.html ├── modal.html ├── post.html └── social_buttons.html /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/.gitignore -------------------------------------------------------------------------------- /admin/.htaccess: -------------------------------------------------------------------------------- 1 | ## Bloqueando acesso a diretórios via navegador ## 2 | Options All -Indexes 3 | 4 | RewriteEngine On 5 | RewriteCond %{REQUEST_FILENAME} !-f 6 | RewriteCond %{REQUEST_FILENAME} !-d 7 | RewriteRule ^(.*)$ index.php/$1 [L] 8 | -------------------------------------------------------------------------------- /admin/app/config/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/app/config/communication.php: -------------------------------------------------------------------------------- 1 | "", 4 | 'port' => "", 5 | 'name' => "app/database/infortcms.db", 6 | 'user' => "", 7 | 'pass' => "", 8 | 'type' => "sqlite", 9 | 'prep' => "1" 10 | ]; 11 | -------------------------------------------------------------------------------- /admin/app/config/ldap.ini: -------------------------------------------------------------------------------- 1 | server = ldap.company.com 2 | port = 389 3 | domain = company.com -------------------------------------------------------------------------------- /admin/app/config/log.php: -------------------------------------------------------------------------------- 1 | "", 4 | 'port' => "", 5 | 'name' => "app/database/log.db", 6 | 'user' => "", 7 | 'pass' => "", 8 | 'type' => "sqlite", 9 | 'prep' => "1" 10 | ]; -------------------------------------------------------------------------------- /admin/app/config/permission.php: -------------------------------------------------------------------------------- 1 | "", 4 | 'port' => "", 5 | 'name' => "app/database/infortcms.db", 6 | 'user' => "", 7 | 'pass' => "", 8 | 'type' => "sqlite", 9 | 'prep' => "1" 10 | //slog = SystemSqlLogService 11 | ]; 12 | -------------------------------------------------------------------------------- /admin/app/config/sistema.php: -------------------------------------------------------------------------------- 1 | "", 4 | 'port' => "", 5 | 'name' => "app/database/infortcms.db", 6 | 'user' => "", 7 | 'pass' => "", 8 | 'type' => "sqlite", 9 | 'prep' => "1" 10 | ]; 11 | -------------------------------------------------------------------------------- /admin/app/config/unit_database.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /admin/app/lib/util/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/app/model/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/app/model/admin/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/app/output/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/app/output/.gitignore -------------------------------------------------------------------------------- /admin/app/reports/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/app/resources/checkbox.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/app/resources/info-box.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 |
8 | {$title} 9 | {$value} 10 |
11 |
12 | -------------------------------------------------------------------------------- /admin/app/resources/public.html: -------------------------------------------------------------------------------- 1 | 2 |

3 | This is a public view test. 4 |

5 | -------------------------------------------------------------------------------- /admin/app/resources/system_database_browser.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | {$database_browser} 6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /admin/app/resources/system_information.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | {$value}% 8 |
9 |
10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /admin/app/resources/system_input_fuse_search.html: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /admin/app/resources/system_reset_password.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Olá {$name},
4 |

5 | A troca de senha para seu usuário foi solicitada.
6 | Caso você não tenha feito esta solicitação, ignore este e-mail.

7 | 8 | Para redefinir a senha, clique no link a seguir:
9 | Redefinir 10 |

11 | Atenciosamente,
12 | 13 | -------------------------------------------------------------------------------- /admin/app/service/auth/LdapAuthenticationService.php: -------------------------------------------------------------------------------- 1 | fromArray($request); 17 | $user->store(); 18 | TTransaction::close(); 19 | return $user; 20 | } 21 | } -------------------------------------------------------------------------------- /admin/app/service/rest/SystemUserGroupRestService.class.php: -------------------------------------------------------------------------------- 1 | getMessage(); 22 | } 23 | -------------------------------------------------------------------------------- /admin/files/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/files/documents/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /dev/null 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/files/documents/1/amostra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/files/documents/1/amostra.pdf -------------------------------------------------------------------------------- /admin/lib/VERSION: -------------------------------------------------------------------------------- 1 | 7.3 2 | -------------------------------------------------------------------------------- /admin/lib/adianti/base/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/lib/adianti/base/TStandardForm.php: -------------------------------------------------------------------------------- 1 | button > span 8 | { 9 | font-size: 17pt; 10 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tbreadcrumb/footer-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/adianti/include/tbreadcrumb/footer-arrow.png -------------------------------------------------------------------------------- /admin/lib/adianti/include/tbutton/tbutton.js: -------------------------------------------------------------------------------- 1 | function tbutton_enable_field(form_name, field) { 2 | setTimeout(function(){ 3 | $('button[name='+field+']').removeAttr('disabled'); 4 | $('button[name=btn_'+field+']').removeAttr('disabled'); 5 | $('#tbutton_'+field).removeAttr('disabled'); 6 | },1); 7 | } 8 | function tbutton_disable_field(form_name, field) { 9 | setTimeout(function(){ 10 | $('button[name='+field+']').attr('disabled', true); 11 | $('button[name=btn_'+field+']').attr('disabled', true); 12 | $('#tbutton_'+field).attr('disabled', true); 13 | },1); 14 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tdatetime/tdatetime.css: -------------------------------------------------------------------------------- 1 | .datetimepicker 2 | { 3 | font-size: 13px !important; 4 | line-height: 14px; 5 | } 6 | 7 | .datetimepicker .day, .datetimepicker .hour, .datetimepicker .minute 8 | { 9 | border: 1px solid #e0e0e0; 10 | border-spacing: 0; 11 | 12 | } 13 | 14 | .datetimepicker .prev, .datetimepicker .next, .datetimepicker .cw, .datetimepicker .switch 15 | { 16 | background: whiteSmoke; 17 | } 18 | 19 | .datetimepicker.dropdown-menu th, 20 | .datetimepicker.datepicker-inline th, 21 | .datetimepicker.dropdown-menu td, 22 | .datetimepicker.datepicker-inline td { 23 | padding: 5px; 24 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tdbentry/tdbentry.js: -------------------------------------------------------------------------------- 1 | function tdbentry_start( field_name, url, min ) 2 | { 3 | $('input[name="'+field_name+'"]').autocomplete( { serviceUrl: url, minChars: min } ); 4 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/texpander/texpander.js: -------------------------------------------------------------------------------- 1 | function texpander_start() 2 | { 3 | $('.texpander-container').click(function (e) 4 | { 5 | e.stopPropagation(); 6 | }); 7 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tfile/tfile.css: -------------------------------------------------------------------------------- 1 | .tfile_row_wrapper 2 | { 3 | margin-top:1px; 4 | } 5 | 6 | .tfile_link_wrapper 7 | { 8 | float:left; 9 | padding:4px; 10 | margin-top:1px; 11 | overflow:auto; 12 | } 13 | 14 | .tfile_del_icon 15 | { 16 | cursor: pointer; 17 | float:left; 18 | padding:4px; 19 | } 20 | 21 | .tfile_row_2 22 | { 23 | float:left; 24 | width:100%; 25 | overflow:auto; 26 | margin-top:2px; 27 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tlabel/tlabel.css: -------------------------------------------------------------------------------- 1 | label 2 | { 3 | margin: 0px; 4 | font-weight: normal; 5 | font-size: 10pt; 6 | font-family: Helvetica,Arial,Verdana; 7 | color: #333333; 8 | -moz-user-select : none; 9 | -webkit-user-select : none; 10 | user-select : none; 11 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tmenubar/tmenubar.js: -------------------------------------------------------------------------------- 1 | function tmenubar_start() 2 | { 3 | $(document).ready( function() { 4 | $('.dropdown-toggle').dropdown() 5 | }); 6 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tmultisearch/tmultisearch.css: -------------------------------------------------------------------------------- 1 | .select2-dropdown 2 | { 3 | z-index: 4051; 4 | } 5 | 6 | .select2-dropdown .select2-search__field:focus, .select2-search--inline .select2-search__field:focus 7 | { 8 | border:none !important; 9 | } 10 | 11 | .select2-selection__choice 12 | { 13 | white-space: normal !important; 14 | } 15 | 16 | .select2-disable 17 | { 18 | width: 100%; 19 | background: #eeeeee; 20 | height: calc(100% + 1px); 21 | position: absolute; 22 | opacity: 0.8; 23 | z-index: 1; 24 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tpagenavigation/tpagenavigation.css: -------------------------------------------------------------------------------- 1 | .tpagenavigation 2 | { 3 | padding-top: 7px; 4 | } 5 | 6 | .tpagenavigation > ul.pagination 7 | { 8 | margin: 0; 9 | } 10 | 11 | .tpagenavigation li.off a 12 | { 13 | color: #c0c0c0; 14 | } 15 | 16 | .tpagenavigation_resume 17 | { 18 | width: 100%; 19 | text-align: center; 20 | color: gray; 21 | padding: 2px; 22 | padding-top: 7px; 23 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tscroll/tscroll.css: -------------------------------------------------------------------------------- 1 | .tscroll 2 | { 3 | overflow: auto; 4 | padding: 4px; 5 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tsourcecode/tsourcecode.css: -------------------------------------------------------------------------------- 1 | .tsourcecode code 2 | { 3 | padding: 0; 4 | font-size: 100%; 5 | color: auto; 6 | border-radius: 0; 7 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/tspinner/tspinner.css: -------------------------------------------------------------------------------- 1 | .ui-spinner { 2 | border: 1px solid #a0a0a0; 3 | height: 28px; 4 | } 5 | 6 | .ui-spinner input { 7 | margin-left: 0px; 8 | margin-right: 15px; 9 | margin-top: 0px; 10 | border: none; 11 | border-right: 1px solid silver; 12 | } 13 | 14 | .fb-inline-field-container .ui-spinner { 15 | width: 100% 16 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/ttext/ttext.css: -------------------------------------------------------------------------------- 1 | .tfield[widget="ttext"] 2 | { 3 | resize: none; 4 | } -------------------------------------------------------------------------------- /admin/lib/adianti/include/ttreeview/ttreeview.js: -------------------------------------------------------------------------------- 1 | function ttreeview_start( id, collapsed ) 2 | { 3 | $( id ).treeview({ 4 | persist: 'location', 5 | animated: 'fast', 6 | collapsed: collapsed 7 | }); 8 | } -------------------------------------------------------------------------------- /admin/lib/adianti/log/AdiantiLoggerInterface.php: -------------------------------------------------------------------------------- 1 | li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /admin/lib/independent/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /admin/lib/independent/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /admin/lib/independent/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /admin/lib/independent/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /admin/lib/independent/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /admin/lib/independent/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /admin/lib/independent/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /admin/lib/independent/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /admin/lib/independent/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /admin/lib/independent/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/independent/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/buttons.gif -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ico_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ico_folder.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ico_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ico_folder_open.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/select2-spinner.gif -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/select2.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/select2x2.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/toolbar.gif -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/treeview-default-line.gif -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/treeview-default.gif -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /admin/lib/jquery/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/lib/jquery/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /admin/lib/jquery/jquery-plugins.txt: -------------------------------------------------------------------------------- 1 | lib/jquery/js/jquery.scrollto.min.js 2 | lib/jquery/js/jquery.blockUI.min.js 3 | lib/jquery/js/jquery.editinplace.min.js 4 | lib/jquery/js/jquery.autocomplete.min.js 5 | lib/jquery/js/jquery.treeview.min.js 6 | lib/jquery/js/jquery.dataTables.min.js 7 | lib/jquery/js/jquery.spinner.min.js 8 | lib/jquery/js/dataTables.responsive.min.js 9 | lib/jquery/js/select2.js 10 | lib/jquery/js/jquery.mask.min.js 11 | lib/jquery/js/jquery.maskMoney.js 12 | -------------------------------------------------------------------------------- /admin/lib/math/translationstrategy/TranslationStrategyInterface.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface TranslationStrategyInterface 11 | { 12 | public function translate(array $tokens); 13 | } 14 | -------------------------------------------------------------------------------- /admin/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Adianti Template", 3 | "name": "Adianti Template", 4 | "icons": [ 5 | { 6 | "src": "app/images/icon.png", 7 | "type": "image/png", 8 | "sizes": "180x180" 9 | } 10 | ], 11 | "background_color": "#fff", 12 | "display": "standalone", 13 | "theme_color": "#FFFFFF" 14 | } 15 | -------------------------------------------------------------------------------- /admin/rest/user-delete.php: -------------------------------------------------------------------------------- 1 | getMessage(); 12 | } -------------------------------------------------------------------------------- /admin/rest/user-get.php: -------------------------------------------------------------------------------- 1 | getMessage(); 14 | } -------------------------------------------------------------------------------- /admin/rest/user-list.php: -------------------------------------------------------------------------------- 1 | getMessage(); 16 | } -------------------------------------------------------------------------------- /admin/rest/user-update.php: -------------------------------------------------------------------------------- 1 | getMessage(); 13 | } -------------------------------------------------------------------------------- /admin/tmp/.htaccess: -------------------------------------------------------------------------------- 1 | AuthUserFile /root/.htpasswd 2 | AuthType Basic 3 | AuthName "restricted area" 4 | require valid-user 5 | -------------------------------------------------------------------------------- /admin/vendor/adianti/pdfdesigner/TPDFDesigner.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | . 5 | 6 | 7 | 8 | ../src/ 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /admin/vendor/composer/include_paths.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/res/broken_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/dompdf/dompdf/lib/res/broken_image.png -------------------------------------------------------------------------------- /admin/vendor/dompdf/dompdf/lib/res/broken_image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /admin/vendor/firebase/php-jwt/src/BeforeValidException.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | Useful committers: 6 | - Lee Bradley 7 | - Oliver Kuckertz 8 | - Ryan Rawdon 9 | 10 | Useful patch submitters: 11 | - Ralf van der Enden 12 | - Jean-Bernard Yata : French translation 13 | - James Price : Sass/Theme/Grunt work 14 | - Stefan Briest : Cups functionality, CSS bug reporting, misc ideas. 15 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:14.04 2 | 3 | RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -y dist-upgrade 4 | RUN DEBIAN_FRONTEND=noninteractive apt-get -y install apache2 libapache2-mod-php5 curl 5 | 6 | RUN rm /var/www/html/index.html 7 | 8 | ENV APACHE_RUN_USER www-data 9 | ENV APACHE_RUN_GROUP www-data 10 | ENV APACHE_LOG_DIR /var/log/apache2 11 | ENV APACHE_LOCK_DIR /var/lock/apache2 12 | ENV APACHE_PID_FILE /var/run/apache2/apache2.pid 13 | 14 | CMD ["/usr/sbin/apache2", "-D", "FOREGROUND"] 15 | 16 | ADD . /var/www/html/ 17 | 18 | EXPOSE 80 19 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | services: 3 | linfo: 4 | container_name: linfo 5 | build: 6 | context: ./ 7 | dockerfile: Dockerfile 8 | ports: 9 | - "8081:80" 10 | volumes: 11 | - .:/var/www/html 12 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/favicon.ico -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_alpinelinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_alpinelinux.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_arch.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_centos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_centos.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_debian.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_fedora.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_linuxmint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_linuxmint.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_opensuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_opensuse.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_raspbian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_raspbian.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_redhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_redhat.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/distro_ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/distro_ubuntu.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/logo.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_darwin.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_dragonflybsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_dragonflybsd.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_freebsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_freebsd.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_linux.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_linux.gif -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_minix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_minix.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_netbsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_netbsd.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_openbsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_openbsd.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_solaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_solaris.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_windows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_windows.gif -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/os_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/os_windows.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_docker.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_hyper-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_hyper-v.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_kvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_kvm.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_lxc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_lxc.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_openvz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_openvz.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_veertu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_veertu.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_virtualbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_virtualbox.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_vmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_vmware.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/icons/vm_xen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/layout/icons/vm_xen.png -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/mobile.css: -------------------------------------------------------------------------------- 1 | .col2 .col{width:100%}.infoTable{margin:0px 0px 5px 0px}#header{padding:0px 0px 5px 2px}.filesystem_mounts table th:nth-child(2),.filesystem_mounts table td:nth-child(2),.filesystem_mounts table th:nth-child(3),.filesystem_mounts table td:nth-child(3),.filesystem_mounts table th:nth-child(4),.filesystem_mounts table td:nth-child(4),.network_devices table th:nth-child(2),.network_devices table td:nth-child(2),.drives table th:nth-child(2),.drives table td:nth-child(2),.drives table th:nth-child(3),.drives table td:nth-child(3){display:none}#foot_time{margin:0}#foot{margin:5px 5px 0px 5px} 2 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/old_ie.css: -------------------------------------------------------------------------------- 1 | /* Versions of IE under 8 suck even more than usual */ 2 | 3 | /* This make the columns actually appear side by side since it's too feeble to undersand widths correctly. */ 4 | .col2 .col {width: 49%;} 5 | 6 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/layout/sass/compilecss.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Joe Gillotti - 7/19/14 - MIT 4 | # Compile sass templates to css using http://sass-lang.com/ 5 | for file in theme_*.sass; do 6 | sass --unix-newlines --style compressed --sourcemap=none $file ../${file%.sass}.css 7 | done 8 | 9 | # Compile mobile sass to css 10 | sass --unix-newlines --style compressed --sourcemap=none mobile.sass ../mobile.css 11 | # Compile icon sass to css 12 | sass --unix-newlines --style compressed --sourcemap=none icons.sass ../icons.css 13 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/linfo-curses: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export LINFO_NCURSES=1 4 | 5 | /usr/bin/env php index.php "$@" 6 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/linfo-dev-server: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec php -S 0:8081 index.php 4 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/src/Linfo/Parsers/IO.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/tests/files/linux/generic_distro/proc/sys/kernel/hostname: -------------------------------------------------------------------------------- 1 | machina.jrgp.us 2 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/tests/files/linux/generic_distro/proc/version: -------------------------------------------------------------------------------- 1 | Linux version 3.17.3 (joe@machina.jrgp.us) (gcc version 4.7.2 (Debian 4.7.2-5) ) #1 SMP Thu Nov 20 16:45:36 UTC 2014 2 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/tests/files/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/linfo/linfo/tests/files/test2.txt -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/tests/files/varfile.php: -------------------------------------------------------------------------------- 1 | set(['1', '2', '3'], 'foo'); 17 | $result = $d->todict(); 18 | $this->assertEquals($result['1']['2']['3'], 'foo'); 19 | $this->assertEquals($d->get(['1', '2', '3']), 'foo'); 20 | $this->assertEquals($d->get(['not', 'found']), null); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/tests/linfo/LinfoErrorTest.php: -------------------------------------------------------------------------------- 1 | assertCount(2, Errors::show()); 17 | } 18 | 19 | public function tearDown(): void 20 | { 21 | Errors::clear(); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/tests/linfo/LinfoTimerTest.php: -------------------------------------------------------------------------------- 1 | assertCount(2, Timer::getResults()); 18 | } 19 | 20 | public function tearDown(): void 21 | { 22 | Timer::clear(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /admin/vendor/linfo/linfo/tests/test_lang.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /admin/vendor/pablodalloglio/fpdf/font/courierb.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /admin/vendor/pablodalloglio/fpdf/font/courierbi.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /admin/vendor/pablodalloglio/fpdf/font/courieri.php: -------------------------------------------------------------------------------- 1 | array(0,128),128=>8364,130=>8218,131=>402,132=>8222,133=>8230,134=>array(8224,2),136=>710,137=>8240,138=>352,139=>8249,140=>338,142=>381,145=>array(8216,2),147=>array(8220,2),149=>8226,150=>array(8211,2),152=>732,153=>8482,154=>353,155=>8250,156=>339,158=>382,159=>376,160=>array(160,96)); 10 | ?> 11 | -------------------------------------------------------------------------------- /admin/vendor/pablodalloglio/fpdf/license.txt: -------------------------------------------------------------------------------- 1 | Permission is hereby granted, free of charge, to any person obtaining a copy 2 | of this software to use, copy, modify, distribute, sublicense, and/or sell 3 | copies of the software, and to permit persons to whom the software is furnished 4 | to do so. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/.gitattributes: -------------------------------------------------------------------------------- 1 | *.json text 2 | *.xml text 3 | *.php text 4 | *.LGPL text 5 | *.md text 6 | *.skel text 7 | *.css text 8 | *.inc text 9 | *.js text 10 | *.html text 11 | *.txt text 12 | *.svg text 13 | -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | composer.lock 3 | vendor 4 | .idea 5 | .project 6 | -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/.htaccess: -------------------------------------------------------------------------------- 1 | #deny from all -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/sample-fonts/IntelClear-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-font-lib/sample-fonts/IntelClear-Light.ttf -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/sample-fonts/NotoSansShavian-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-font-lib/sample-fonts/NotoSansShavian-Regular.ttf -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/src/FontLib/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-font-lib/src/FontLib/Autoloader.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/src/FontLib/Exception/FontNotFoundException.php: -------------------------------------------------------------------------------- 1 | message = 'Font not found in: ' . $fontPath; 10 | } 11 | } -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/src/FontLib/OpenType/File.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace FontLib\OpenType; 10 | 11 | /** 12 | * Open Type font, the same as a TrueType one. 13 | * 14 | * @package php-font-lib 15 | */ 16 | class File extends \FontLib\TrueType\File { 17 | // 18 | } 19 | -------------------------------------------------------------------------------- /admin/vendor/phenx/php-font-lib/src/FontLib/OpenType/TableDirectoryEntry.php: -------------------------------------------------------------------------------- 1 | 6 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 7 | */ 8 | 9 | namespace FontLib\OpenType; 10 | 11 | /** 12 | * Open Type Table directory entry, the same as a TrueType one. 13 | * 14 | * @package php-font-lib 15 | */ 16 | class TableDirectoryEntry extends \FontLib\TrueType\TableDirectoryEntry { 17 | 18 | } 19 | -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/.gitattributes: -------------------------------------------------------------------------------- 1 | *.json text 2 | *.xml text 3 | *.php text 4 | *.md text 5 | *.css text 6 | *.js text 7 | *.html text 8 | *.htm text 9 | *.svg text 10 | -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/.gitignore: -------------------------------------------------------------------------------- 1 | excluded 2 | gui 3 | .idea -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | - 7.1 7 | - 7.2 8 | - nightly 9 | 10 | before_script: 11 | - composer self-update 12 | - composer install --prefer-source --no-interaction --dev 13 | 14 | script: phpunit 15 | 16 | matrix: 17 | allow_failures: 18 | - php: 5.6 19 | - php: nightly 20 | fast_finish: true 21 | -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/DefaultStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/DefaultStyle.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Gradient/Stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Gradient/Stop.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/AbstractTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/AbstractTag.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Anchor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Anchor.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Circle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Circle.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/ClipPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/ClipPath.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Ellipse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Ellipse.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Group.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Image.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Line.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/LinearGradient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/LinearGradient.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Path.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Polygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Polygon.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Polyline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Polyline.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/RadialGradient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/RadialGradient.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Rect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Rect.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/Stop.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/Svg/Tag/StyleTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phenx/php-svg-lib/src/Svg/Tag/StyleTag.php -------------------------------------------------------------------------------- /admin/vendor/phenx/php-svg-lib/src/autoload.php: -------------------------------------------------------------------------------- 1 | 6 | * @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html 7 | */ 8 | 9 | spl_autoload_register(function($class) { 10 | if (0 === strpos($class, "Svg")) { 11 | $file = str_replace('\\', DIRECTORY_SEPARATOR, $class); 12 | $file = realpath(__DIR__ . DIRECTORY_SEPARATOR . $file . '.php'); 13 | if (file_exists($file)) { 14 | include_once $file; 15 | } 16 | } 17 | }); -------------------------------------------------------------------------------- /admin/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.4.0 -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/README.md: -------------------------------------------------------------------------------- 1 | PHPRtfLite 2 | === 3 | PHPRtfLite is an API enabling developers to create rtf documents with php. PHPRtfLite is designed on OOP principles. 4 | 5 | Project links 6 | --- 7 | * [PHPRtfLite Web Site](https://sourceforge.net/projects/phprtf/) 8 | * [PHPRtfLite Documentation](http://sigma-scripts.de/phprtflite/docs/) 9 | 10 | Features 11 | --- 12 | * Paragraphs 13 | * Sections 14 | * Fonts 15 | * Images 16 | * Tables 17 | * Nested Tables 18 | * Footer / Header 19 | * Footnotes / Endnotes 20 | * UTF8 support 21 | * Enumerations / Numberings 22 | * Form fields (Checkbox, Dropdown, Text) -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phprtflite/phprtflite", 3 | "description": "PHPRtfLite is an API enabling developers to create rtf documents with php.", 4 | "license": "GPL-3.0", 5 | "authors": [ 6 | { 7 | "name": "Steffen Zeidler", 8 | "email": "sigma_z@sigma-scripts.de" 9 | } 10 | ], 11 | "minimum-stability": "stable", 12 | "require": { 13 | 14 | }, 15 | "autoload": { 16 | "psr-0": { 17 | "PHPRtfLite": "lib/" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/bug-feature.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/bug-feature.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/document-settings.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/document-settings.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/enumerations-numberings.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/enumerations-numberings.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/feature-overview.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/feature-overview.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/footnotes-endnotes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/footnotes-endnotes.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/formatting.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/formatting.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/formfields.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/formfields.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/getting-started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/getting-started.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/header-footer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/header-footer.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/images.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/images.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/intro.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/intro.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/introduction.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/license.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/license.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/page-layouts.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/page-layouts.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/sections.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/sections.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/styling.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/styling.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/tables.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/tables.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/tutorials/introducation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/tutorials/introducation.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/doctrees/tutorials/introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/doctrees/tutorials/introduction.doctree -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 08095ac2ea8629322b94bdd00140dfcb 4 | tags: fbb0d17656682115ca4d033fb2f83ba1 5 | -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_sources/bug-feature.txt: -------------------------------------------------------------------------------- 1 | Bugs and feature requests 2 | ************************* 3 | 4 | If you find a bug or think it should work in another way, or you have a good idea to improve the library, please let me know. 5 | 6 | - Please submit bugs at ``_. 7 | - Please submit feature requests at ``_. 8 | - Please submit errors found in the documentation to: sigma_z(at)web.de -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_sources/feature-overview.txt: -------------------------------------------------------------------------------- 1 | Feature overview 2 | **************** 3 | 4 | These are the main features PHPRtfLite offers: 5 | 6 | - Table support (even nested) 7 | - Image support 8 | - Header/Footer 9 | - Hyperlinks 10 | - Footnotes/Endnotes 11 | - Form fields (Checkbox, Dropdown, Text) 12 | - Enumerations/Numberings 13 | - UTF-8 support 14 | -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_sources/footnotes-endnotes.txt: -------------------------------------------------------------------------------- 1 | Footnotes / Endnotes 2 | ********************* 3 | 4 | The difference between foot- and endnotes is that footnotes appear directly after the section where they are defined while endnotes appear at the page bottom. There is no difference in the handling. They can be defined for tables cells and sections. 5 | 6 | Foot note example: 7 | 8 | .. code-block:: php 9 | 10 | writeText('Text ...'); 12 | $section->addFootnote('This is the footnote text'); 13 | $section->writeText('Text after footnote mark ...'); -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_sources/intro.txt: -------------------------------------------------------------------------------- 1 | .. topic:: Topic Title 2 | 3 | Labber sülz -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_sources/styling.txt: -------------------------------------------------------------------------------- 1 | Sytling 2 | ************** 3 | 4 | 5 | Fonts 6 | =========== 7 | 8 | 9 | Paragraph formatting 10 | ==================== 11 | 12 | 13 | Borders 14 | =========== 15 | 16 | -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_sources/tutorials/introducation.txt: -------------------------------------------------------------------------------- 1 | .. topic:: Topic Title 2 | 3 | Labber sülz -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_sources/tutorials/introduction.txt: -------------------------------------------------------------------------------- 1 | .. introduction: 2 | 3 | ************ 4 | Introduction 5 | ************ 6 | 7 | Labber sülz 8 | 9 | Products can also be created: 10 | 11 | .. code-block:: php 12 | 13 | name = $newProductName; 18 | 19 | $entityManager->persist($product); 20 | $entityManager->flush(); 21 | -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/html/_static/file.png -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/html/_static/minus.png -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/html/_static/plus.png -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/docs/html/objects.inv -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/generated/hello_world.rtf: -------------------------------------------------------------------------------- 1 | {\rtf\ansi\deff0\fs20 2 | {\fonttbl{\f0 Times New Roman;}} 3 | {\colortbl;\red0\green0\blue0;} 4 | {\info 5 | } 6 | \paperw11907 \paperh16840 \deftab1298 \margl1701 \margr1701 \margt567 \margb1134 \pgnstart1\ftnnar \aftnnrlc \ftnstart1 \aftnstart1 7 | \pard \qc {\fs24 \i Hello \b world\b0 \i0 .} 8 | 9 | } -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/hello_world.php: -------------------------------------------------------------------------------- 1 | addSection(); 11 | $sect->writeText('Hello world.', new PHPRtfLite_Font(12), new PHPRtfLite_ParFormat(PHPRtfLite_ParFormat::TEXT_ALIGN_CENTER)); 12 | 13 | // save rtf document 14 | $rtf->save($dir . '/generated/' . basename(__FILE__, '.php') . '.rtf'); -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/sources/cats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/samples/sources/cats.jpg -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/sources/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/samples/sources/html.png -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/sources/rtf_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/samples/sources/rtf_thumb.jpg -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/sources/test.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/samples/sources/test.wmf -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/sources/utf8.txt: -------------------------------------------------------------------------------- 1 | English text: Hello world 2 | Lithuanian text: Lietuviškos raidės ąčęėįšųūžĄČĘĖĮŠŲŪŽ 3 | Russian text: русский техт. 4 | French text: le code à côté de 5 | Symbol: ■ -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/samples/sources/word_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/admin/vendor/phprtflite/phprtflite/samples/sources/word_thumb.jpg -------------------------------------------------------------------------------- /admin/vendor/phprtflite/phprtflite/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | . 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /admin/vendor/picqer/php-barcode-generator/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | vendor 4 | composer.lock -------------------------------------------------------------------------------- /admin/vendor/picqer/php-barcode-generator/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | - hhvm 7 | 8 | sudo: false 9 | 10 | install: composer install --no-interaction --prefer-source 11 | 12 | script: vendor/bin/phpunit -------------------------------------------------------------------------------- /admin/vendor/picqer/php-barcode-generator/src/Exceptions/BarcodeException.php: -------------------------------------------------------------------------------- 1 | iLineNo = $iLineNo; 9 | if (!empty($iLineNo)) { 10 | $sMessage .= " [line no: $iLineNo]"; 11 | } 12 | parent::__construct($sMessage); 13 | } 14 | 15 | public function getLineNo() { 16 | return $this->iLineNo; 17 | } 18 | } -------------------------------------------------------------------------------- /admin/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Renderable.php: -------------------------------------------------------------------------------- 1 | implode(' ', $this->aComponents); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /admin/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/PrimitiveValue.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | tests 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /admin/vendor/sabberworm/php-css-parser/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /admin/vendor/sabberworm/php-css-parser/tests/quickdump.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | parse(); 10 | echo "\n".'#### Input'."\n\n```css\n"; 11 | print $sSource; 12 | 13 | echo "\n```\n\n".'#### Structure (`var_dump()`)'."\n\n```php\n"; 14 | var_dump($oDoc); 15 | 16 | echo "\n```\n\n".'#### Output (`render()`)'."\n\n```css\n"; 17 | print $oDoc->render(); 18 | 19 | echo "\n```\n"; 20 | 21 | -------------------------------------------------------------------------------- /admin/vendor/tburry/pquery/autoload.php: -------------------------------------------------------------------------------- 1 | =7.0" 14 | 15 | ## [1.2.0] - 2017-05-22 16 | ### Changed 17 | - add more languages 18 | 19 | ## [1.1.0] - 2017-05-12 20 | ### Changed 21 | - add more languages 22 | 23 | ## [1.0.0] - 2017-05-05 24 | ### Changed 25 | - init 26 | -------------------------------------------------------------------------------- /admin/vendor/voku/stop-words/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "voku/stop-words", 3 | "description": "Stop-Words via PHP", 4 | "keywords": [ 5 | "stop-words", 6 | "stop words" 7 | ], 8 | "type": "library", 9 | "license": "MIT", 10 | "authors": [ 11 | { 12 | "name": "Lars Moelleken", 13 | "homepage": "http://www.moelleken.org/" 14 | } 15 | ], 16 | "autoload": { 17 | "psr-4": { 18 | "voku\\": "src/voku/" 19 | } 20 | }, 21 | "require": { 22 | "php": ">=7.0.0" 23 | }, 24 | "require-dev": { 25 | "phpunit/phpunit": "~6.0" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /admin/vendor/voku/stop-words/src/voku/helper/StopWordsLanguageNotExists.php: -------------------------------------------------------------------------------- 1 | start() ) 17 | { 18 | new TSession; 19 | 20 | $start = new Route; 21 | $start->run(); 22 | } 23 | // Terminando o cache 24 | $cache->end(); 25 | 26 | chdir('..'); 27 | -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /templates/infortcms/assets/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /templates/infortcms/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/apple-icon.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/brand/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/brand/blue.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/brand/creativetim-black-slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/brand/creativetim-black-slim.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/brand/creativetim-white-slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/brand/creativetim-white-slim.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/brand/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/brand/white.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/favicon.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/AD.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/AE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/AG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/AM.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/AR.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/AT.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/AU.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/BE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/BF.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/BG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/BO.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/BR.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CD.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CH.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CL.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CM.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CN.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CO.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/CZ.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/DE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/DJ.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/DK.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/DZ.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/EE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/EG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/ES.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/FI.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/FR.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/GA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/GB.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/GM.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/GT.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/HN.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/HT.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/HU.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/ID.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/IE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/IL.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/IN.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/IQ.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/IR.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/IT.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/JM.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/JO.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/JP.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/KG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/KN.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/KP.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/KR.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/KW.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/KZ.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/LA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/LB.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/LC.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/LS.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/LU.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/LV.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/MG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/MK.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/ML.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/MM.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/MT.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/MX.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/NA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/NE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/NG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/NI.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/NL.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/NO.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/OM.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/PA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/PE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/PG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/PK.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/PL.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/PT.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/PY.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/QA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/RO.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/RU.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/RW.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/SA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/SE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/SG.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/SL.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/SN.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/SO.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/SV.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/TD.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/TJ.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/TL.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/TR.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/TZ.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/UA.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/US.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/VE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/VN.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/icons/flags/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/icons/flags/YE.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/ill/ill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/ill/ill.png -------------------------------------------------------------------------------- /templates/infortcms/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/img/logo.png -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/scss/argon-design-system/accordion.scss -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/carousel.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap carousel 2 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inforthub/inFORTCMS/fac251009b1c8a685471bfb7e55045f78398526d/templates/infortcms/assets/scss/argon-design-system/content.scss -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/docs.scss: -------------------------------------------------------------------------------- 1 | 2 | @import "docs/variables"; 3 | @import "docs/clipboard-js"; 4 | @import "docs/component-examples"; 5 | @import "docs/content"; 6 | @import "docs/footer"; 7 | @import "docs/nav"; 8 | @import "docs/prism"; 9 | @import "docs/sidebar"; 10 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/docs/variables.scss: -------------------------------------------------------------------------------- 1 | // Local docs variables 2 | $ct-primary: theme-color("primary") !default; 3 | $ct-primary-bright: lighten(saturate($ct-primary, 5%), 15%) !default; 4 | $ct-primary-light: rgba(255, 255, 255, .9) !default; 5 | $ct-dark: #2a2730 !default; 6 | $ct-download: #ffe484 !default; 7 | $ct-info: #5bc0de !default; 8 | $ct-warning: #f0ad4e !default; 9 | $ct-danger: #d9534f !default; 10 | 11 | $ct-sidebar-bg: #f5f7f9; 12 | $ct-sidebar-border-color: #e6ecf1; 13 | 14 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/grid.scss: -------------------------------------------------------------------------------- 1 | @include media-breakpoint-up(lg) { 2 | .container-lg { 3 | max-width: 1160px; 4 | } 5 | } -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/mixins.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/alert"; 2 | @import "mixins/badge"; 3 | @import "mixins/background-variant"; 4 | @import "mixins/buttons"; 5 | @import "mixins/forms"; 6 | @import "mixins/icon"; 7 | @import "mixins/modals"; 8 | @import "mixins/popover"; 9 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/mixins/alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: color-yiq($background); 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/mixins/badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: saturate(darken($bg, 10%), 10); 3 | background-color: transparentize(lighten($bg, 25%), .5); 4 | 5 | &[href] { 6 | @include hover-focus { 7 | color: color-yiq($bg); 8 | text-decoration: none; 9 | background-color: darken($bg, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/mixins/icon.scss: -------------------------------------------------------------------------------- 1 | @mixin icon-shape-variant($color) { 2 | color: saturate(darken($color, 10%), 10); 3 | background-color: transparentize(lighten($color, 10%), .5); 4 | } -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/mixins/modals.scss: -------------------------------------------------------------------------------- 1 | @mixin modal-variant($background) { 2 | .modal-title { 3 | color: color-yiq($background); 4 | } 5 | .modal-header, 6 | .modal-footer { 7 | border-color: rgba(color-yiq($background), .075); 8 | } 9 | .modal-content { 10 | background-color: $background; 11 | color: color-yiq($background); 12 | 13 | .heading { 14 | color: color-yiq($background); 15 | } 16 | } 17 | 18 | .close { 19 | &>span:not(.sr-only) { 20 | color: $white; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/modal.scss: -------------------------------------------------------------------------------- 1 | .modal-content { 2 | border: 0; 3 | @if $enable-rounded { 4 | border-radius: $modal-content-border-radius; 5 | } @else { 6 | border-radius: 0; 7 | } 8 | } 9 | 10 | 11 | .modal-fluid { 12 | .modal-dialog { 13 | margin-top: 0; 14 | margin-bottom: 0; 15 | } 16 | .modal-content { 17 | border-radius: 0; 18 | } 19 | } 20 | 21 | @each $color, $value in $theme-colors { 22 | .modal-#{$color} { 23 | @include modal-variant($value); 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/popover.scss: -------------------------------------------------------------------------------- 1 | .popover { 2 | border: 0; 3 | } 4 | 5 | .popover-header { 6 | font-weight: $font-weight-bold; 7 | } 8 | 9 | // Alternative colors 10 | @each $color, $value in $theme-colors { 11 | .popover-#{$color} { 12 | @include popover-variant($value); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/reboot.scss: -------------------------------------------------------------------------------- 1 | iframe { 2 | border: 0; 3 | } 4 | 5 | figcaption, 6 | figure, 7 | main { 8 | display: block; 9 | } 10 | 11 | main { 12 | overflow: hidden; 13 | } 14 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/utilities.scss: -------------------------------------------------------------------------------- 1 | @import "utilities/backgrounds"; 2 | @import "utilities/floating"; 3 | @import "utilities/helper"; 4 | @import "utilities/position"; 5 | @import "utilities/sizing"; 6 | @import "utilities/spacing"; 7 | @import "utilities/shadows"; 8 | @import "utilities/text"; 9 | @import "utilities/transform"; 10 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/utilities/position.scss: -------------------------------------------------------------------------------- 1 | @each $size, $value in $spacers { 2 | .top-#{$size} { 3 | top: $value; 4 | } 5 | .right-#{$size} { 6 | right: $value; 7 | } 8 | .bottom-#{$size} { 9 | bottom: $value; 10 | } 11 | .left-#{$size} { 12 | left: $value; 13 | } 14 | } 15 | 16 | .center { 17 | left: 50%; 18 | transform: translateX(-50%); 19 | } -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/utilities/shadows.scss: -------------------------------------------------------------------------------- 1 | [class*="shadow"] { 2 | @if $enable-transitions { 3 | transition: $transition-base; 4 | } 5 | } 6 | 7 | .shadow-sm--hover:hover { box-shadow: $box-shadow-sm !important; } 8 | .shadow--hover:hover { box-shadow: $box-shadow !important; } 9 | .shadow-lg--hover:hover { box-shadow: $box-shadow-lg !important; } 10 | .shadow-none--hover:hover { box-shadow: none !important; } 11 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/utilities/sizing.scss: -------------------------------------------------------------------------------- 1 | // Height values in vh 2 | 3 | .h-100vh { 4 | height: 100vh !important; 5 | } 6 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/utilities/transform.scss: -------------------------------------------------------------------------------- 1 | @include media-breakpoint-up(lg) { 2 | .transform-perspective-right { 3 | transform: scale(1) perspective(1040px) rotateY(-11deg) rotateX(2deg) rotate(2deg); 4 | } 5 | .transform-perspective-left{ 6 | transform: scale(1) perspective(2000px) rotateY(11deg) rotateX(2deg) rotate(-2deg) 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/vendor/headroom.scss: -------------------------------------------------------------------------------- 1 | .headroom { 2 | will-change: transform; 3 | background-color: inherit; 4 | @include transition($transition-base); 5 | } 6 | .headroom--pinned { 7 | @extend .position-fixed; 8 | transform: translateY(0%); 9 | } 10 | .headroom--unpinned { 11 | @extend .position-fixed; 12 | transform: translateY(-100%); 13 | } 14 | 15 | .headroom--not-top { 16 | padding-top: .5rem; 17 | padding-bottom: .5rem; 18 | background-color: theme-color("default") !important; 19 | box-shadow: 0 1px 10px rgba(130, 130, 134, 0.1); 20 | } 21 | -------------------------------------------------------------------------------- /templates/infortcms/assets/scss/argon-design-system/vendors.scss: -------------------------------------------------------------------------------- 1 | 2 | @import "vendor/datetimepicker"; 3 | @import "vendor/_bootstrap-datepicker"; 4 | @import "vendor/nouislider"; 5 | 6 | 7 | @import "vendor/headroom"; 8 | -------------------------------------------------------------------------------- /templates/infortcms/partials/modal.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | X 6 |

Mensagem

7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------