├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.md │ └── solicita--o-de-feature.md └── workflows │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .htaccess ├── .php-cs-fixer.php ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Cronjobs no Windows para enviar os e-emails.md ├── Instalacao_xampp_windows.md ├── LICENSE.txt ├── README.md ├── application ├── .env.example ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── email.php │ ├── foreign_chars.php │ ├── form_validation.php │ ├── github_updater.php │ ├── hooks.php │ ├── index.html │ ├── jwt.php │ ├── migration.php │ ├── mimes.php │ ├── payment_gateways.php │ ├── profiler.php │ ├── routes.php │ ├── routes_api.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Arquivos.php │ ├── Auditoria.php │ ├── Clientes.php │ ├── Cobrancas.php │ ├── Email.php │ ├── Financeiro.php │ ├── Garantias.php │ ├── Login.php │ ├── Mapos.php │ ├── Mine.php │ ├── Os.php │ ├── Permissoes.php │ ├── Produtos.php │ ├── Relatorios.php │ ├── Servicos.php │ ├── Tools.php │ ├── Usuarios.php │ ├── Vendas.php │ ├── api │ │ ├── index.html │ │ └── v1 │ │ │ ├── ApiController.php │ │ │ ├── ClientesController.php │ │ │ ├── OsController.php │ │ │ ├── ProdutosController.php │ │ │ ├── ServicosController.php │ │ │ ├── UsuariosController.php │ │ │ ├── client │ │ │ ├── ClientCobrancasController.php │ │ │ ├── ClientComprasController.php │ │ │ ├── ClientLoginController.php │ │ │ └── ClientOsController.php │ │ │ └── index.html │ └── index.html ├── core │ ├── MY_Controller.php │ └── index.html ├── database │ ├── migrations │ │ ├── 20121031100537_create_base.php │ │ ├── 20200306012421_add_cep_to_usuarios_table.php │ │ ├── 20200428012421_add_contato_and_complemento_to_clientes_table.php │ │ ├── 20200921012421_add_observacoes_to_vendas_table.php │ │ ├── 20200921012422_add_observacoes_cliente_to_vendas_table.php │ │ ├── 20200921012423_add_observacoes_to_lancamentos_table.php │ │ ├── 20201224012424_add_cep_to_emitente_table.php │ │ ├── 20201230231550_add_controle_cobrancas.php │ │ ├── 20210105223548_add_cobrancas_cliente.php │ │ ├── 20210107190526_fix_table_cobrancas.php │ │ ├── 20210108201419_add_usuarios_lancamentos.php │ │ ├── 20210110153941_feature_notificawhats.php │ │ ├── 20210114151942_feature_control_baixaretroativa.php │ │ ├── 20210114151943_drop_table_pagamento.php │ │ ├── 20210114151944_add_payment_gateway_to_cobrancas.php │ │ ├── 20210125023104_controle_editar_os.php │ │ ├── 20210125151515_add_clientefornecedor.php │ │ ├── 20210125173737_add_control_datatable.php │ │ ├── 20210125173738_add_pix_key.php │ │ ├── 20210125173739_add_os_status_list.php │ │ ├── 20210125173740_add_aprovado_to_status_list.php │ │ ├── 20210125173741_asaas_payment_gateway.php │ │ ├── 20220216173741_upload_image_user.php │ │ ├── 20220307173741_add_password_client.php │ │ ├── 20220313023104_controle_editar_vendas.php │ │ ├── 20220320173741_add_desconto_lancamentos_os_vendas.php │ │ ├── 20221112173741_add_tipo_desconto_os_vendas.php │ │ ├── 20221119210810_add_asaas_id_clientes.php │ │ ├── 20221130180810_add_config_control_print_2ways_os.php │ │ ├── 20230428110810_alter_charset_configuracoes.php │ │ └── 20240503170400_add_garantia_status_to_vendas_table.php │ ├── seeds │ │ ├── Configuracoes.php │ │ ├── Permissoes.php │ │ └── Usuarios.php │ └── stubs │ │ ├── migration.stub │ │ └── seed.stub ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── audit_helper.php │ ├── captcha_helper.php │ ├── codegen_helper.php │ ├── date_helper.php │ ├── dd_helper.php │ ├── general_helper.php │ ├── index.html │ ├── mpdf_helper.php │ ├── security_helper.php │ └── validation_helper.php ├── hooks │ ├── compress.php │ ├── index.html │ └── whoops.php ├── index.html ├── language │ ├── english │ │ └── index.html │ └── pt-br │ │ ├── .calendar_lang.php.swp │ │ ├── .date_lang.php.swp │ │ ├── .db_lang.php.swp │ │ ├── .email_lang.php.swp │ │ ├── .form_validation_lang.php.swp │ │ ├── .ftp_lang.php.swp │ │ ├── .imglib_lang.php.swp │ │ ├── .migration_lang.php.swp │ │ ├── .number_lang.php.swp │ │ ├── .profiler_lang.php.swp │ │ ├── .unit_test_lang.php.swp │ │ ├── .upload_lang.php.swp │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── rest_controller_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php ├── libraries │ ├── Authorization_Token.php │ ├── Format.php │ ├── Gateways │ │ ├── Asaas.php │ │ ├── BasePaymentGateway.php │ │ ├── Contracts │ │ │ └── PaymentGateway.php │ │ ├── GerencianetSdk.php │ │ └── MercadoPago.php │ ├── Github_updater.php │ ├── MY_Email.php │ ├── Permission.php │ ├── REST_Controller.php │ ├── Seeder.php │ ├── Sqltoci.php │ └── index.html ├── logs │ └── index.html ├── models │ ├── Api_model.php │ ├── Arquivos_model.php │ ├── Audit_model.php │ ├── Clientes_model.php │ ├── Cobrancas_model.php │ ├── Conecte_model.php │ ├── Email_model.php │ ├── Financeiro_model.php │ ├── Garantias_model.php │ ├── Mapos_model.php │ ├── Os_model.php │ ├── Permissoes_model.php │ ├── Produtos_model.php │ ├── Relatorios_model.php │ ├── ResetSenhas_model.php │ ├── Servicos_model.php │ ├── Usuarios_model.php │ ├── Vendas_model.php │ └── index.html ├── third_party │ ├── index.html │ └── php-jwt │ │ ├── BeforeValidException.php │ │ ├── ExpiredException.php │ │ ├── JWT.php │ │ ├── SignatureInvalidException.php │ │ └── index.html └── views │ ├── arquivos │ ├── adicionarArquivo.php │ ├── arquivos.php │ └── editarArquivo.php │ ├── auditoria │ └── logs.php │ ├── clientes │ ├── adicionarCliente.php │ ├── clientes.php │ ├── editarCliente.php │ └── visualizar.php │ ├── cobrancas │ ├── cobrancas.php │ ├── emails │ │ └── cobranca.php │ ├── modalGerarPagamento.php │ └── visualizarCobranca.php │ ├── conecte │ ├── adicionarOs.php │ ├── cadastrar.php │ ├── cobrancas.php │ ├── compras.php │ ├── conta.php │ ├── detalhes_os.php │ ├── editar_dados.php │ ├── emails │ │ └── clientenovasenha.php │ ├── imprimirOs.php │ ├── imprimirVenda.php │ ├── login.php │ ├── minha_os.php │ ├── nova_senha.php │ ├── os.php │ ├── painel.php │ ├── resetar_senha.php │ ├── template.php │ ├── token_digita.php │ ├── visualizar_compra.php │ └── visualizar_os.php │ ├── emails │ └── emails.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── financeiro │ └── lancamentos.php │ ├── garantias │ ├── adicionarGarantia.php │ ├── editarGarantia.php │ ├── garantias.php │ ├── imprimirGarantia.php │ ├── imprimirGarantiaOs.php │ └── visualizarGarantia.php │ ├── index.html │ ├── mapos │ ├── configurar.php │ ├── emitente.php │ ├── login.php │ ├── minhaConta.php │ ├── painel.php │ └── pesquisa.php │ ├── os │ ├── adicionarOs.php │ ├── editarOs.php │ ├── emails │ │ ├── clientenovo.php │ │ ├── clientenovonotifica.php │ │ └── os.php │ ├── imprimirOs.php │ ├── imprimirOsTermica.php │ ├── os.php │ └── visualizarOs.php │ ├── permissoes │ ├── adicionarPermissao.php │ ├── editarPermissao.php │ └── permissoes.php │ ├── produtos │ ├── adicionarProduto.php │ ├── editarProduto.php │ ├── produtos.php │ └── visualizarProduto.php │ ├── relatorios │ ├── imprimir │ │ ├── imprimirClientes.php │ │ ├── imprimirEtiquetas.php │ │ ├── imprimirFinanceiro.php │ │ ├── imprimirOs.php │ │ ├── imprimirProdutos.php │ │ ├── imprimirSKU.php │ │ ├── imprimirServicos.php │ │ ├── imprimirTopo.php │ │ └── imprimirVendas.php │ ├── rel_clientes.php │ ├── rel_financeiro.php │ ├── rel_os.php │ ├── rel_os_topo.php │ ├── rel_produtos.php │ ├── rel_receitas_brutas_mei.php │ ├── rel_servicos.php │ ├── rel_sku.php │ └── rel_vendas.php │ ├── servicos │ ├── adicionarServico.php │ ├── editarServico.php │ └── servicos.php │ ├── tema │ ├── conteudo.php │ ├── menu.php │ ├── rodape.php │ └── topo.php │ ├── usuarios │ ├── adicionarUsuario.php │ ├── editarUsuario.php │ └── usuarios.php │ └── vendas │ ├── adicionarVenda.php │ ├── editarVenda.php │ ├── imprimirVenda.php │ ├── imprimirVendaOrcamento.php │ ├── imprimirVendaTermica.php │ ├── vendas.php │ └── visualizarVenda.php ├── assets ├── anexos │ └── index.html ├── arquivos │ └── index.html ├── css │ ├── bootstrap-responsive.min.css │ ├── bootstrap-wysihtml5.css │ ├── bootstrap.min.css │ ├── bootstrap5.3.2.min.css │ ├── colorpicker.css │ ├── custom.css │ ├── datepicker.css │ ├── fullcalendar.css │ ├── fullcalendar.min.css │ ├── imprimir.css │ ├── index.html │ ├── jquery.gritter.css │ ├── matrix-login.css │ ├── matrix-media.css │ ├── matrix-style.css │ ├── mpdf-barcode.css │ ├── particula.css │ ├── select2.css │ ├── table-custom.css │ ├── tema-dark-orange.css │ ├── tema-dark-violet.css │ ├── tema-pure-dark.css │ ├── tema-white-black.css │ ├── tema-white-green.css │ ├── tema-white.css │ ├── tema.css │ └── uniform.css ├── font-awesome │ ├── css │ │ └── font-awesome.css │ ├── font-ZXX_Noise.otf │ ├── font-captcha.ttf │ ├── font-capture.ttf │ ├── font-karabine.ttf │ ├── index.html │ └── 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 ├── img │ ├── Descr.WD3 │ ├── Padrão.webp │ ├── User.png │ ├── ajax-loader.gif │ ├── alpha.html │ ├── breadcrumb.png │ ├── captcha_bg.jpg │ ├── circle.953c9ca0.svg │ ├── dashboard-animate.svg │ ├── demo │ │ ├── Descr.WD3 │ │ ├── av1.jpg │ │ ├── av2.jpg │ │ ├── av3.jpg │ │ ├── av4.jpg │ │ ├── av5.jpg │ │ ├── demo-image1.jpg │ │ ├── demo-image2.jpg │ │ ├── demo-image3.jpg │ │ └── envelope.png │ ├── eye-off.svg │ ├── eye.svg │ ├── favicon.png │ ├── forms-animate.svg │ ├── gallery │ │ ├── Descr.WD3 │ │ ├── imgbox1.jpg │ │ ├── imgbox2.jpg │ │ ├── imgbox3.jpg │ │ ├── imgbox4.jpg │ │ └── imgbox5.jpg │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.html │ ├── glyphicons-halflings.png │ ├── gritter.png │ ├── hue.png │ ├── icon-file.png │ ├── index.html │ ├── larrow.png │ ├── line.png │ ├── logo-mapos-branco-laranja-grande.png │ ├── logo-mapos-branco.png │ ├── logo-mapos-laranja-grande.png │ ├── logo-mapos.png │ ├── logo-two.png │ ├── logo.png │ ├── logo_pix.png │ ├── menu-active.png │ ├── operating-system-upgrade-animate.svg │ ├── rarrow.png │ ├── saturation.png │ ├── select2.png │ ├── spinner.gif │ └── sprite.png ├── js │ ├── Ffvlo.js │ ├── bootstrap-colorpicker.js │ ├── bootstrap-datepicker.js │ ├── bootstrap-wysihtml5.js │ ├── bootstrap.min.js │ ├── clock_time.js │ ├── csrf.js │ ├── dashboard.js │ ├── dataTable_pt-br.json │ ├── datatables.min.js │ ├── dayjs.min.js │ ├── dist │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.jqplot.css │ │ ├── jquery.jqplot.js │ │ ├── jquery.jqplot.min.css │ │ ├── jquery.jqplot.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── plugins │ │ │ ├── jqplot.BezierCurveRenderer.js │ │ │ ├── jqplot.BezierCurveRenderer.min.js │ │ │ ├── jqplot.barRenderer.js │ │ │ ├── jqplot.barRenderer.min.js │ │ │ ├── jqplot.blockRenderer.js │ │ │ ├── jqplot.blockRenderer.min.js │ │ │ ├── jqplot.bubbleRenderer.js │ │ │ ├── jqplot.bubbleRenderer.min.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.min.js │ │ │ ├── jqplot.canvasAxisTickRenderer.js │ │ │ ├── jqplot.canvasAxisTickRenderer.min.js │ │ │ ├── jqplot.canvasOverlay.js │ │ │ ├── jqplot.canvasOverlay.min.js │ │ │ ├── jqplot.canvasTextRenderer.js │ │ │ ├── jqplot.canvasTextRenderer.min.js │ │ │ ├── jqplot.categoryAxisRenderer.js │ │ │ ├── jqplot.categoryAxisRenderer.min.js │ │ │ ├── jqplot.ciParser.js │ │ │ ├── jqplot.ciParser.min.js │ │ │ ├── jqplot.cursor.js │ │ │ ├── jqplot.cursor.min.js │ │ │ ├── jqplot.dateAxisRenderer.js │ │ │ ├── jqplot.dateAxisRenderer.min.js │ │ │ ├── jqplot.donutRenderer.js │ │ │ ├── jqplot.donutRenderer.min.js │ │ │ ├── jqplot.dragable.js │ │ │ ├── jqplot.dragable.min.js │ │ │ ├── jqplot.enhancedLegendRenderer.js │ │ │ ├── jqplot.enhancedLegendRenderer.min.js │ │ │ ├── jqplot.funnelRenderer.js │ │ │ ├── jqplot.funnelRenderer.min.js │ │ │ ├── jqplot.highlighter.js │ │ │ ├── jqplot.highlighter.min.js │ │ │ ├── jqplot.json2.js │ │ │ ├── jqplot.json2.min.js │ │ │ ├── jqplot.logAxisRenderer.js │ │ │ ├── jqplot.logAxisRenderer.min.js │ │ │ ├── jqplot.mekkoAxisRenderer.js │ │ │ ├── jqplot.mekkoAxisRenderer.min.js │ │ │ ├── jqplot.mekkoRenderer.js │ │ │ ├── jqplot.mekkoRenderer.min.js │ │ │ ├── jqplot.meterGaugeRenderer.js │ │ │ ├── jqplot.meterGaugeRenderer.min.js │ │ │ ├── jqplot.mobile.js │ │ │ ├── jqplot.mobile.min.js │ │ │ ├── jqplot.ohlcRenderer.js │ │ │ ├── jqplot.ohlcRenderer.min.js │ │ │ ├── jqplot.pieRenderer.js │ │ │ ├── jqplot.pieRenderer.min.js │ │ │ ├── jqplot.pointLabels.js │ │ │ ├── jqplot.pointLabels.min.js │ │ │ ├── jqplot.pyramidAxisRenderer.js │ │ │ ├── jqplot.pyramidAxisRenderer.min.js │ │ │ ├── jqplot.pyramidGridRenderer.js │ │ │ ├── jqplot.pyramidGridRenderer.min.js │ │ │ ├── jqplot.pyramidRenderer.js │ │ │ ├── jqplot.pyramidRenderer.min.js │ │ │ ├── jqplot.trendline.js │ │ │ └── jqplot.trendline.min.js │ ├── excanvas.min.js │ ├── fullcalendar.min.js │ ├── fullcalendar │ │ ├── locales-all.min.js │ │ └── locales │ │ │ └── pt-br.js │ ├── funcoes.js │ ├── funcoesGlobal.js │ ├── highchart │ │ ├── highcharts-init.js │ │ ├── highcharts-modules-exporting.js │ │ ├── highcharts-more.js │ │ └── highcharts.js │ ├── index.html │ ├── jquery-1.12.4.min.js │ ├── jquery-ui │ │ ├── css │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui-1.9.2.custom.css │ │ │ │ └── jquery-ui-1.9.2.custom.min.css │ │ └── js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-ui-1.9.2.custom.js │ │ │ └── jquery-ui-1.9.2.custom.min.js │ ├── jquery.dataTables.min.js │ ├── jquery.flot.min.js │ ├── jquery.flot.pie.min.js │ ├── jquery.flot.resize.min.js │ ├── jquery.gritter.min.js │ ├── jquery.mask.min.js │ ├── jquery.peity.min.js │ ├── jquery.toggle.buttons.html │ ├── jquery.ui.custom.js │ ├── jquery.uniform.js │ ├── jquery.validate.js │ ├── jquery.wizard.js │ ├── maruti.html │ ├── masked.js │ ├── maskmoney.js │ ├── matrix.calendar.js │ ├── matrix.charts.js │ ├── matrix.chat.js │ ├── matrix.dashboard.js │ ├── matrix.form_common.js │ ├── matrix.form_validation.js │ ├── matrix.interface.js │ ├── matrix.js │ ├── matrix.login.js │ ├── matrix.popover.js │ ├── matrix.tables.js │ ├── matrix.wizard.js │ ├── particles.min.js │ ├── script-payments.js │ ├── select2.min.js │ ├── shortcut.js │ ├── sweetalert.min.js │ ├── sweetalert2.all.min.js │ ├── validate.js │ └── wysihtml5-0.3.0.js ├── json │ ├── estados.json │ └── tabela_medidas.json ├── relatorios │ └── RELATORIO_MENSAL_DAS_RECEITAS_BRUTAS_MEI.docx ├── trumbowyg │ ├── langs │ │ ├── ar.js │ │ ├── ar.min.js │ │ ├── bg.js │ │ ├── bg.min.js │ │ ├── bn.js │ │ ├── bn.min.js │ │ ├── by.js │ │ ├── by.min.js │ │ ├── ca.js │ │ ├── ca.min.js │ │ ├── cs.js │ │ ├── cs.min.js │ │ ├── da.js │ │ ├── da.min.js │ │ ├── de.js │ │ ├── de.min.js │ │ ├── el.js │ │ ├── el.min.js │ │ ├── es.js │ │ ├── es.min.js │ │ ├── es_ar.js │ │ ├── es_ar.min.js │ │ ├── et.js │ │ ├── et.min.js │ │ ├── fa.js │ │ ├── fa.min.js │ │ ├── fi.js │ │ ├── fi.min.js │ │ ├── fr.js │ │ ├── fr.min.js │ │ ├── he.js │ │ ├── he.min.js │ │ ├── hr.js │ │ ├── hr.min.js │ │ ├── hu.js │ │ ├── hu.min.js │ │ ├── id.js │ │ ├── id.min.js │ │ ├── it.js │ │ ├── it.min.js │ │ ├── ja.js │ │ ├── ja.min.js │ │ ├── ko.js │ │ ├── ko.min.js │ │ ├── lt.js │ │ ├── lt.min.js │ │ ├── mn.js │ │ ├── mn.min.js │ │ ├── my.js │ │ ├── my.min.js │ │ ├── nl.js │ │ ├── nl.min.js │ │ ├── no_nb.js │ │ ├── no_nb.min.js │ │ ├── ph.js │ │ ├── ph.min.js │ │ ├── pl.js │ │ ├── pl.min.js │ │ ├── pt.js │ │ ├── pt.min.js │ │ ├── pt_br.js │ │ ├── pt_br.min.js │ │ ├── ro.js │ │ ├── ro.min.js │ │ ├── rs.js │ │ ├── rs.min.js │ │ ├── rs_latin.js │ │ ├── rs_latin.min.js │ │ ├── ru.js │ │ ├── ru.min.js │ │ ├── sk.js │ │ ├── sk.min.js │ │ ├── sl.js │ │ ├── sl.min.js │ │ ├── sq.js │ │ ├── sq.min.js │ │ ├── sv.js │ │ ├── sv.min.js │ │ ├── th.js │ │ ├── th.min.js │ │ ├── tr.js │ │ ├── tr.min.js │ │ ├── ua.js │ │ ├── ua.min.js │ │ ├── vi.js │ │ ├── vi.min.js │ │ ├── zh_cn.js │ │ ├── zh_cn.min.js │ │ ├── zh_tw.js │ │ └── zh_tw.min.js │ ├── plugins │ │ ├── allowtagsfrompaste │ │ │ ├── trumbowyg.allowtagsfrompaste.js │ │ │ └── trumbowyg.allowtagsfrompaste.min.js │ │ ├── base64 │ │ │ ├── trumbowyg.base64.js │ │ │ └── trumbowyg.base64.min.js │ │ ├── cleanpaste │ │ │ ├── trumbowyg.cleanpaste.js │ │ │ └── trumbowyg.cleanpaste.min.js │ │ ├── colors │ │ │ ├── trumbowyg.colors.js │ │ │ ├── trumbowyg.colors.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.colors.scss │ │ │ │ ├── trumbowyg.colors.css │ │ │ │ └── trumbowyg.colors.min.css │ │ ├── emoji │ │ │ ├── trumbowyg.emoji.js │ │ │ ├── trumbowyg.emoji.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.emoji.scss │ │ │ │ ├── trumbowyg.emoji.css │ │ │ │ └── trumbowyg.emoji.min.css │ │ ├── fontfamily │ │ │ ├── trumbowyg.fontfamily.js │ │ │ └── trumbowyg.fontfamily.min.js │ │ ├── fontsize │ │ │ ├── trumbowyg.fontsize.js │ │ │ └── trumbowyg.fontsize.min.js │ │ ├── giphy │ │ │ ├── trumbowyg.giphy.js │ │ │ ├── trumbowyg.giphy.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.giphy.scss │ │ │ │ ├── trumbowyg.giphy.css │ │ │ │ └── trumbowyg.giphy.min.css │ │ ├── highlight │ │ │ ├── trumbowyg.highlight.js │ │ │ ├── trumbowyg.highlight.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.highlight.scss │ │ │ │ ├── trumbowyg.highlight.css │ │ │ │ └── trumbowyg.highlight.min.css │ │ ├── history │ │ │ ├── trumbowyg.history.js │ │ │ └── trumbowyg.history.min.js │ │ ├── indent │ │ │ ├── trumbowyg.indent.js │ │ │ └── trumbowyg.indent.min.js │ │ ├── insertaudio │ │ │ ├── trumbowyg.insertaudio.js │ │ │ └── trumbowyg.insertaudio.min.js │ │ ├── lineheight │ │ │ ├── trumbowyg.lineheight.js │ │ │ └── trumbowyg.lineheight.min.js │ │ ├── mathml │ │ │ ├── trumbowyg.mathml.js │ │ │ ├── trumbowyg.mathml.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.mathml.scss │ │ │ │ ├── trumbowyg.mathml.css │ │ │ │ └── trumbowyg.mathml.min.css │ │ ├── mention │ │ │ ├── trumbowyg.mention.js │ │ │ ├── trumbowyg.mention.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.mention.scss │ │ │ │ ├── trumbowyg.mention.css │ │ │ │ └── trumbowyg.mention.min.css │ │ ├── noembed │ │ │ ├── trumbowyg.noembed.js │ │ │ └── trumbowyg.noembed.min.js │ │ ├── pasteembed │ │ │ ├── trumbowyg.pasteembed.js │ │ │ └── trumbowyg.pasteembed.min.js │ │ ├── pasteimage │ │ │ ├── trumbowyg.pasteimage.js │ │ │ └── trumbowyg.pasteimage.min.js │ │ ├── preformatted │ │ │ ├── trumbowyg.preformatted.js │ │ │ └── trumbowyg.preformatted.min.js │ │ ├── resizimg │ │ │ ├── trumbowyg.resizimg.js │ │ │ └── trumbowyg.resizimg.min.js │ │ ├── ruby │ │ │ ├── trumbowyg.ruby.js │ │ │ └── trumbowyg.ruby.min.js │ │ ├── specialchars │ │ │ ├── trumbowyg.specialchars.js │ │ │ ├── trumbowyg.specialchars.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.specialchars.scss │ │ │ │ ├── trumbowyg.specialchars.css │ │ │ │ └── trumbowyg.specialchars.min.css │ │ ├── table │ │ │ ├── trumbowyg.table.js │ │ │ ├── trumbowyg.table.min.js │ │ │ └── ui │ │ │ │ ├── sass │ │ │ │ └── trumbowyg.table.scss │ │ │ │ ├── trumbowyg.table.css │ │ │ │ └── trumbowyg.table.min.css │ │ ├── template │ │ │ ├── trumbowyg.template.js │ │ │ └── trumbowyg.template.min.js │ │ └── upload │ │ │ ├── trumbowyg.upload.js │ │ │ └── trumbowyg.upload.min.js │ ├── trumbowyg.js │ ├── trumbowyg.min.js │ └── ui │ │ ├── icons.svg │ │ ├── sass │ │ └── trumbowyg.scss │ │ ├── trumbowyg.css │ │ ├── trumbowyg.min.css │ │ └── trumbowyg.min.css.map └── userImage │ └── index.html ├── banco.sql ├── composer.json ├── composer.lock ├── docker ├── .env ├── docker-compose.yml └── etc │ ├── composer │ └── Dockerfile │ ├── nginx │ ├── default.conf │ └── default.template.conf │ └── php │ ├── Dockerfile │ ├── cron-jobs │ ├── php.ini │ ├── supervisord.conf │ └── uploads.ini ├── docs ├── dashboard.png ├── modelagem.mwb └── modelagem.mwb.bak ├── index.php ├── install.bat ├── install.sh ├── install ├── assets │ ├── css │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ └── install.css │ ├── images │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-512x512.fw.png │ │ ├── favicon.ico │ │ └── loader2.gif │ └── js │ │ ├── jquery.form.js │ │ ├── jquery.min.js │ │ ├── jquery.validate.min.js │ │ └── main.js ├── do_install.php ├── index.php ├── settings.json └── view │ ├── configuration.php │ ├── finished.php │ ├── index.php │ └── pre-installation.php ├── robots.txt └── updates ├── update_3.12_to_3.14.sql ├── update_3.14.2_to_3.15.0.sql ├── update_3.15.0_to_4.0.0.sql ├── update_3.6.0.sql ├── update_3.7.0.sql ├── update_3.9_to_3.10.sql ├── update_4.14.1_to_4.15.0.sql ├── update_4.17.1_to_4.18.0.sql ├── update_4.19.0_to_4.20.0.sql ├── update_4.23.0_to_4.24.0.sql ├── update_4.24.0_to_4.25.0.sql ├── update_4.25.1_to_4.26.0.sql ├── update_4.26.2_to_4.27.0.sql ├── update_4.27.0_to_4.28.0.sql ├── update_4.29.0_to_4.30.0.sql ├── update_4.30.3_to_4.31.0.sql ├── update_4.31.1_to_4.32.0 .sql ├── update_4.32.1_to_4.33.0.sql ├── update_4.34.0_to_4.35.0.sql ├── update_4.35.0_to_4.36.0 .sql ├── update_4.36.0_to_4.37.0.sql ├── update_4.37.0_to_4.38.0.sql ├── update_4.39.0_to_4.40.0.sql ├── update_4.45.0_to_4.46.0.sql ├── update_v2_to_v3.sql ├── update_v3.1.9_to_3.2.x.sql ├── update_v3.1.x_to_3.1.9.sql └── update_v3.3.x_to_3.4.x.sql /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.catarse.me/mapos", "https://donorbox.org/mapos"] 2 | ko_fi: mapos 3 | github: map-os 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug 3 | about: Reporte um bug para nos ajudar a melhorar 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | ** Descreva o bug ** 11 | Uma descrição clara e concisa do que é o erro. 12 | 13 | **Reproduzir** 14 | Etapas para reproduzir o comportamento: 15 | 1. Vá para '...' 16 | 2. Clique em '....' 17 | 3. Role para baixo até '....' 18 | 4. Ver erro 19 | 20 | **Comportamento esperado** 21 | Uma descrição clara e concisa do que você esperava que acontecesse. 22 | 23 | ** Capturas de tela ** 24 | Se aplicável, adicione capturas de tela para ajudar a explicar seu problema. 25 | 26 | ** Desktop (preencha as seguintes informações): ** 27 | - SO: [por exemplo iOS] 28 | - Navegador [por exemplo cromo, safari] 29 | - Versão [por exemplo 22] 30 | 31 | ** Smartphone (preencha as seguintes informações): ** 32 | - Dispositivo: [por exemplo iPhone6] 33 | - SO: [por exemplo iOS8.1] 34 | - Navegador [por exemplo navegador de ações, safari] 35 | - Versão [por exemplo 22] 36 | 37 | ** Contexto adicional ** 38 | Adicione qualquer outro contexto sobre o problema aqui. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/solicita--o-de-feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Solicitação de feature 3 | about: Sugira uma ideia para este projeto 4 | title: '' 5 | labels: request feature 6 | assignees: '' 7 | 8 | --- 9 | 10 | ** Sua solicitação de feature está relacionada a um problema? Por favor descreva.** 11 | Uma descrição clara e concisa de qual é o problema. Ex. Fico sempre frustrado quando [...] 12 | 13 | ** Descreva a solução que você deseja ** 14 | Uma descrição clara e concisa do que você deseja que aconteça. 15 | 16 | ** Descreva as alternativas que você considerou ** 17 | Uma descrição clara e concisa de qualquer solução ou recurso alternativo que você tenha considerado. 18 | 19 | ** Contexto adicional ** 20 | Adicione qualquer outro contexto ou captura de tela sobre a solicitação de recurso aqui. 21 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: "Generate release with vendor" 2 | 3 | on: 4 | push: 5 | tags: 6 | - "v*.*.*" 7 | 8 | jobs: 9 | release: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - name: Checkout code 14 | uses: actions/checkout@v4 15 | 16 | - name: Setup PHP 17 | uses: shivammathur/setup-php@v2 18 | with: 19 | php-version: '8.3' 20 | extensions: gd, mbstring 21 | 22 | - name: Install dependencies 23 | run: | 24 | composer update --optimize-autoloader --prefer-lowest --prefer-stable 25 | 26 | - name: List Installed Dependencies 27 | run: composer show -D 28 | 29 | - name: Create zip file with application and vendor directory 30 | run: | 31 | zip -r ${{ github.ref_name }}-release.zip ./ 32 | 33 | - name: Create GitHub Release 34 | uses: softprops/action-gh-release@v2 35 | with: 36 | files: ${{ github.ref_name }}-release.zip 37 | generate_release_notes: true 38 | make_latest: true 39 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | name: "Close stale issues" 2 | on: 3 | schedule: 4 | - cron: "0 0 * * *" 5 | 6 | jobs: 7 | stale: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/stale@v1.1.0 11 | with: 12 | repo-token: ${{ secrets.GITHUB_TOKEN }} 13 | stale-issue-message: 'Esta issue está obsoleta porque está aberta há 30 dias sem atividade. Remova o rótulo ou esse comentário ou essa issue será fechada em 5 dias' 14 | stale-pr-message: 'Esta PR está obsoleta porque está aberta há 30 dias sem atividade. Remova o rótulo ou esse comentário ou essa issue será fechada em 5 dias' 15 | days-before-stale: 30 16 | days-before-close: 5 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | # production 3 | /install/files 4 | /docker/data 5 | 6 | # misc 7 | .DS_Store 8 | .vscode 9 | 10 | /vendor/ 11 | /application/vendor/ 12 | 13 | .env.local 14 | .env.development.local 15 | .env.test.local 16 | .env.production.local 17 | 18 | !blank/.gitkeep 19 | desktop.ini 20 | 21 | application/vendor/ 22 | vendor/ 23 | .idea/ 24 | .php_cs.cache 25 | .php-cs-fixer.cache 26 | application/logs/* 27 | ci_sessions/ 28 | 29 | uploads 30 | application/.env 31 | assets/userImage 32 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order allow,deny 3 | Deny from all 4 | 5 | 6 | RewriteEngine On 7 | RewriteCond %{HTTP:Authorization} ^(.+)$ 8 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 9 | -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- 1 | notPath('vendor') 5 | ->notPath('bootstrap') 6 | ->notPath('storage') 7 | ->in(__DIR__) 8 | ->name('*.php') 9 | ->notName('*.blade.php'); 10 | 11 | return (new PhpCsFixer\Config()) 12 | ->setRules([ 13 | '@PSR2' => true, 14 | 'array_syntax' => ['syntax' => 'short'], 15 | 'ordered_imports' => ['sort_algorithm' => 'alpha'], 16 | 'no_unused_imports' => true, 17 | ]) 18 | ->setFinder($finder); 19 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ index.php/$1 [L] -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- 1 | $_ENV['DB_DSN'] ?? '', 9 | 'hostname' => $_ENV['DB_HOSTNAME'] ?? 'enter_hostname', 10 | 'username' => $_ENV['DB_USERNAME'] ?? 'enter_db_username', 11 | 'password' => $_ENV['DB_PASSWORD'] ?? 'enter_db_password', 12 | 'database' => $_ENV['DB_DATABASE'] ?? 'enter_database_name', 13 | 'dbdriver' => $_ENV['DB_DRIVER'] ?? 'mysqli', 14 | 'dbprefix' => $_ENV['DB_PREFIX'] ?? '', 15 | 'pconnect' => false, 16 | 'db_debug' => (ENVIRONMENT !== 'production'), 17 | 'cache_on' => false, 18 | 'cachedir' => '', 19 | 'char_set' => $_ENV['DB_CHARSET'] ?? 'utf8', 20 | 'dbcollat' => $_ENV['DB_COLLATION'] ?? 'utf8_general_ci', 21 | 'swap_pre' => '', 22 | 'encrypt' => false, 23 | 'compress' => false, 24 | 'stricton' => false, 25 | 'failover' => [], 26 | 'save_queries' => true, 27 | ]; 28 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 9 | 'xhtml1-strict' => '', 10 | 'xhtml1-trans' => '', 11 | 'xhtml1-frame' => '', 12 | 'html5' => '', 13 | 'html4-strict' => '', 14 | 'html4-trans' => '', 15 | 'html4-frame' => '', 16 | ]; 17 | 18 | /* End of file doctypes.php */ 19 | /* Location: ./application/config/doctypes.php */ 20 | -------------------------------------------------------------------------------- /application/config/email.php: -------------------------------------------------------------------------------- 1 | '', 20 | 'function' => 'compress', 21 | 'filename' => 'compress.php', 22 | 'filepath' => 'hooks', 23 | ]; 24 | 25 | $hook['pre_system'][] = [ 26 | 'class' => 'WhoopsHook', 27 | 'function' => 'bootWhoops', 28 | 'filename' => 'whoops.php', 29 | 'filepath' => 'hooks', 30 | 'params' => [], 31 | ]; 32 | 33 | /* End of file hooks.php */ 34 | /* Location: ./application/config/hooks.php */ 35 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/jwt.php: -------------------------------------------------------------------------------- 1 | load->library('email'); 13 | } 14 | 15 | public function process() 16 | { 17 | if (! $this->input->is_cli_request()) { 18 | show_404(); 19 | } 20 | 21 | $this->email->send_queue(); 22 | } 23 | 24 | public function retry() 25 | { 26 | if (! $this->input->is_cli_request()) { 27 | show_404(); 28 | } 29 | 30 | $this->email->retry_queue(); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /application/controllers/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/api/v1/client/ClientCobrancasController.php: -------------------------------------------------------------------------------- 1 | load->model('Conecte_model'); 18 | $this->load->library('Authorization_Token'); 19 | } 20 | 21 | public function index_get() 22 | { 23 | $clientLogged = $this->logged_client(); 24 | 25 | $cobrancas = $this->Conecte_model->getCobrancas('cobrancas', '*', '', 20, $this->uri->segment(3), '', '', $this->logged_client()->usuario->idClientes); 26 | 27 | if(empty($cobrancas)) { 28 | $this->response([ 29 | 'status' => false, 30 | 'message' => 'Nenhum resultado encontrado' 31 | ], REST_Controller::HTTP_NOT_FOUND); 32 | } 33 | 34 | foreach ($cobrancas as $cobranca) { 35 | unset($cobranca->senha); 36 | } 37 | 38 | $this->response([ 39 | 'status' => true, 40 | 'message' => 'Listando resultados', 41 | 'result' => $cobrancas 42 | ], REST_Controller::HTTP_OK); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /application/controllers/api/v1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/database/migrations/20200306012421_add_cep_to_usuarios_table.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('usuarios', [ 8 | 'cep' => [ 9 | 'type' => 'VARCHAR', 10 | 'constraint' => 9, 11 | 'null' => false, 12 | 'default' => '70005-115', 13 | ], 14 | ]); 15 | } 16 | 17 | public function down() 18 | { 19 | $this->dbforge->drop_column('usuarios', 'cep'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /application/database/migrations/20200428012421_add_contato_and_complemento_to_clientes_table.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('clientes', [ 8 | 'contato' => [ 9 | 'type' => 'VARCHAR', 10 | 'constraint' => 45, 11 | 'null' => true, 12 | 'default' => null, 13 | ], 14 | 'complemento' => [ 15 | 'type' => 'VARCHAR', 16 | 'constraint' => 45, 17 | 'null' => true, 18 | 'default' => null, 19 | ], 20 | ]); 21 | } 22 | 23 | public function down() 24 | { 25 | $this->dbforge->drop_column('clientes', 'contato'); 26 | $this->dbforge->drop_column('clientes', 'complemento'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /application/database/migrations/20200921012421_add_observacoes_to_vendas_table.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('vendas', [ 8 | 'observacoes' => [ 9 | 'type' => 'TEXT', 10 | 'null' => true, 11 | 'default' => null, 12 | ], 13 | ]); 14 | } 15 | 16 | public function down() 17 | { 18 | $this->dbforge->drop_column('vendas', 'observacoes'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/database/migrations/20200921012422_add_observacoes_cliente_to_vendas_table.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('vendas', [ 8 | 'observacoes_cliente' => [ 9 | 'type' => 'TEXT', 10 | 'null' => true, 11 | 'default' => null, 12 | ], 13 | ]); 14 | } 15 | 16 | public function down() 17 | { 18 | $this->dbforge->drop_column('vendas', 'observacoes_cliente'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/database/migrations/20200921012423_add_observacoes_to_lancamentos_table.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('lancamentos', [ 8 | 'observacoes' => [ 9 | 'type' => 'TEXT', 10 | 'null' => true, 11 | 'default' => null, 12 | ], 13 | ]); 14 | } 15 | 16 | public function down() 17 | { 18 | $this->dbforge->drop_column('lancamentos', 'observacoes'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /application/database/migrations/20201224012424_add_cep_to_emitente_table.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('emitente', [ 8 | 'cep' => [ 9 | 'type' => 'VARCHAR', 10 | 'constraint' => '20', 11 | 'null' => true, 12 | 'default' => null, 13 | ], 14 | ]); 15 | } 16 | 17 | public function down() 18 | { 19 | $this->dbforge->drop_column('emitente', 'cep'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /application/database/migrations/20210105223548_add_cobrancas_cliente.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('cobrancas', [ 8 | 'clientes_id' => [ 9 | 'type' => 'INT', 10 | 'constraint' => 11, 11 | 'null' => true, 12 | ], 13 | ]); 14 | $this->db->query('ALTER TABLE `cobrancas` ADD INDEX `fk_cobrancas_clientes1` (`clientes_id` ASC)'); 15 | $this->db->query('ALTER TABLE `cobrancas` ADD CONSTRAINT `fk_cobrancas_clientes1` 16 | FOREIGN KEY (`clientes_id`) 17 | REFERENCES `clientes` (`idClientes`) 18 | ON DELETE NO ACTION 19 | ON UPDATE NO ACTION 20 | '); 21 | } 22 | 23 | public function down() 24 | { 25 | $this->dbforge->drop_table('cobrancas'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/database/migrations/20210107190526_fix_table_cobrancas.php: -------------------------------------------------------------------------------- 1 | db->query('ALTER TABLE `cobrancas` CHANGE `idCobranca` `idCobranca` INT(11) NOT NULL AUTO_INCREMENT'); 8 | } 9 | 10 | public function down() 11 | { 12 | $this->dbforge->drop_table('cobrancas'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /application/database/migrations/20210108201419_add_usuarios_lancamentos.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('lancamentos', [ 8 | 'usuarios_id' => [ 9 | 'type' => 'INT', 10 | 'constraint' => 11, 11 | 'null' => true, 12 | ], 13 | ]); 14 | $this->db->query('ALTER TABLE `lancamentos` ADD INDEX `fk_lancamentos_usuarios1` (`usuarios_id` ASC)'); 15 | $this->db->query('ALTER TABLE `lancamentos` ADD CONSTRAINT `fk_lancamentos_usuarios1` 16 | FOREIGN KEY (`usuarios_id`) 17 | REFERENCES `usuarios` (`idUsuarios`) 18 | ON DELETE NO ACTION 19 | ON UPDATE NO ACTION 20 | '); 21 | } 22 | 23 | public function down() 24 | { 25 | $this->dbforge->drop_column('lancamentos', 'usuarios_id'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/database/migrations/20210110153941_feature_notificawhats.php: -------------------------------------------------------------------------------- 1 | db->query('ALTER TABLE `configuracoes` CHANGE `valor` `valor` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL'); 8 | $sql = "INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES ('7', 'notifica_whats', 'Prezado(a), {CLIENTE_NOME} a OS de nº {NUMERO_OS} teve o status alterado para :{STATUS_OS} segue a descrição {DESCRI_PRODUTOS} com valor total de {VALOR_OS}!\\r\\nPara mais informações entre em contato conosco.\\r\\nAtenciosamente, {EMITENTE} {TELEFONE_EMITENTE}.')"; 9 | $this->db->query($sql); 10 | } 11 | 12 | public function down() 13 | { 14 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 7'); 15 | $this->db->query('ALTER TABLE `configuracoes` CHANGE `valor` `valor` VARCHAR(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL;'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /application/database/migrations/20210114151942_feature_control_baixaretroativa.php: -------------------------------------------------------------------------------- 1 | db->query($sql); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 8'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/database/migrations/20210114151944_add_payment_gateway_to_cobrancas.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('cobrancas', [ 8 | 'payment_gateway' => [ 9 | 'type' => 'VARCHAR', 10 | 'constraint' => 255, 11 | 'null' => true, 12 | 'default' => null, 13 | ], 14 | ]); 15 | $this->db->query('UPDATE cobrancas SET payment_gateway="GerencianetSdk" WHERE payment_gateway IS NULL'); 16 | } 17 | 18 | public function down() 19 | { 20 | $this->db->query('UPDATE cobrancas SET payment_gateway=NULL'); 21 | $this->dbforge->drop_column('cobrancas', 'payment_gateway'); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /application/database/migrations/20210125023104_controle_editar_os.php: -------------------------------------------------------------------------------- 1 | db->query($sql); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 9'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/database/migrations/20210125151515_add_clientefornecedor.php: -------------------------------------------------------------------------------- 1 | db->query($sql); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('ALTER TABLE `clientes` DROP `fornecedor`;'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/database/migrations/20210125173737_add_control_datatable.php: -------------------------------------------------------------------------------- 1 | db->query($sql); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 10'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/database/migrations/20210125173738_add_pix_key.php: -------------------------------------------------------------------------------- 1 | db->query($sql); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 11'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/database/migrations/20210125173739_add_os_status_list.php: -------------------------------------------------------------------------------- 1 | db->query($sql); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 12'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/database/migrations/20210125173740_add_aprovado_to_status_list.php: -------------------------------------------------------------------------------- 1 | db->query($configurationSql)->row(); 14 | 15 | $osStatus = json_decode($result->valor, true); 16 | if (empty($osStatus)) { 17 | $osStatus = ['Aberto', 'Faturado', 'Negociação', 'Em Andamento', 'Orçamento', 'Finalizado', 'Cancelado', 'Aguardando Peças', 'Aprovado']; 18 | } else { 19 | $osStatus[] = 'Aprovado'; 20 | } 21 | 22 | $sql = 'UPDATE `configuracoes` SET valor = ? WHERE idConfig = 12'; 23 | $this->db->query($sql, [json_encode($osStatus)]); 24 | } 25 | 26 | public function down() 27 | { 28 | $this->db->query("UPDATE `configuracoes` SET valor = '[\"Aberto\",\"Faturado\",\"Negocia\\u00e7\\u00e3o\",\"Em Andamento\",\"Or\\u00e7amento\",\"Finalizado\",\"Cancelado\",\"Aguardando Pe\\u00e7as\"]' WHERE idConfig = 12"); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /application/database/migrations/20210125173741_asaas_payment_gateway.php: -------------------------------------------------------------------------------- 1 | db->query($sql); 12 | } 13 | 14 | public function down() 15 | { 16 | $sql = ' 17 | ALTER TABLE cobrancas MODIFY COLUMN charge_id INT(11) NOT NULL; 18 | ALTER TABLE clientes DROP COLUMN asaas_id; 19 | '; 20 | $this->db->query($sql); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /application/database/migrations/20220216173741_upload_image_user.php: -------------------------------------------------------------------------------- 1 | db->query('ALTER TABLE `usuarios` ADD `url_image_user` varchar(255) NULL'); 8 | } 9 | 10 | public function down() 11 | { 12 | $this->db->query('ALTER TABLE `usuarios` DROP `url_image_user`;'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /application/database/migrations/20220307173741_add_password_client.php: -------------------------------------------------------------------------------- 1 | db->query('ALTER TABLE `clientes` ADD `senha` VARCHAR(200) NOT NULL;'); 8 | $this->db->query('CREATE TABLE `resets_de_senha` ( 9 | `id` INT NOT NULL AUTO_INCREMENT, 10 | `email` VARCHAR(200) NOT NULL , 11 | `token` VARCHAR(255) NOT NULL , 12 | `data_expiracao` DATETIME NOT NULL, 13 | `token_utilizado` TINYINT NOT NULL, 14 | PRIMARY KEY (`id`)) 15 | ENGINE = InnoDB 16 | DEFAULT CHARACTER SET = latin1; 17 | '); 18 | } 19 | 20 | public function down() 21 | { 22 | $this->db->query('ALTER TABLE `clientes` DROP `senha`;'); 23 | $this->db->query('DROP TABLE `resets_de_senha`;'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/database/migrations/20220313023104_controle_editar_vendas.php: -------------------------------------------------------------------------------- 1 | db->query("INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (13, 'control_edit_vendas', 1);"); 8 | } 9 | 10 | public function down() 11 | { 12 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 13'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /application/database/migrations/20221112173741_add_tipo_desconto_os_vendas.php: -------------------------------------------------------------------------------- 1 | db->query('ALTER TABLE `os` ADD `tipo_desconto` VARCHAR(8) NULL DEFAULT NULL'); 8 | $this->db->query('ALTER TABLE `vendas` ADD `tipo_desconto` VARCHAR(8) NULL DEFAULT NULL'); 9 | $this->db->query('ALTER TABLE `lancamentos` ADD `tipo_desconto` VARCHAR(8) NULL DEFAULT NULL'); 10 | } 11 | 12 | public function down() 13 | { 14 | $this->db->query('ALTER TABLE `os` DROP `tipo_desconto`'); 15 | $this->db->query('ALTER TABLE `vendas` DROP `tipo_desconto`'); 16 | $this->db->query('ALTER TABLE `lancamentos` DROP `tipo_desconto`'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /application/database/migrations/20221119210810_add_asaas_id_clientes.php: -------------------------------------------------------------------------------- 1 | db->query('ALTER TABLE `clientes` ADD `asaas_id` VARCHAR(255) NULL DEFAULT NULL'); 8 | $this->db->query('ALTER TABLE `usuarios` DROP `asaas_id`'); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('ALTER TABLE `clientes` DROP `asaas_id`'); 14 | $this->db->query('ALTER TABLE `usuarios` DROP `asaas_id`'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /application/database/migrations/20221130180810_add_config_control_print_2ways_os.php: -------------------------------------------------------------------------------- 1 | db->query("INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (15, 'control_2vias', 0);"); 8 | } 9 | 10 | public function down() 11 | { 12 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 15'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /application/database/migrations/20230428110810_alter_charset_configuracoes.php: -------------------------------------------------------------------------------- 1 | db->query('ALTER TABLE `configuracoes` CHANGE `config` `config` VARCHAR(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL;'); 8 | $this->db->query("UPDATE `configuracoes` SET `valor` = 'Prezado(a), {CLIENTE_NOME} a OS de nº {NUMERO_OS} teve o status alterado para: {STATUS_OS} segue a descrição {DESCRI_PRODUTOS} com valor total de {VALOR_OS}! Para mais informações entre em contato conosco. Atenciosamente, {EMITENTE} {TELEFONE_EMITENTE}.' WHERE `configuracoes`.`idConfig` = 7"); 9 | } 10 | 11 | public function down() 12 | { 13 | $this->db->query('DELETE FROM `configuracoes` WHERE `configuracoes`.`idConfig` = 7'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /application/database/migrations/20240503170400_add_garantia_status_to_vendas_table.php: -------------------------------------------------------------------------------- 1 | dbforge->add_column('vendas', array( 10 | 'garantia' => array( 11 | 'type' => 'VARCHAR', 12 | 'constraint' => '45', 13 | 'null' => true, 14 | ), 15 | )); 16 | 17 | // Adiciona o campo status 18 | $this->dbforge->add_column('vendas', array( 19 | 'status' => array( 20 | 'type' => 'VARCHAR', 21 | 'constraint' => '45', 22 | 'null' => true, 23 | ), 24 | )); 25 | } 26 | 27 | public function down() 28 | { 29 | // Remove o campo garantia 30 | $this->dbforge->drop_column('vendas', 'garantia'); 31 | 32 | // Remove o campo status 33 | $this->dbforge->drop_column('vendas', 'status'); 34 | } 35 | } -------------------------------------------------------------------------------- /application/database/seeds/Usuarios.php: -------------------------------------------------------------------------------- 1 | 1, 14 | 'nome' => 'Admin', 15 | 'rg' => 'MG-25.502.560', 16 | 'cpf' => '517.565.356-39', 17 | 'cep' => '01024-900', 18 | 'rua' => 'R. Cantareira', 19 | 'numero' => '306', 20 | 'bairro' => 'Centro Histórico de São Paulo', 21 | 'cidade' => 'São Paulo', 22 | 'estado' => 'SP', 23 | 'email' => 'admin@admin.com', 24 | 'senha' => '$2y$10$lAW0AXb0JLZxR0yDdfcBcu3BN9c2AXKKjKTdug7Or0pr6cSGtgyGO', // 123456 25 | 'telefone' => '0000-0000', 26 | 'celular' => '', 27 | 'situacao' => 1, 28 | 'dataCadastro' => '2018-09-09', 29 | 'permissoes_id' => 1, 30 | 'dataExpiracao' => '2030-01-01', 31 | ]; 32 | $this->db->insert($this->table, $data); 33 | 34 | echo PHP_EOL; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /application/database/stubs/migration.stub: -------------------------------------------------------------------------------- 1 | dbforge->add_field([ 8 | 'id' => [ 9 | 'type' => 'INT', 10 | 'constraint' => 11, 11 | 'auto_increment' => true 12 | ], 13 | 'text' => [ 14 | 'type' => 'VARCHAR', 15 | 'constraint' => 20, 16 | 'null' => true 17 | ], 18 | ]); 19 | $this->dbforge->add_key('id', true); 20 | $this->dbforge->create_table('table'); 21 | } 22 | 23 | public function down() 24 | { 25 | $this->dbforge->drop_table('table'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/database/stubs/seed.stub: -------------------------------------------------------------------------------- 1 | db->truncate($this->table); 12 | 13 | // seed records manually 14 | $data = [ 15 | 'user_name' => 'admin', 16 | 'password' => '9871' 17 | ]; 18 | $this->db->insert($this->table, $data); 19 | 20 | // seed many records using faker 21 | $limit = 33; 22 | echo "seeding $limit user accounts"; 23 | 24 | for ($i = 0; $i < $limit; $i++) { 25 | echo "."; 26 | 27 | $data = [ 28 | 'user_name' => $this->faker->unique()->userName, 29 | 'password' => '1234', 30 | ]; 31 | 32 | $this->db->insert($this->table, $data); 33 | } 34 | 35 | echo PHP_EOL; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/audit_helper.php: -------------------------------------------------------------------------------- 1 | load->model('Audit_model'); 8 | 9 | $data = [ 10 | 'usuario' => $ci->session->userdata('nome_admin'), 11 | 'ip' => $ci->input->ip_address(), 12 | 'tarefa' => $task, 13 | 'data' => date('Y-m-d'), 14 | 'hora' => date('H:i:s'), 15 | ]; 16 | 17 | $ci->Audit_model->add($data); 18 | } 19 | -------------------------------------------------------------------------------- /application/helpers/codegen_helper.php: -------------------------------------------------------------------------------- 1 | '; 10 | print_r($a); 11 | echo ''; 12 | } 13 | function v($a) 14 | { 15 | echo '
';
16 |     var_dump($a);
17 |     echo '
'; 18 | } 19 | 20 | function clean_header($array) 21 | { 22 | $CI = get_instance(); 23 | $CI->load->helper('inflector'); 24 | foreach ($array as $a) { 25 | $arr[] = humanize($a); 26 | } 27 | 28 | return $arr; 29 | } 30 | 31 | function validate_money($valor) 32 | { 33 | if (preg_match("/^([0-9]*)\.(\d{2})$/", $valor)) { 34 | return true; 35 | } 36 | 37 | return false; 38 | } 39 | -------------------------------------------------------------------------------- /application/helpers/date_helper.php: -------------------------------------------------------------------------------- 1 | setTime(0, 0, 0); 15 | 16 | // Realizar a soma de dias 17 | $intervalo = new DateInterval('P' . intval($finalDate) . 'D'); 18 | $obj_data->add($intervalo); 19 | 20 | // Formatar a data obtida 21 | return $obj_data->format('d/m/Y'); 22 | } 23 | -------------------------------------------------------------------------------- /application/helpers/dd_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/mpdf_helper.php: -------------------------------------------------------------------------------- 1 | FCPATH . 'assets/uploads/temp/']); 13 | } else { 14 | $mpdf = new \Mpdf\Mpdf(['c', 'A4', 'tempDir' => FCPATH . 'assets/uploads/temp/']); 15 | } 16 | 17 | $mpdf->showImageErrors = true; 18 | $mpdf->WriteHTML($html); 19 | 20 | if ($stream) { 21 | $mpdf->Output($filename . '.pdf', 'I'); 22 | } else { 23 | $mpdf->Output(FCPATH . 'assets/uploads/temp/' . $filename . '.pdf', 'F'); 24 | 25 | return FCPATH . 'assets/uploads/temp/' . $filename . '.pdf'; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/whoops.php: -------------------------------------------------------------------------------- 1 | pushHandler(new Whoops\Handler\PrettyPageHandler()); 9 | $whoops->register(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/pt-br/.calendar_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.calendar_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.date_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.date_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.db_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.db_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.email_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.email_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.form_validation_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.form_validation_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.ftp_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.ftp_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.imglib_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.imglib_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.migration_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.migration_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.number_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.number_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.profiler_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.profiler_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.unit_test_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.unit_test_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/.upload_lang.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/application/language/pt-br/.upload_lang.php.swp -------------------------------------------------------------------------------- /application/language/pt-br/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/pt-br/migration_lang.php: -------------------------------------------------------------------------------- 1 | CI = &get_instance(); 17 | $this->CI->load->database(); 18 | $this->CI->load->dbforge(); 19 | $this->db = $this->CI->db; 20 | $this->dbforge = $this->CI->dbforge; 21 | } 22 | 23 | /** 24 | * Run another seeder 25 | * 26 | * @param string $seeder Seeder classname 27 | */ 28 | public function call($seeder) 29 | { 30 | $file = APPPATH . 'database/seeds/' . $seeder . '.php'; 31 | require_once $file; 32 | $obj = new $seeder; 33 | $obj->run(); 34 | } 35 | 36 | public static function create() 37 | { 38 | return new Seeder(); 39 | } 40 | 41 | public function __get($property) 42 | { 43 | return $this->CI->$property; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/ResetSenhas_model.php: -------------------------------------------------------------------------------- 1 | db->where('email', $email); 12 | $this->db->limit(1); 13 | 14 | return $this->db->get('resets_de_senha')->row(); 15 | } 16 | 17 | public function add($table, $data, $returnId = false) 18 | { 19 | $this->db->insert($table, $data); 20 | if ($this->db->affected_rows() == '1') { 21 | if ($returnId == true) { 22 | return $this->db->insert_id($table); 23 | } 24 | 25 | return true; 26 | } 27 | 28 | return false; 29 | } 30 | 31 | public function edit($table, $data, $fieldID, $ID) 32 | { 33 | $this->db->where($fieldID, $ID); 34 | $this->db->update($table, $data); 35 | 36 | if ($this->db->affected_rows() >= 0) { 37 | return true; 38 | } 39 | 40 | return false; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/third_party/php-jwt/BeforeValidException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error) : ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

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

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

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

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

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

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/relatorios/imprimir/imprimirTopo.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | url_logo))) { ?> 6 | <?= $emitente->nome ?>

7 | 8 |

9 | 10 |
11 |
12 | EMPRESA: nome ?> CNPJ: cnpj ?>
13 | ENDEREÇO: rua ?>, numero ?>, bairro ?>, cidade ?> - uf ?>
14 | 15 | 16 | RELATÓRIO:
17 | 18 | 19 | 20 | DATA INICIAL: 21 | 22 | 23 | 24 | DATA FINAL: 25 | 26 |
27 |
28 | 29 | -------------------------------------------------------------------------------- /application/views/relatorios/rel_os_topo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 14 | 15 |
4 | 5 | 8 | Empresa:
9 | CNPJ:
10 | Responsável:
11 | Data Inicial: Data Final: 12 | 13 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /application/views/tema/rodape.php: -------------------------------------------------------------------------------- 1 |
2 | 7 |
8 | 9 | 10 | 11 | 12 | 29 | 30 | -------------------------------------------------------------------------------- /assets/anexos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/arquivos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/css/mpdf-barcode.css: -------------------------------------------------------------------------------- 1 | .barcode { 2 | padding: 1.5mm; 3 | margin: 0; 4 | vertical-align: top; 5 | color: #000000; 6 | } 7 | 8 | .barcodecell { 9 | text-align: center; 10 | vertical-align: middle; 11 | padding: 0; 12 | } 13 | 14 | .detalheProdutoEtiqueta { 15 | width: 200px; 16 | height: auto; 17 | border: 1px dashed #777; 18 | float: left; 19 | padding: 5px; 20 | page-break-inside:avoid; 21 | } 22 | 23 | .detalheProdutoEtiquetaEan13 { 24 | width: 145px; 25 | height: auto; 26 | border: 1px dashed #777; 27 | float: left; 28 | padding: 4px; 29 | } 30 | 31 | .descricaoProdutoEtiqueta { 32 | text-align: center; 33 | font-size: 70%; 34 | } 35 | 36 | .textoProdutoEtiqueta { 37 | font-size: 70%; 38 | } 39 | -------------------------------------------------------------------------------- /assets/css/table-custom.css: -------------------------------------------------------------------------------- 1 | 2 | .table-responsive { 3 | width: 100%; 4 | margin-bottom: 15px; 5 | overflow-y: hidden; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /assets/font-awesome/font-ZXX_Noise.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/font-ZXX_Noise.otf -------------------------------------------------------------------------------- /assets/font-awesome/font-captcha.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/font-captcha.ttf -------------------------------------------------------------------------------- /assets/font-awesome/font-capture.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/font-capture.ttf -------------------------------------------------------------------------------- /assets/font-awesome/font-karabine.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/font-karabine.ttf -------------------------------------------------------------------------------- /assets/font-awesome/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/img/Descr.WD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/Descr.WD3 -------------------------------------------------------------------------------- /assets/img/Padrão.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/Padrão.webp -------------------------------------------------------------------------------- /assets/img/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/User.png -------------------------------------------------------------------------------- /assets/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/ajax-loader.gif -------------------------------------------------------------------------------- /assets/img/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/breadcrumb.png -------------------------------------------------------------------------------- /assets/img/captcha_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/captcha_bg.jpg -------------------------------------------------------------------------------- /assets/img/circle.953c9ca0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 3 10 | Created with Sketch. 11 | 12 | 13 | 14 | 15 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /assets/img/demo/Descr.WD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/Descr.WD3 -------------------------------------------------------------------------------- /assets/img/demo/av1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/av1.jpg -------------------------------------------------------------------------------- /assets/img/demo/av2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/av2.jpg -------------------------------------------------------------------------------- /assets/img/demo/av3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/av3.jpg -------------------------------------------------------------------------------- /assets/img/demo/av4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/av4.jpg -------------------------------------------------------------------------------- /assets/img/demo/av5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/av5.jpg -------------------------------------------------------------------------------- /assets/img/demo/demo-image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/demo-image1.jpg -------------------------------------------------------------------------------- /assets/img/demo/demo-image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/demo-image2.jpg -------------------------------------------------------------------------------- /assets/img/demo/demo-image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/demo-image3.jpg -------------------------------------------------------------------------------- /assets/img/demo/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/demo/envelope.png -------------------------------------------------------------------------------- /assets/img/eye-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/eye.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/gallery/Descr.WD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/gallery/Descr.WD3 -------------------------------------------------------------------------------- /assets/img/gallery/imgbox1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/gallery/imgbox1.jpg -------------------------------------------------------------------------------- /assets/img/gallery/imgbox2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/gallery/imgbox2.jpg -------------------------------------------------------------------------------- /assets/img/gallery/imgbox3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/gallery/imgbox3.jpg -------------------------------------------------------------------------------- /assets/img/gallery/imgbox4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/gallery/imgbox4.jpg -------------------------------------------------------------------------------- /assets/img/gallery/imgbox5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/gallery/imgbox5.jpg -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /assets/img/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/gritter.png -------------------------------------------------------------------------------- /assets/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/hue.png -------------------------------------------------------------------------------- /assets/img/icon-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/icon-file.png -------------------------------------------------------------------------------- /assets/img/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/img/larrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/larrow.png -------------------------------------------------------------------------------- /assets/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/line.png -------------------------------------------------------------------------------- /assets/img/logo-mapos-branco-laranja-grande.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/logo-mapos-branco-laranja-grande.png -------------------------------------------------------------------------------- /assets/img/logo-mapos-branco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/logo-mapos-branco.png -------------------------------------------------------------------------------- /assets/img/logo-mapos-laranja-grande.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/logo-mapos-laranja-grande.png -------------------------------------------------------------------------------- /assets/img/logo-mapos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/logo-mapos.png -------------------------------------------------------------------------------- /assets/img/logo-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/logo-two.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/logo_pix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/logo_pix.png -------------------------------------------------------------------------------- /assets/img/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/menu-active.png -------------------------------------------------------------------------------- /assets/img/rarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/rarrow.png -------------------------------------------------------------------------------- /assets/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/saturation.png -------------------------------------------------------------------------------- /assets/img/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/select2.png -------------------------------------------------------------------------------- /assets/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/spinner.gif -------------------------------------------------------------------------------- /assets/img/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/img/sprite.png -------------------------------------------------------------------------------- /assets/js/clock_time.js: -------------------------------------------------------------------------------- 1 | // função time 2 | setInterval(() => { 3 | 4 | let date = new Date(), 5 | hour = date.getHours(), 6 | min = date.getMinutes(); 7 | 8 | let d; 9 | d = hour < 12 ? "AM" : "PM"; 10 | our = hour > 12 ? hour - 12 : hour; 11 | our = hour == 0 ? hour = 12 : hour; 12 | 13 | // adicionar 0 a esquerda das unidades Exp: h:m:s antes 2:5:7, depois 02:05:07 14 | hour = hour < 10 ? "0" + hour : hour; 15 | min = min < 10 ? "0" + min : min; 16 | 17 | document.querySelector(".hour_num").innerText = hour; 18 | document.querySelector(".min_num").innerText = min; 19 | document.querySelector(".am_pm").innerText = d; 20 | 21 | }, 1000); // 1000 milésimos é que vale a 1 segundo 22 | -------------------------------------------------------------------------------- /assets/js/dataTable_pt-br.json: -------------------------------------------------------------------------------- 1 | { 2 | "sEmptyTable": "Nenhum registro encontrado", 3 | "sInfo": "Mostrando de _START_ até _END_ de _TOTAL_ registros", 4 | "sInfoEmpty": "Mostrando 0 até 0 de 0 registros", 5 | "sInfoFiltered": "(Filtrados de _MAX_ registros)", 6 | "sInfoPostFix": "", 7 | "sInfoThousands": ".", 8 | "sLengthMenu": "_MENU_ resultados por página", 9 | "sLoadingRecords": "Carregando...", 10 | "sProcessing": "Processando...", 11 | "sZeroRecords": "Nenhum registro encontrado", 12 | "sSearch": "Pesquisar", 13 | "oPaginate": { 14 | "sNext": " > ", 15 | "sPrevious": " < ", 16 | "sFirst": " << ", 17 | "sLast": " >> " 18 | }, 19 | "oAria": { 20 | "sSortAscending": ": Ordenar colunas de forma ascendente", 21 | "sSortDescending": ": Ordenar colunas de forma descendente" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /assets/js/dist/plugins/jqplot.ciParser.min.js: -------------------------------------------------------------------------------- 1 | /* jqPlot 1.0.8r1250 | (c) 2009-2013 Chris Leonello | jplot.com 2 | jsDate | (c) 2010-2013 Chris Leonello 3 | */(function(a){a.jqplot.ciParser=function(g,l){var m=[],o,n,h,f,e,c;if(typeof(g)=="string"){g=a.jqplot.JSON.parse(g,d)}else{if(typeof(g)=="object"){for(e in g){for(h=0;h=0){i=/^\/Date\((-?[0-9]+)\)\/$/.exec(k);if(i){return parseInt(i[1],10)}}return k}}for(var b in g){o=[];n=g[b];switch(b){case"PriceTicks":for(h=0;h 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /assets/js/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/js/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /assets/js/jquery.flot.resize.min.js: -------------------------------------------------------------------------------- 1 | (function(n,p,u){var w=n([]),s=n.resize=n.extend(n.resize,{}),o,l="setTimeout",m="resize",t=m+"-special-event",v="delay",r="throttleWindow";s[v]=250;s[r]=true;n.event.special[m]={setup:function(){if(!s[r]&&this[l]){return false}var a=n(this);w=w.add(a);n.data(this,t,{w:a.width(),h:a.height()});if(w.length===1){q()}},teardown:function(){if(!s[r]&&this[l]){return false}var a=n(this);w=w.not(a);a.removeData(t);if(!w.length){clearTimeout(o)}},add:function(b){if(!s[r]&&this[l]){return false}var c;function a(d,h,g){var f=n(this),e=n.data(this,t);e.w=h!==u?h:f.width();e.h=g!==u?g:f.height();c.apply(this,arguments)}if(n.isFunction(b)){c=b;return a}else{c=b.handler;b.handler=a}}};function q(){o=p[l](function(){w.each(function(){var d=n(this),a=d.width(),b=d.height(),c=n.data(this,t);if(a!==c.w||b!==c.h){d.trigger(m,[c.w=a,c.h=b])}});q()},s[v])}})(jQuery,this);(function(b){var a={};function c(f){function e(){var h=f.getPlaceholder();if(h.width()==0||h.height()==0){return}f.resize();f.setupGrid();f.draw()}function g(i,h){i.getPlaceholder().resize(e)}function d(i,h){i.getPlaceholder().unbind("resize",e)}f.hooks.bindEvents.push(g);f.hooks.shutdown.push(d)}b.plot.plugins.push({init:c,options:a,name:"resize",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /assets/js/matrix.login.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | var login = $('#loginform'); 5 | var recover = $('#recoverform'); 6 | var speed = 400; 7 | 8 | $('#to-recover').click(function(){ 9 | 10 | $("#loginform").slideUp(); 11 | $("#recoverform").fadeIn(); 12 | }); 13 | $('#to-login').click(function(){ 14 | 15 | $("#recoverform").hide(); 16 | $("#loginform").fadeIn(); 17 | }); 18 | 19 | 20 | $('#to-login').click(function(){ 21 | 22 | }); 23 | 24 | if($.browser.msie == true && $.browser.version.slice(0,3) < 10) { 25 | $('input[placeholder]').each(function(){ 26 | 27 | var input = $(this); 28 | 29 | $(input).val(input.attr('placeholder')); 30 | 31 | $(input).focus(function(){ 32 | if (input.val() == input.attr('placeholder')) { 33 | input.val(''); 34 | } 35 | }); 36 | 37 | $(input).blur(function(){ 38 | if (input.val() == '' || input.val() == input.attr('placeholder')) { 39 | input.val(input.attr('placeholder')); 40 | } 41 | }); 42 | }); 43 | 44 | 45 | 46 | } 47 | }); -------------------------------------------------------------------------------- /assets/js/matrix.tables.js: -------------------------------------------------------------------------------- 1 | 2 | $(document).ready(function(){ 3 | 4 | $('.data-table').dataTable({ 5 | "bJQueryUI": true, 6 | "sPaginationType": "full_numbers", 7 | "sDom": '<""l>t<"F"fp>' 8 | }); 9 | 10 | $('input[type=checkbox],input[type=radio],input[type=file]').uniform(); 11 | 12 | $('select').select2(); 13 | 14 | $("span.icon input:checkbox, th input:checkbox").click(function() { 15 | var checkedStatus = this.checked; 16 | var checkbox = $(this).parents('.widget-box').find('tr td:first-child input:checkbox'); 17 | checkbox.each(function() { 18 | this.checked = checkedStatus; 19 | if (checkedStatus == this.checked) { 20 | $(this).closest('.checker > span').removeClass('checked'); 21 | } 22 | if (this.checked) { 23 | $(this).closest('.checker > span').addClass('checked'); 24 | } 25 | }); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /assets/relatorios/RELATORIO_MENSAL_DAS_RECEITAS_BRUTAS_MEI.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/relatorios/RELATORIO_MENSAL_DAS_RECEITAS_BRUTAS_MEI.docx -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ar.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ar.js 3 | * Arabic translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Abo Mokh ahmed (abomokhahmed) 7 | * Github : https://github.com/abomokhahmed 8 | * Reviewed by : Abdellah Chadidi (chadidi) 9 | * Github : https://github.com/chadidi 10 | */ 11 | jQuery.trumbowyg.langs.ar={_dir:"rtl",viewHTML:"إعرض-HTML",undo:"تراجع",redo:"إعادة",formatting:"تنسيق",p:"فقرة",blockquote:"اقتباس",code:"كود",header:"رأس",bold:"عريض",italic:"مائل",strikethrough:"مشطوب",underline:"خطّ سفلي",strong:"بارز",em:"تغميق",del:"حذف",superscript:"الأس",subscript:"أس سفلي",unorderedList:"قائمة غير مرتّبة",orderedList:"قائمة مرتّبة",insertImage:"إدراج صورة",insertVideo:"إدراج فيديو",link:"رابط",createLink:"انشاء رابط",unlink:"حذف رابط",justifyLeft:"تصحيح للشمال",justifyCenter:"توسيط",justifyRight:"تصحيح لليمين",justifyFull:"تصحيح لكلا الإتّجاهين",horizontalRule:"إدراج خطّ أفقي",fullscreen:"ملء الشاشة",close:"إغلاق",submit:"إرسال",reset:"إعادة تعيين",required:"إلزامي",description:"وصف",title:"عنوان",text:"نصّ",target:"الهدف"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/bg.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * bg.js 3 | * Bulgarian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Aleksandar Dimitrov 7 | */ 8 | jQuery.trumbowyg.langs.bg={viewHTML:"Прегледай HTML",formatting:"Форматиране",p:"Параграф",blockquote:"Цитат",code:"Код",header:"Заглавие",bold:"Удебелен",italic:"Наклонен",strikethrough:"Зачеркнат",underline:"Подчертан",strong:"Удебелен",em:"Наклонен",del:"Зачеркнат",unorderedList:"Обикновен списък",orderedList:"Номериран списък",insertImage:"Добави изображение",insertVideo:"Добави видео",link:"Връзка",createLink:"Създай връзка",unlink:"Премахни връзката",justifyLeft:"Подравни от ляво",justifyCenter:"Центрирай",justifyRight:"Подравни от дясно",justifyFull:"Подравни по ширина",horizontalRule:"Хоризонтална линия",fullscreen:"На цял екран",close:"Затвори",submit:"Впиши",reset:"Отмени",required:"Задължително",description:"Описание",title:"Заглавие",text:"Текст"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/bn.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * bn.js 3 | * Bangla translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ahammad Naim 7 | * Website : https://github.com/AhammadNaim 8 | */ 9 | jQuery.trumbowyg.langs.bn={viewHTML:"HTML দেখান",undo:"পূর্বাবস্থায় ফিরুন",redo:"পুনরায় করুন",formatting:"বিন্যাস",p:"অনুচ্ছেদ",blockquote:"উদ্ধৃতি",code:"কোড",header:"শিরোনাম",bold:"বোল্ড",italic:"ইটালিক",strikethrough:"স্ট্রাইকথ্রু",underline:"আন্ডারলাইন",strong:"বোল্ড",em:"ইটালিক",del:"স্ট্রাইকথ্রু",superscript:"সুপারস্ক্রিপ্ট",subscript:"সাবস্ক্রিপ্ট",unorderedList:"অসংখ্যায়িত তালিকা",orderedList:"সাজানো তালিকা",insertImage:"ছবি",link:"লিংক",createLink:"লিংক তৈরি করুন",unlink:"লিংক মুছুন",justifyLeft:"বামে জাস্টিফাইড",justifyCenter:"কেন্দ্রীভূত",justifyRight:"ডানে জাস্টিফাইড",justifyFull:"জাস্টিফাইড",horizontalRule:"আনুভূমিক দাগ",removeformat:"বিন্যাস অপসারণ করুন",fullscreen:"সম্পূর্ণ পর্দায় দেখুন",close:"বন্ধ",submit:"প্রেরণ",reset:"বাতিল",required:"আবশ্যক",description:"বর্ননা",title:"শিরোনাম",text:"পাঠ্য",target:"লক্ষ্য"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/by.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * by.js 3 | * Belarusian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Yury Karalkou 7 | */ 8 | jQuery.trumbowyg.langs.by={viewHTML:"Паглядзець HTML",undo:"Скасаваць",redo:"Паўтарыць",formatting:"Фарматаванне",p:"Звычайны",blockquote:"Цытата",code:"Код",header:"Загаловак",bold:"Паўтлусты",italic:"Курсіў",strikethrough:"Закрэслены",underline:"Падкрэслены",strong:"Паўтлусты",em:"Курсіў",del:"Закрэслены",superscript:"Верхні індэкс",subscript:"Індэкс",unorderedList:"Звычайны спіс",orderedList:"Нумараваны спіс",insertImage:"Уставіць выяву",insertVideo:"Уставіць відэа",link:"Спасылка",createLink:"Уставіць спасылку",unlink:"Выдаліць спасылку",justifyLeft:"Па леваму боку",justifyCenter:"У цэнтры",justifyRight:"Па праваму боку",justifyFull:"Па шырыні",horizontalRule:"Гарызантальная лінія",removeformat:"Ачысціць фарматаванне",fullscreen:"На ўвесь экран",close:"Зачыніць",submit:"Уставіць",reset:"Скасаваць",required:"Абавязкова",description:"Апісанне",title:"Падказка",text:"Тэкст"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ca.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ca.js 3 | * Catalan translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Àlfons Sánchez (alsanan) 7 | * Twitter : @alsanan 8 | * Website : about.me/alsanan 9 | * Github : https://github.com/alsanan 10 | */ 11 | jQuery.trumbowyg.langs.ca={viewHTML:"Veure HTML",formatting:"Formatar",p:"Paragraf",blockquote:"Citació",code:"Codi",header:"Títol",bold:"Negreta",italic:"Itàlica",strikethrough:"Suprimir",underline:"Subratllat",strong:"Forta",em:"Èmfasi",del:"Apagar",unorderedList:"Lista desordenada",orderedList:"Lista ordenada",insertImage:"Inserir imatge",insertVideo:"Inserir vídeo",link:"Enllaç",createLink:"Crear un enllaç",unlink:"Eliminar enllaç",justifyLeft:"Alinear a esquerra",justifyCenter:"Centrar",justifyRight:"Alinear a dreta",justifyFull:"Justificar",horizontalRule:"Inserir separador horitzontal",fullscreen:"Pantalla completa",close:"Tancar",submit:"Enviar",reset:"Reiniciar",required:"Obligatori",description:"Descripció",title:"Títol",text:"Text"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/cs.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * cs.js 3 | * Czech translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Jan Svoboda (https://github.com/svoboda-jan) 7 | */ 8 | jQuery.trumbowyg.langs.cs={viewHTML:"Zobrazit HTML",redo:"Vpřed",undo:"Zpět",formatting:"Formátování",p:"Odstavec",blockquote:"Citace",code:"Kód",header:"Nadpis",bold:"Tučné",italic:"Kurzíva",strikethrough:"Přeškrtnuté",underline:"Podtržené",strong:"Tučné",em:"Zvýraznit",del:"Přeškrtnuté",superscript:"Horní index",subscript:"Dolní index",unorderedList:"Netříděný seznam",orderedList:"Tříděný seznam",insertImage:"Vložit obrázek",insertVideo:"Vložit video",link:"Odkaz",createLink:"Vložit odkaz",unlink:"Smazat odkaz",justifyLeft:"Zarovnat doleva",justifyCenter:"Zarovnat na střed",justifyRight:"Zarovnat doprava",justifyFull:"Zarovnat do bloku",horizontalRule:"Vložit vodorovnou čáru",removeformat:"Vymazat formátování",fullscreen:"Režim celé obrazovky",close:"Zavřít",submit:"Potvrdit",reset:"Zrušit",required:"Povinné",description:"Popis",title:"Nadpis",text:"Text",target:"Cíl"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/da.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * da.js 3 | * Danish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Christian Pedersen 7 | * Github : https://github.com/chripede 8 | */ 9 | jQuery.trumbowyg.langs.da={viewHTML:"Vis HTML",undo:"Fortryd",redo:"Anuller fortryd",formatting:"Formattering",p:"Afsnit",blockquote:"Citat",code:"Kode",header:"Overskrift",bold:"Fed",italic:"Kursiv",strikethrough:"Gennemstreg",underline:"Understreg",strong:"Vigtig",em:"Fremhæv",del:"Slettet",superscript:"Hævet skrift",subscript:"Sænket skrift",unorderedList:"Uordnet liste",orderedList:"Ordnet liste",insertImage:"Indsæt billede",insertVideo:"Indsæt video",link:"Link",createLink:"Indsæt link",unlink:"Fjern link",justifyLeft:"Venstrestil",justifyCenter:"Centrer",justifyRight:"Højrestil",justifyFull:"Lige margener",horizontalRule:"Horisontal linie",removeformat:"Ryd formattering",fullscreen:"Fuld skærm",close:"Luk",submit:"Bekræft",reset:"Annuller",required:"Påkrævet",description:"Beskrivelse",title:"Titel",text:"Tekst",target:"Mål",width:"Bredde"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/de.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * de.js 3 | * German translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Manfred Timm 7 | * Github : https://github.com/Manfred62 8 | */ 9 | jQuery.trumbowyg.langs.de={viewHTML:"HTML anzeigen",formatting:"Formatierung",p:"Absatz",blockquote:"Zitat",code:"Code",header:"Überschrift",bold:"Fett",italic:"Kursiv",strikethrough:"Durchgestrichen",underline:"Unterstrichen",strong:"Wichtig",em:"Betont",del:"Gelöscht",unorderedList:"Ungeordnete Liste",orderedList:"Geordnete Liste",image:"Bild",insertImage:"Bild einfügen",insertVideo:"Video einfügen",link:"Link",createLink:"Link einfügen",unlink:"Link entfernen",justifyLeft:"Links ausrichten",justifyCenter:"Zentrieren",justifyRight:"Rechts ausrichten",justifyFull:"Blocksatz",horizontalRule:"Horizontale Linie einfügen",removeformat:"Formatierung entfernen",fullscreen:"Vollbild",close:"Schließen",submit:"Bestätigen",reset:"Abbrechen",required:"Erforderlich",description:"Beschreibung",title:"Titel",text:"Text"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/el.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * el.js 3 | * Greek translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Merianos Nikos 7 | * Twitter : @_webresources 8 | * Website : http://www.wp-lion.com 9 | * LinkedIn: https://gr.linkedin.com/in/merianosnikos 10 | * Behance: https://www.behance.net/web_design_blog 11 | */ 12 | jQuery.trumbowyg.langs.el={viewHTML:"Προβολή κώδικα HTML",formatting:"Μορφοποίηση",p:"Παράγραφος",blockquote:"Παράθεση",code:"Κώδικας",header:"Επικεφαλίδα",bold:"Έντονα",italic:"Πλάγια",strikethrough:"Διαγραφή",underline:"Υπογράμμιση",strong:"Έντονα",em:"Πλάγια",del:"Διαγραφή",unorderedList:"Αταξινόμητη λίστα",orderedList:"Ταξινομημένη λίστα",insertImage:"Εισαγωγή εικόνας",insertVideo:"Εισαγωγή βίντεο",link:"Σύνδεσμος",createLink:"Δημιουργία συνδέσμου",unlink:"Διαγραφή συνδέσμου",justifyLeft:"Στοίχιση αριστερά",justifyCenter:"Στοίχιση στο κέντρο",justifyRight:"Στοίχιση δεξιά",justifyFull:"Πλήρης στοίχιση",horizontalRule:"Οριζόντια γραμμή",removeformat:"Καθαρισμός μορφοποίησης",fullscreen:"Πλήρης οθόνη",close:"Κλείσιμο",submit:"Υποβολή",reset:"Επαναφορά",required:"Απαραίτητο",description:"Περιγραφή",title:"Τίτλος",text:"Κείμενο"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/es.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * es.js 3 | * Spanish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Moisés Márquez 7 | * Email : moises.marquez.g@gmail.com 8 | */ 9 | jQuery.trumbowyg.langs.es={viewHTML:"Ver HTML",undo:"Deshacer",redo:"Rehacer",formatting:"Formato",p:"Párrafo",blockquote:"Cita",code:"Código",header:"Título",bold:"Negrita",italic:"Cursiva",strikethrough:"Tachado",underline:"Subrayado",strong:"Negrita",em:"Énfasis",del:"Borrar",superscript:"Sobrescrito",subscript:"Subíndice",unorderedList:"Lista Desordenada",orderedList:"Lista Ordenada",insertImage:"Insertar una imagen",insertVideo:"Insertar un vídeo",link:"Enlace",createLink:"Insertar un enlace",unlink:"Suprimir un enlace",justifyLeft:"Izquierda",justifyCenter:"Centrar",justifyRight:"Derecha",justifyFull:"Justificado",horizontalRule:"Insertar separador horizontal",removeformat:"Eliminar formato",fullscreen:"Pantalla completa",close:"Cerrar",submit:"Enviar",reset:"Cancelar",required:"Obligatorio",description:"Descripción",title:"Título",text:"Texto",target:"Target"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/es_ar.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * es_ar.js 3 | * Spanish (Argentina) translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Félix Vera 7 | * Email : felix.vera@gmail.com 8 | */ 9 | // jshint camelcase:false 10 | jQuery.trumbowyg.langs.es_ar={viewHTML:"Ver HTML",formatting:"Formato",p:"Párrafo",blockquote:"Cita",code:"Código",header:"Título",bold:"Negrita",italic:"Itálica",strikethrough:"Tachado",underline:"Subrayado",strong:"Fuere",em:"Énfasis",del:"Borrar",unorderedList:"Lista Desordenada",orderedList:"Lista Ordenada",insertImage:"Insertar una imagen",insertVideo:"Insertar un video",link:"Vínculo",createLink:"Insertar un vínculo",unlink:"Suprimir un vínculo",justifyLeft:"Alinear a la Izquierda",justifyCenter:"Centrar",justifyRight:"Alinear a la Derecha",justifyFull:"Justificado",horizontalRule:"Insertar separado Horizontal",fullscreen:"Pantalla Completa",close:"Cerrar",submit:"Enviar",reset:"Cancelar",required:"Obligatorio",description:"Descripción",title:"Título",text:"Texto"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/et.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * et.js 3 | * Estonian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Mart Leib 7 | * Web: https://voogle.ee 8 | */ 9 | jQuery.trumbowyg.langs.et={viewHTML:"HTML vaade",undo:"Võta tagasi",redo:"Tee uuesti",formatting:"Vorming",p:"Lõik",blockquote:"Plokktsitaat",code:"Kood",header:"Pealkiri",bold:"Paks",italic:"Kaldkiri",strikethrough:"Läbikriipsutatud",underline:"Allakriipsutatud",strong:"Tugev rõhutus",em:"Rõhutus",del:"Eemaldatud",superscript:"Ülemine indeks",subscript:"Alumine indeks",unorderedList:"Järjestamata loend",orderedList:"Järjestatud loend",insertImage:"Lisa pilt",insertVideo:"Lisa video",link:"Link",createLink:"Lisa link",unlink:"Eemalda link",justifyLeft:"Joonda vasakule",justifyCenter:"Joonda keskele",justifyRight:"Joonda paremale",justifyFull:"Joonda rööpselt",horizontalRule:"Horisontaaljoon",removeformat:"Eemalda vorming",fullscreen:"Täisekraan",close:"Sulge",submit:"Salvesta",reset:"Tühista",required:"Kohustuslik",description:"Kirjeldus",title:"Pealkiri",text:"Tekst",target:"Sihtmärk",width:"Laius"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/fa.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fa.js 3 | * Persian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Kiarash Soleimanzadeh 7 | * Github : https://github.com/kiyarash 8 | * Email : kiarash.s@hotmail.com 9 | */ 10 | jQuery.trumbowyg.langs.fa={_dir:"rtl",viewHTML:"نمایش کد اچ تی ام ال",formatting:"قالب بندی",p:"پاراگراف",blockquote:"نقل قول",code:"کد",header:"سر تیتر",bold:"ضخیم",italic:"مورب",strikethrough:"میان خط دار",underline:"زیر خط دار",strong:"برجسته",em:"مورب",del:"حذف شده",unorderedList:"لیست نامرتب",orderedList:"لیست مرتب",insertImage:"درج تصویر",insertVideo:"درج ویدئو",link:"لینک",createLink:"درج لینک",unlink:"حذف لینک",justifyLeft:"تراز به چپ",justifyCenter:"تراز به وسط",justifyRight:"تراز به راست",justifyFull:"تراز به چپ و راست",horizontalRule:"درج خط افقی",fullscreen:"تمام صفحه",close:"بستن",submit:"تائید",reset:"انصراف",required:"اجباری",description:"توضیحات",title:"عنوان",text:"متن"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/fi.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fi.js 3 | * Finnish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Teppo Koivula (teppokoivula) 7 | * Github : https://github.com/teppokoivula 8 | */ 9 | jQuery.trumbowyg.langs.fi={viewHTML:"Näytä HTML",undo:"Kumoa",redo:"Tee uudelleen",formatting:"Muotoilu",p:"Kappale",blockquote:"Lainaus",code:"Koodi",header:"Otsikko",bold:"Lihavointi",italic:"Kursivointi",strikethrough:"Yliviivaus",underline:"Allevivaus",strong:"Vahvennus",em:"Painotus",del:"Poistettu",unorderedList:"Luettelo",orderedList:"Numeroitu luettelo",insertImage:"Lisää kuva",insertVideo:"Lisää video",link:"Linkki",createLink:"Luo linkki",unlink:"Poista linkki",justifyLeft:"Tasaa vasemmalle",justifyCenter:"Keskitä",justifyRight:"Tasaa oikealle",justifyFull:"Tasaa",horizontalRule:"Vaakaviiva",fullscreen:"Kokoruutu",close:"Sulje",submit:"Lisää",reset:"Palauta",required:"Pakollinen",description:"Kuvaus",title:"Otsikko",text:"Teksti"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/fr.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fr.js 3 | * French translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Alexandre Demode (Alex-D) 7 | * Twitter : @AlexandreDemode 8 | * Website : alex-d.fr 9 | * Reviewed by : Abdou Developer (test20091) 10 | * Github : https://github.com/test20091 11 | */ 12 | jQuery.trumbowyg.langs.fr={viewHTML:"Voir le HTML",undo:"Annuler",redo:"Refaire",formatting:"Format",p:"Paragraphe",blockquote:"Citation",code:"Code",header:"Titre",bold:"Gras",italic:"Italique",strikethrough:"Barré",underline:"Souligné",strong:"Fort",em:"Emphase",del:"Supprimé",superscript:"Exposant",subscript:"Indice",unorderedList:"Liste à puces",orderedList:"Liste ordonnée",insertImage:"Insérer une image",insertVideo:"Insérer une video",link:"Lien",createLink:"Insérer un lien",unlink:"Supprimer le lien",_self:"Même onglet (par défaut)",_blank:"Nouvel onglet",justifyLeft:"Aligner à gauche",justifyCenter:"Centrer",justifyRight:"Aligner à droite",justifyFull:"Justifier",horizontalRule:"Insérer un séparateur horizontal",removeformat:"Supprimer formatage",fullscreen:"Plein écran",close:"Fermer",submit:"Valider",reset:"Annuler",required:"Obligatoire",description:"Description",title:"Titre",text:"Texte",target:"Cible"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/he.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * he.js 3 | * Hebrew translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Udi Doron (udidoron) 7 | * Github : https://github.com/udidoron 8 | */ 9 | 10 | jQuery.trumbowyg.langs.he = { 11 | _dir: 'rtl', 12 | 13 | viewHTML: 'צפה ב-HTML', 14 | 15 | formatting: 'פורמט', 16 | p: 'פסקה', 17 | blockquote: 'ציטוט', 18 | code: 'קוד', 19 | header: 'ראשית', 20 | 21 | bold: 'מודגש', 22 | italic: 'נטוי', 23 | strikethrough: 'קו חוצה', 24 | underline: 'קו תחתון', 25 | 26 | strong: 'בולט', 27 | em: 'הדגשה', 28 | del: 'נמחק', 29 | 30 | unorderedList: 'רשימה ללא סדר', 31 | orderedList: 'רשימה מסודרת', 32 | 33 | insertImage: 'הכנס תמונה', 34 | insertVideo: 'הכנס סרטון', 35 | link: 'קישור', 36 | createLink: 'צור קישור', 37 | unlink: 'הסר קישור', 38 | 39 | justifyLeft: 'ישר לשמאל', 40 | justifyCenter: 'מרכז', 41 | justifyRight: 'ישר לימין', 42 | justifyFull: 'ישר לשני הצדדים', 43 | 44 | horizontalRule: 'הכנס קו אופקי', 45 | 46 | fullscreen: 'מסך מלא', 47 | 48 | close: 'סגור', 49 | 50 | submit: 'שלח', 51 | reset: 'אתחל מחדש', 52 | 53 | required: 'נחוץ', 54 | description: 'תיאור', 55 | title: 'כותרת', 56 | text: 'טקסט' 57 | }; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/he.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * he.js 3 | * Hebrew translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Udi Doron (udidoron) 7 | * Github : https://github.com/udidoron 8 | */ 9 | jQuery.trumbowyg.langs.he={_dir:"rtl",viewHTML:"צפה ב-HTML",formatting:"פורמט",p:"פסקה",blockquote:"ציטוט",code:"קוד",header:"ראשית",bold:"מודגש",italic:"נטוי",strikethrough:"קו חוצה",underline:"קו תחתון",strong:"בולט",em:"הדגשה",del:"נמחק",unorderedList:"רשימה ללא סדר",orderedList:"רשימה מסודרת",insertImage:"הכנס תמונה",insertVideo:"הכנס סרטון",link:"קישור",createLink:"צור קישור",unlink:"הסר קישור",justifyLeft:"ישר לשמאל",justifyCenter:"מרכז",justifyRight:"ישר לימין",justifyFull:"ישר לשני הצדדים",horizontalRule:"הכנס קו אופקי",fullscreen:"מסך מלא",close:"סגור",submit:"שלח",reset:"אתחל מחדש",required:"נחוץ",description:"תיאור",title:"כותרת",text:"טקסט"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/hr.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * hr.js 3 | * Croatian translation for Trumbowyg 4 | * https://www.github.com/Buda9 5 | * =========================================================== 6 | * Author : Davor Budimir (https://www.github.com/Buda9) 7 | */ 8 | // jshint camelcase:false 9 | jQuery.trumbowyg.langs.hr={viewHTML:"Poglеdaj HTML kód",formatting:"Formatiranjе",p:"Odlomak",blockquote:"Citat",code:"Kód",header:"Zaglavlje",bold:"Podеbljano",italic:"Nakošeno",strikethrough:"Prеcrtano",underline:"Podvučеno",strong:"Podеbljano",em:"Istaknuto",del:"Obrisano",unorderedList:"Neuređen popis",orderedList:"Uređen popis",insertImage:"Dodaj sliku",insertVideo:"Dodaj vidеo",link:"Povezica",createLink:"Dodaj povezicu",unlink:"Ukloni povezicu",justifyLeft:"Lijеvo poravnanjе",justifyCenter:"Središnje poravnanjе",justifyRight:"Dеsno poravnanjе",justifyFull:"Obostrano poravnanjе",horizontalRule:"Horizontalna crta",fullscreen:"Puni zaslon",close:"Zatvori",submit:"Unеsi",reset:"Otkaži",required:"Obavеzno poljе",description:"Opis",title:"Naslov",text:"Tеkst"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/hu.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * hu.js 3 | * Hungarian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Peter MATO 7 | * Web: http://fixme.hu 8 | * GitHub: https://github.com/matopeter 9 | */ 10 | jQuery.trumbowyg.langs.hu={viewHTML:"HTML nézet",formatting:"Stílusok",p:"Bekezdés",blockquote:"Idézet",code:"Kód",header:"Címsor",bold:"Félkövér",italic:"Dőlt",strikethrough:"Áthúzott",underline:"Aláhúzott",strong:"Vastag",em:"Kiemelt",del:"Törölt",unorderedList:"Felsorolás",orderedList:"Számozás",insertImage:"Kép beszúrása",insertVideo:"Video beszúrása",link:"Link",createLink:"Link létrehozása",unlink:"Link eltávolítása",justifyLeft:"Balra igazítás",justifyCenter:"Középre igazítás",justifyRight:"Jobbra igazítás",justifyFull:"Sorkizárt",horizontalRule:"Vízszintes vonal",fullscreen:"Teljes képernyő",close:"Bezár",submit:"Beküldés",reset:"Alaphelyzet",required:"Kötelező",description:"Leírás",title:"Cím",text:"Szöveg",removeformat:"Formázás eltávolítása"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/id.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * id.js 3 | * Indonesian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Rezha Julio (kimiamania) 7 | * Twitter : @kimiamania 8 | * Website : http://rezhajulio.web.id 9 | * Github : https://github.com/kimiamania 10 | */ 11 | jQuery.trumbowyg.langs.id={viewHTML:"Lihat HTML",formatting:"Penyusunan",p:"Paragraf",blockquote:"Kutipan",code:"Kode",header:"Kepala",bold:"Tebal",italic:"Miring",strikethrough:"Coret",underline:"Garis bawah",strong:"Tebal",em:"Miring",del:"Dicoret",unorderedList:"Daftar tak teratur",orderedList:"Daftar teratur",insertImage:"Sisipkan gambar",insertVideo:"Sisipkan video",link:"Tautan",createLink:"Sisipkan Tautan",unlink:"Singkirkan tautan",justifyLeft:"Rata kiri",justifyCenter:"Rata Tengah",justifyRight:"Rata kanan",justifyFull:"Rata kiri dan kanan",horizontalRule:"Sisipkan garis mendatar",fullscreen:"Layar penuh",close:"Tutup",submit:"Setuju",reset:"Batal",required:"Diperlukan",description:"Deskripsi",title:"Judul",text:"Teks"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/it.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * it.js 3 | * Italian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Mirko Buffoni 7 | */ 8 | jQuery.trumbowyg.langs.it={viewHTML:"Mostra HTML",undo:"Annulla",redo:"Ripeti",formatting:"Formattazione",p:"Paragrafo",blockquote:"Citazione",code:"Codice",header:"Intestazione",bold:"Grassetto",italic:"Italico",strikethrough:"Barrato",underline:"Sottolineato",strong:"Rafforza",em:"Enfatizza",del:"Cancella",unorderedList:"Elenco puntato",orderedList:"Elenco numerato",insertImage:"Inserisci immagine",insertVideo:"Inserisci video",link:"Collegamento",createLink:"Crea un collegamento",unlink:"Elimina collegamento",justifyLeft:"Allinea a sinistra",justifyCenter:"Centra",justifyRight:"Allinea a destra",justifyFull:"Giustifica",horizontalRule:"Inserisci un separatore orizzontale",fullscreen:"Schermo intero",close:"Chiudi",submit:"Invia",reset:"Annulla",required:"Obbligatorio",description:"Descrizione",title:"Titolo",text:"Testo",removeformat:"Rimuovi Formattazione",superscript:"Apice",subscript:"Pedice"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ja.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ja.js 3 | * Japanese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Kouta Fukuhara (foo9) 7 | * Twitter : @foo9 8 | * Website : https://github.com/foo9 9 | */ 10 | jQuery.trumbowyg.langs.ja={viewHTML:"HTML表示",undo:"元に戻す",redo:"やり直す",formatting:"フォーマット",p:"段落",blockquote:"引用",code:"コード",header:"見出し",bold:"太字",italic:"斜体",strikethrough:"取り消し線",underline:"下線",strong:"太字",em:"斜体",del:"取り消し線",superscript:"上付き文字",subscript:"下付き文字",unorderedList:"順序なしリスト",orderedList:"順序ありリスト",insertImage:"画像の挿入",link:"リンク",createLink:"リンクの作成",unlink:"リンクの削除",justifyLeft:"左揃え",justifyCenter:"中央揃え",justifyRight:"右揃え",justifyFull:"両端揃え",horizontalRule:"横罫線",removeformat:"フォーマットの削除",fullscreen:"全画面表示",close:"閉じる",submit:"送信",reset:"キャンセル",required:"必須",description:"説明",title:"タイトル",text:"テキスト",target:"ターゲット"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ko.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ko.js 3 | * Korean translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : SeungWoo Chae (SDuck4) 7 | * Github : https://github.com/SDuck4 8 | * Victor Chanil Park (opdev1004) 9 | * Github : https://github.com/opdev1004 10 | */ 11 | jQuery.trumbowyg.langs.ko={viewHTML:"HTML 보기",undo:"되돌리기",redo:"다시 실행",formatting:"스타일",p:"본문",blockquote:"인용문",code:"코드",header:"제목",bold:"진하게",italic:"기울임",strikethrough:"취소선",underline:"밑줄",strong:"중요",em:"강조",del:"삭제",superscript:"위 첨자",subscript:"아래 첨자",unorderedList:"기호 목록",orderedList:"번호 목록",insertImage:"이미지 넣기",insertVideo:"비디오 넣기",link:"링크",createLink:"링크 넣기",unlink:"링크 지우기",justifyLeft:"왼쪽 정렬",justifyCenter:"가운데 정렬",justifyRight:"오른쪽 정렬",justifyFull:"양쪽 정렬",horizontalRule:"구분선 넣기",removeformat:"글꼴 효과 지우기",fullscreen:"전체 화면",close:"닫기",submit:"확인",reset:"취소",required:"필수 입력",description:"설명",title:"툴팁",text:"내용",target:"타겟",width:"너비"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/lt.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * lt.js 3 | * Lithuanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Justas Brazauskas 7 | */ 8 | jQuery.trumbowyg.langs.lt={viewHTML:"Žiūrėti HTML",formatting:"Formatuoti",p:"Paragrafas",blockquote:"Citata",code:"Kodas",header:"Antraštė",bold:"Paryškinti",italic:"Kursyvuoti",strikethrough:"Perbraukti",underline:"Pabrėžti",strong:"Paryškinti",em:"Pabrėžti",del:"Trinti",unorderedList:"Sąrašas",orderedList:"Numeruotas sąrašas",insertImage:"Pridėti vaizdą",insertVideo:"Pridėti video",link:"Nuoroda",createLink:"Kurti nuorodą",unlink:"Ištrinti nuorodą",justifyLeft:"Lyginti kairėn",justifyCenter:"Lygiuoti Centre",justifyRight:"Lyginti dešinėn",justifyFull:"Centruoti",horizontalRule:"Horizontali linija",fullscreen:"Pilnas ekranas",close:"Uždaryti",submit:"Siųsti",reset:"Atšaukti",required:"Privaloma",description:"Aprašymas",title:"Pavadinimas",text:"Tekstas",removeformat:"Pašalinti formatavimą",superscript:"Viršutinis indeksas",subscript:"Apatinis indeksas"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/mn.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * mn.js 3 | * Mongolian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ganbayar.B (ganbayar13) 7 | */ 8 | jQuery.trumbowyg.langs.mn={viewHTML:"HTML харах",undo:"Буцаах",redo:"Дахих",formatting:"Формат",p:"Догол мөр",blockquote:"Ишлэл",code:"Код",header:"Гарчиг",bold:"Тод",italic:"Налуу",strikethrough:"Дундуур зураас",underline:"Доогуур зураас",strong:"Тод",em:"Налуу",del:"Дундуур зураас",superscript:"Дээд индекс",subscript:"Доод индекс",unorderedList:"Дугаарлаагүй жагсаалт",orderedList:"Дугаарласан жагсаалт",insertImage:"Зураг оруулах",insertVideo:"Видео оруулах",link:"Холбоос",createLink:"Холбоос үүсгэх",unlink:"Холбоос цуцлах",justifyLeft:"Зүүн тийш шахах",justifyCenter:"Голлуулах",justifyRight:"Баруун Баруун тийш шахах",justifyFull:"Тэгшитгэх",horizontalRule:"Хөндлөн шугам",removeformat:"Формат арилгах",fullscreen:"Дэлгэц дүүргэх",close:"Хаах",submit:"Оруулах",reset:"Цуцлах",required:"Шаардлагатай",description:"Тайлбар",title:"Гарчиг",text:"Текст",target:"Бай"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/my.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * my.js 3 | * Malaysian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : JohnPozy 7 | */ 8 | jQuery.trumbowyg.langs.id={viewHTML:"Lihat HTML",formatting:"Pemformatan",p:"Perenggan",blockquote:"Blockquote",code:"Kod",header:"Pengepala",bold:"Tebal",italic:"Condong",strikethrough:"Garis batal",underline:"Garis bawah",strong:"Kuat",em:"Condong",del:"Hapus",unorderedList:"Senarai tidak tertib",orderedList:"Senarai tertib",insertImage:"Masukkan imej",insertVideo:"Masukkan video",link:"Pautan",createLink:"Cipta pautan",unlink:"Hapus pautan",justifyLeft:"Mengimbangkan ke kiri",justifyCenter:"Mengimbangkan ke tengah",justifyRight:"Mengimbangkan ke kanan",justifyFull:"Mengimbangkan ke kiri dan kanan",horizontalRule:"Masukkan garis mendatar",fullscreen:"Skrin penuh",close:"Tutup",submit:"Hantar",reset:"Batal",required:"Diperlukan",description:"Perihal",title:"Tajuk",text:"Teks"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/nl.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * nl.js 3 | * Dutch translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Danny Hiemstra 7 | * Github : https://github.com/dhiemstra 8 | */ 9 | jQuery.trumbowyg.langs.nl={viewHTML:"HTML bekijken",undo:"Ongedaan maken",redo:"Opnieuw",formatting:"Opmaak",p:"Paragraaf",blockquote:"Citaat",code:"Code",header:"Kop",bold:"Vet",italic:"Cursief",strikethrough:"Doorhalen",underline:"Onderlijnen",strong:"Sterk",em:"Nadruk",del:"Verwijderd",unorderedList:"Ongenummerde lijst",orderedList:"Genummerde lijst",insertImage:"Afbeelding invoegen",insertVideo:"Video invoegen",link:"Link",createLink:"Link maken",unlink:"Link verwijderen",justifyLeft:"Links uitlijnen",justifyCenter:"Centreren",justifyRight:"Rechts uitlijnen",justifyFull:"Uitvullen",horizontalRule:"Horizontale lijn",removeFormat:"Opmaak verwijderen",fullscreen:"Volledig scherm",close:"Sluiten",submit:"Opslaan",reset:"Annuleren",required:"Verplicht",description:"Omschrijving",title:"Titel",text:"Tekst",target:"Doel",width:"Breedte"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/no_nb.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * no_nb.js 3 | * Norwegian Bokmål translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Jon Severin Eivik Jakobsen 7 | * Github : https://github.com/jsejakobsen 8 | */ 9 | // jshint camelcase:false 10 | jQuery.trumbowyg.langs.no_nb={viewHTML:"Vis HTML",formatting:"Formater",p:"Avsnitt",blockquote:"Sitat",code:"Kode",header:"Overskrift",bold:"Fet",italic:"Kursiv",strikethrough:"Gjennomstreking",underline:"Understreking",strong:"Viktig",em:"Fremhevet",del:"Slettet",unorderedList:"Uordnet liste",orderedList:"Ordnet liste",insertImage:"Sett inn bilde",insertVideo:"Sett inn video",link:"Lenke",createLink:"Sett inn lenke",unlink:"Fjern lenke",justifyLeft:"Venstrejuster",justifyCenter:"Midtstill",justifyRight:"Høyrejuster",justifyFull:"Blokkjuster",horizontalRule:"Horisontal linje",fullscreen:"Full skjerm",close:"Lukk",submit:"Bekreft",reset:"Avbryt",required:"Påkrevd",description:"Beskrivelse",title:"Tittel",text:"Tekst"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ph.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ph.js 3 | * Filipino translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : @leogono 7 | */ 8 | jQuery.trumbowyg.langs.ph={viewHTML:"Tumingin sa HTML",formatting:"Formatting",p:"Talata",blockquote:"Blockquote",code:"Kowd",header:"Header",bold:"Makapal",italic:"Hilig",strikethrough:"Strikethrough",underline:"Salungguhit",strong:"Malakas",em:"Hilig",del:"Tinanggal",unorderedList:"Hindi nakahanay na listahan",orderedList:"Nakahanay na listahan",insertImage:"Ilagay ang larawan",insertVideo:"Ilagay ang video",link:"Koneksyon",createLink:"Iugnay",unlink:"Tanggalin ang koneksyon",justifyLeft:"Ihanay sa kaliwa",justifyCenter:"Ihanay sa gitna",justifyRight:"Ihanay sa kanan",justifyFull:"Ihanay sa kaliwa at kanan",horizontalRule:"Pahalang na linya",fullscreen:"Fullscreen",close:"Isara",submit:"Ipasa",reset:"I-reset",required:"Kailangan",description:"Paglalarawan",title:"Pamagat",text:"Teksto"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/pl.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pl.js 3 | * Polish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Paweł Abramowicz 7 | * Github : https://github.com/pawelabrams 8 | */ 9 | jQuery.trumbowyg.langs.pl={viewHTML:"Pokaż HTML",formatting:"Format",p:"Akapit",blockquote:"Cytat",code:"Kod",header:"Nagłówek",bold:"Pogrubienie",italic:"Pochylenie",strikethrough:"Przekreślenie",underline:"Podkreślenie",strong:"Wytłuszczenie",em:"Uwydatnienie",del:"Usunięte",unorderedList:"Lista nieuporządkowana",orderedList:"Lista uporządkowana",insertImage:"Wstaw obraz",insertVideo:"Wstaw film",link:"Link",createLink:"Wstaw link",unlink:"Usuń link",justifyLeft:"Wyrównaj do lewej",justifyCenter:"Wyśrodkuj",justifyRight:"Wyrównaj do prawej",justifyFull:"Wyjustuj",horizontalRule:"Odkreśl linią",fullscreen:"Pełny ekran",close:"Zamknij",submit:"Zastosuj",reset:"Przywróć",required:"Wymagane",description:"Opis",title:"Tytuł",text:"Tekst"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/pt.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pt.js 3 | * Portuguese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ramiro Varandas Jr (ramirovjr) 7 | * Twitter : @ramirovjnr 8 | * Website : about.me/ramirovjnr 9 | * Github : https://github.com/ramirovjr 10 | */ 11 | jQuery.trumbowyg.langs.pt={viewHTML:"Ver HTML",undo:"Desfazer",redo:"Refazer",formatting:"Formatar",p:"Paragráfo",blockquote:"Citação",code:"Código",header:"Título",bold:"Negrito",italic:"Itálico",strikethrough:"Suprimir",underline:"Sublinhado",strong:"Negrito",em:"Ênfase",del:"Apagar",superscript:"Sobrescrito",subscript:"Subscrito",unorderedList:"Lista não ordenada",orderedList:"Lista ordenada",insertImage:"Inserir imagem",insertVideo:"Inserir vídeo",link:"Link",createLink:"Criar um link",unlink:"Remover link",justifyLeft:"Alinhar a esquerda",justifyCenter:"Centralizar",justifyRight:"Alinhar a direita",justifyFull:"Justificar",horizontalRule:"Inserir separador horizontal",removeformat:"Remover formatação",fullscreen:"Tela cheia",close:"Fechar",submit:"Enviar",reset:"Limpar",required:"Obrigatório",description:"Descrição",title:"Título",text:"Texto",target:"Target"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/pt_br.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pt_br.js 3 | * Portuguese Brazilian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Alex Gotardi (alexgotardi) 7 | * Twitter : @alexgotardi 8 | * Github : https://github.com/alexgotardi 9 | */ 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.pt_br={viewHTML:"Ver HTML",undo:"Desfazer",redo:"Refazer",formatting:"Formatar",p:"Parágrafo",blockquote:"Citação",code:"Código",header:"Título",bold:"Negrito",italic:"Itálico",strikethrough:"Tachado",underline:"Sublinhado",strong:"Negrito",em:"Ênfase",del:"Apagar",superscript:"Sobrescrito",subscript:"Subscrito",unorderedList:"Lista não ordenada",orderedList:"Lista ordenada",insertImage:"Inserir imagem",insertVideo:"Inserir vídeo",link:"Link",createLink:"Criar um link",unlink:"Remover link",justifyLeft:"Alinhar a esquerda",justifyCenter:"Centralizar",justifyRight:"Alinhar a direita",justifyFull:"Justificar",horizontalRule:"Inserir separador horizontal",removeformat:"Remover formatação",fullscreen:"Tela cheia",close:"Fechar",submit:"Enviar",reset:"Limpar",required:"Obrigatório",description:"Descrição",title:"Título",text:"Texto",target:"Alvo"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ro.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ro.js 3 | * Romanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Vladut Radulescu (pacMakaveli) 7 | * Email: pacMakaveli90@gmail.com 8 | * Twitter : @pacMakaveli90 9 | * Website : creative-studio51.co.uk 10 | * Github : https://github.com/pacMakaveli 11 | */ 12 | jQuery.trumbowyg.langs.ro={viewHTML:"Vizualizare HTML",formatting:"Format",p:"Paragraf",blockquote:"Citație",code:"Cod",header:"Titlu",bold:"Bold",italic:"Italic",strikethrough:"Tăiat",underline:"Subliniat",strong:"Puternic",em:"Accentuat",del:"Sterge",unorderedList:"Lista dezordonată",orderedList:"Liste ordonată",insertImage:"Adăugare Imagine",insertVideo:"Adăugare Video",link:"Link",createLink:"Crează link",unlink:"Remover link",justifyLeft:"Aliniază stânga",justifyCenter:"Aliniază centru",justifyRight:"Aliniază dreapta",justifyFull:"Justificare",horizontalRule:"Linie orizontală",fullscreen:"Tot ecranul",close:"Închide",submit:"Procesează",reset:"Resetează",required:"Obligatoriu",description:"Descriere",title:"Titlu",text:"Text"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/rs.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * rs.js 3 | * Serbian (Cyrlic) translation for Trumbowyg 4 | * https://www.github.com/johonunu 5 | * =========================================================== 6 | * Author : Nikola Trifunovic (https://www.github.com/johonunu) 7 | */ 8 | jQuery.trumbowyg.langs.rs={viewHTML:"Погледај HTML кóд",formatting:"Форматирање",p:"Параграф",blockquote:"Цитат",code:"Кóд",header:"Наслов",bold:"Подебљано",italic:"Курзив",strikethrough:"Прецртано",underline:"Подвучено",strong:"Подебљано",em:"Истакнуто",del:"Обрисано",unorderedList:"Ненабројива листа",orderedList:"Набројива листа",insertImage:"Унеси слику",insertVideo:"Унеси видео",link:"Линк",createLink:"Унеси линк",unlink:"Уклони линк",justifyLeft:"Лево равнање",justifyCenter:"Централно равнање",justifyRight:"Десно равнање",justifyFull:"Обострано равнање",horizontalRule:"Хоризонтална линија",fullscreen:"Режим читавог екрана",close:"Затвори",submit:"Унеси",reset:"Откажи",required:"Обавезно поље",description:"Опис",title:"Наслов",text:"Текст"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/rs_latin.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * rs_latin.js 3 | * Serbian (Latin) translation for Trumbowyg 4 | * https://www.github.com/johonunu 5 | * =========================================================== 6 | * Author : Nikola Trifunovic (https://www.github.com/johonunu) 7 | */ 8 | // jshint camelcase:false 9 | jQuery.trumbowyg.langs.rs_latin={viewHTML:"Poglеdaj HTML kód",formatting:"Formatiranjе",p:"Paragraf",blockquote:"Citat",code:"Kód",header:"Naslov",bold:"Podеbljano",italic:"Kurziv",strikethrough:"Prеcrtano",underline:"Podvučеno",strong:"Podеbljano",em:"Istaknuto",del:"Obrisano",unorderedList:"Nеnabrojiva lista",orderedList:"Nabrojiva lista",insertImage:"Unеsi sliku",insertVideo:"Unеsi vidеo",link:"Link",createLink:"Unеsi link",unlink:"Ukloni link",justifyLeft:"Lеvo ravnanjе",justifyCenter:"Cеntralno ravnanjе",justifyRight:"Dеsno ravnanjе",justifyFull:"Obostrano ravnanjе",horizontalRule:"Horizontalna linija",fullscreen:"Rеžim čitavog еkrana",close:"Zatvori",submit:"Unеsi",reset:"Otkaži",required:"Obavеzno poljе",description:"Opis",title:"Naslov",text:"Tеkst"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ru.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ru.js 3 | * Russian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Yuri Lya 7 | */ 8 | jQuery.trumbowyg.langs.ru={viewHTML:"Посмотреть HTML",undo:"Отменить",redo:"Повторить",formatting:"Форматирование",p:"Обычный",blockquote:"Цитата",code:"Код",header:"Заголовок",bold:"Полужирный",italic:"Курсив",strikethrough:"Зачеркнутый",underline:"Подчеркнутый",strong:"Полужирный",em:"Курсив",del:"Зачеркнутый",superscript:"Надстрочный",subscript:"Подстрочный",unorderedList:"Обычный список",orderedList:"Нумерованный список",insertImage:"Вставить изображение",insertVideo:"Вставить видео",link:"Ссылка",createLink:"Вставить ссылку",unlink:"Удалить ссылку",justifyLeft:"По левому краю",justifyCenter:"По центру",justifyRight:"По правому краю",justifyFull:"По ширине",horizontalRule:"Горизонтальная линия",removeformat:"Очистить форматирование",fullscreen:"Во весь экран",close:"Закрыть",submit:"Вставить",reset:"Отменить",required:"Обязательное",description:"Описание",title:"Подсказка",text:"Текст"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/sk.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sk.js 3 | * Slovak translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : VeeeneX (https://github.com/VeeeneX) 7 | */ 8 | jQuery.trumbowyg.langs.sk={viewHTML:"Zobraziť HTML",formatting:"Formátovanie",p:"Paragraf",blockquote:"Citácia",code:"Kód",header:"Nadpis",bold:"Tučné",italic:"Kurzíva",strikethrough:"Preškrtnuté",underline:"Podčiarknuté",strong:"Tučné",em:"Zvýrazniť",del:"Zmazať",unorderedList:"Netriedený zoznam",orderedList:"Triedený zoznam",insertImage:"Vložiť obrázok",insertVideo:"Vložiť video",link:"Odkaz",createLink:"Vložiť odkaz",unlink:"Zmazať odkaz",justifyLeft:"Zarovnať doľava",justifyCenter:"Zarovnať na stred",justifyRight:"Zarovnať doprava",justifyFull:"Zarovnať do bloku",horizontalRule:"Vložit vodorovnú čiaru",fullscreen:"Režim celej obrazovky",close:"Zavrieť",submit:"Potvrdiť",reset:"Zrušiť",required:"Povinné",description:"Popis",title:"Nadpis",text:"Text"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/sl.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sl.js 3 | * Slovenian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author: Matjaz Zavski (https://github.com/matjaz321) 7 | * Mod: Uros Gaber (uros@powercom.si) 8 | */ 9 | jQuery.trumbowyg.langs.sl={viewHTML:"Prikaži HTML",formatting:"Oblika",p:"Odstavek",blockquote:"Citat",code:"Koda",header:"Glava",bold:"Krepko",italic:"Ležeče",strikethrough:"Prečrtano",underline:"Podčrtano",strong:"Odebljeno",em:"Poudarjeno",del:"Izbrisano",unorderedList:"Neoštevilčen seznam",orderedList:"Oštevilčen seznam",image:"Slika",insertImage:"Vstavi sliko",insertVideo:"Vstavi video",link:"Povezava",createLink:"Vstavi povezavo",unlink:"Odstrani povezavo",justifyLeft:"Poravnava levo",justifyCenter:"Poravnaj na sredino",justifyRight:"Poravnava desno",justifyFull:"Obojestranska poravnava",horizontalRule:"Vstavite vodoravno črto",removeformat:"Odstrani format",fullscreen:"Celozaslonski način",close:"Zapri",submit:"Potrdi",reset:"Prekliči",required:"Zahtevano",description:"Opis",title:"Naslov",text:"Besedilo"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/sq.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sq.js 3 | * Albanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Adalen Vladi 7 | */ 8 | jQuery.trumbowyg.langs.sq={viewHTML:"Shfaq HTML",undo:"Prish",redo:"Ribej",formatting:"Formatimi",p:"Paragraf",blockquote:"Citat",code:"Kodi",header:"Koka",bold:"Spikatur",italic:"Pjerret",strikethrough:"Vize ne mes",underline:"Nenvizo",strong:"I trashe",em:"I theksuar",del:"I fshire",superscript:"Indeks i sipërm",subscript:"Indeks i poshtem",unorderedList:"Liste e parenditur",orderedList:"Liste e renditur",insertImage:"Fut Foto",insertVideo:"Fut Video",link:"Link",createLink:"Krijo Link",unlink:"Hiq Link",justifyLeft:"Drejto Majtas",justifyCenter:"Drejto ne Qender",justifyRight:"Drejto Djathtas",justifyFull:"Drejto Vete",horizontalRule:"Vendos rregulloren horizontale",removeformat:"Hiq formatin",fullscreen:"Ekran i plotë",close:"Mbyll",submit:"Konfirmo",reset:"Anullo",required:"I detyrueshem",description:"Pershkrimi",title:"Titulli",text:"Tekst",target:"Objektivi",width:"Gjeresia"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/sv.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sv.js 3 | * Swedish translation for Trumbowyg 4 | * http://www.tim-international.net 5 | * =========================================================== 6 | * Author : T. Almroth 7 | * Github : https://github.com/timint 8 | * 9 | * Review : M Hagberg 10 | * Github : https://github.com/pestbarn 11 | */ 12 | jQuery.trumbowyg.langs.sv={viewHTML:"Visa HTML",formatting:"Formatering",p:"Paragraf",blockquote:"Citat",code:"Kod",header:"Rubrik",bold:"Fet",italic:"Kursiv",strikethrough:"Genomstruken",underline:"Understruken",strong:"Fet",em:"Kursiv",del:"Rensa formatering",unorderedList:"Punktlista",orderedList:"Numrerad lista",insertImage:"Infoga bild",insertVideo:"Infoga video",link:"Länk",createLink:"Infoga länk",unlink:"Ta bort länk",justifyLeft:"Vänsterjustera",justifyCenter:"Centrera",justifyRight:"Högerjustera",justifyFull:"Marginaljustera",horizontalRule:"Horisontell linje",removeformat:"Ta bort formatering",fullscreen:"Fullskärm",close:"Stäng",submit:"Bekräfta",reset:"Återställ",required:"Obligatorisk",description:"Beskrivning",title:"Titel",text:"Text"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/th.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * th.js 3 | * Thai translation for Trumbowyg 4 | * https://github.com/ionsoft/Trumbowyg 5 | * =========================================================== 6 | * Author : Gonatee Klanktong 7 | * Github : https://github.com/gonateek 8 | */ 9 | 10 | jQuery.trumbowyg.langs.th = { 11 | viewHTML: 'ดู HTML', 12 | 13 | formatting: 'จัดรูปแบบ', 14 | p: 'ย่อหน้า', 15 | blockquote: 'อ้างอิง', 16 | code: 'โค๊ด', 17 | header: 'ส่วนหัว', 18 | 19 | bold: 'หนา', 20 | italic: 'เอียง', 21 | strikethrough: 'ขีดทับ', 22 | underline: 'เส้นใต้', 23 | 24 | strong: 'สำคัญ', 25 | em: 'เน้น', 26 | del: 'ลบ', 27 | 28 | unorderedList: 'รายการ', 29 | orderedList: 'รายการ(ตัวเลข)', 30 | 31 | insertImage: 'ใส่รูป', 32 | insertVideo: 'ใส่วิดีโอ', 33 | link: 'ลิงค์', 34 | createLink: 'สร้างลิงค์', 35 | unlink: 'ยกเลิกลิงค์', 36 | 37 | justifyLeft: 'ชิดซ้าย', 38 | justifyCenter: 'กลาง', 39 | justifyRight: 'ชิดขวา', 40 | justifyFull: 'เต็มบรรทัด', 41 | 42 | horizontalRule: 'เส้นแนวนอน', 43 | 44 | fullscreen: 'เต็มหน้าจอ', 45 | 46 | close: 'ปิด', 47 | 48 | submit: 'ตกลง', 49 | reset: 'เริ่มใหม่', 50 | 51 | required: 'จำเป็น', 52 | description: 'คำอธิบาย', 53 | title: 'หัวเรื่อง', 54 | text: 'ข้อความ' 55 | }; 56 | -------------------------------------------------------------------------------- /assets/trumbowyg/langs/th.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * th.js 3 | * Thai translation for Trumbowyg 4 | * https://github.com/ionsoft/Trumbowyg 5 | * =========================================================== 6 | * Author : Gonatee Klanktong 7 | * Github : https://github.com/gonateek 8 | */ 9 | jQuery.trumbowyg.langs.th={viewHTML:"ดู HTML",formatting:"จัดรูปแบบ",p:"ย่อหน้า",blockquote:"อ้างอิง",code:"โค๊ด",header:"ส่วนหัว",bold:"หนา",italic:"เอียง",strikethrough:"ขีดทับ",underline:"เส้นใต้",strong:"สำคัญ",em:"เน้น",del:"ลบ",unorderedList:"รายการ",orderedList:"รายการ(ตัวเลข)",insertImage:"ใส่รูป",insertVideo:"ใส่วิดีโอ",link:"ลิงค์",createLink:"สร้างลิงค์",unlink:"ยกเลิกลิงค์",justifyLeft:"ชิดซ้าย",justifyCenter:"กลาง",justifyRight:"ชิดขวา",justifyFull:"เต็มบรรทัด",horizontalRule:"เส้นแนวนอน",fullscreen:"เต็มหน้าจอ",close:"ปิด",submit:"ตกลง",reset:"เริ่มใหม่",required:"จำเป็น",description:"คำอธิบาย",title:"หัวเรื่อง",text:"ข้อความ"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/tr.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * tr.js 3 | * Turkish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Emrah Bilbay (munzur) 7 | * Github : https://github.com/munzur 8 | * 9 | * Özgür Görgülü (ozgurg) 10 | * Github : https://github.com/ozgurg 11 | */ 12 | jQuery.trumbowyg.langs.tr={viewHTML:"HTML Kodu",formatting:"Biçimlendirme",p:"Paragraf",blockquote:"Alıntı",code:"Kod",header:"Başlık",bold:"Kalın",italic:"İtalik",strikethrough:"Üzeri çizgili",underline:"Altı çizgili",strong:"Koyu",em:"Vurgulu",del:"Üzeri çizgili",unorderedList:"Simgeli liste",orderedList:"Numaralı liste",insertImage:"Resim yerleştir",insertVideo:"Video yerleştir",link:"Link",createLink:"Link yerleştir",unlink:"Linki sil",justifyLeft:"Sola hizala",justifyCenter:"Ortaya hizala",justifyRight:"Sağa hizala",justifyFull:"Yasla",horizontalRule:"Yatay satır ekle",fullscreen:"Tam ekran",close:"Kapat",submit:"Onayla",reset:"Sıfırla",required:"Gerekli",description:"Açıklama",title:"Başlık",text:"Metin",undo:"Geri al",redo:"İleri al",removeformat:"Biçimlendirmeyi temizle"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/ua.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ua.js 3 | * Ukrainian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Igor Buksha 7 | */ 8 | jQuery.trumbowyg.langs.ua={viewHTML:"Подивитись HTML",formatting:"Форматування",p:"Звичайний",blockquote:"Витяг",code:"Код",header:"Заголовок",bold:"Напівжирний",italic:"Курсив",strikethrough:"Закреслений",underline:"Підкреслений",strong:"Напівжирний",em:"Курсив",del:"Закреслений",unorderedList:"Звичайний список",orderedList:"Нумерований список",insertImage:"Вставити зображення",insertVideo:"Вставити відео",link:"Посилання",createLink:"Вставити посилання",unlink:"Видалити посилання",justifyLeft:"По лівому краю",justifyCenter:"В центрі",justifyRight:"По правому краю",justifyFull:"По ширині",horizontalRule:"Горизонтальна лінія",fullscreen:"На весь екран",close:"Закрити",submit:"Вставити",reset:"Скасувати",required:"Обов'язкове",description:"Опис",title:"Підказка",text:"Текст"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/vi.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * vi.js 3 | * Vietnamese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : heocoi 7 | * Github: https://github.com/heocoi 8 | */ 9 | jQuery.trumbowyg.langs.vi={viewHTML:"Hiển thị HTML",formatting:"Định dạng",p:"Đoạn",blockquote:"Trích dẫn",code:"Code",header:"Đầu trang",bold:"In đậm",italic:"In nghiêng",strikethrough:"Gạch ngang",underline:"Gạch chân",strong:"In đậm",em:"In nghiêng",del:"Gạch ngang",unorderedList:"Danh sách không thứ tự",orderedList:"Danh sách có thứ tự",insertImage:"Chèn hình ảnh",insertVideo:"Chèn video",link:"Đường dẫn",createLink:"Tạo đường dẫn",unlink:"Hủy đường dẫn",justifyLeft:"Canh lề trái",justifyCenter:"Canh giữa",justifyRight:"Canh lề phải",justifyFull:"Canh đều",horizontalRule:"Thêm đường kẻ ngang",fullscreen:"Toàn màn hình",close:"Đóng",submit:"Đồng ý",reset:"Hủy bỏ",required:"Bắt buộc",description:"Mô tả",title:"Tiêu đề",text:"Nội dung",target:"Đối tượng"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/zh_cn.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * zh_cn.js 3 | * Simplified Chinese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Liu Kai (akai) 7 | * Twitter : @akai404 8 | * Github : https://github.com/akai 9 | */ 10 | 11 | // jshint camelcase:false 12 | jQuery.trumbowyg.langs.zh_cn = { 13 | viewHTML: '源代码', 14 | 15 | formatting: '格式', 16 | p: '段落', 17 | blockquote: '引用', 18 | code: '代码', 19 | header: '标题', 20 | 21 | bold: '加粗', 22 | italic: '斜体', 23 | strikethrough: '删除线', 24 | underline: '下划线', 25 | 26 | strong: '加粗', 27 | em: '斜体', 28 | del: '删除线', 29 | 30 | unorderedList: '无序列表', 31 | orderedList: '有序列表', 32 | 33 | insertImage: '插入图片', 34 | insertVideo: '插入视频', 35 | link: '超链接', 36 | createLink: '插入链接', 37 | unlink: '取消链接', 38 | 39 | justifyLeft: '居左对齐', 40 | justifyCenter: '居中对齐', 41 | justifyRight: '居右对齐', 42 | justifyFull: '两端对齐', 43 | 44 | horizontalRule: '插入分隔线', 45 | 46 | fullscreen: '全屏', 47 | 48 | close: '关闭', 49 | 50 | submit: '确定', 51 | reset: '取消', 52 | 53 | required: '必需的', 54 | description: '描述', 55 | title: '标题', 56 | text: '文字' 57 | }; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/zh_cn.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * zh_cn.js 3 | * Simplified Chinese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Liu Kai (akai) 7 | * Twitter : @akai404 8 | * Github : https://github.com/akai 9 | */ 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.zh_cn={viewHTML:"源代码",formatting:"格式",p:"段落",blockquote:"引用",code:"代码",header:"标题",bold:"加粗",italic:"斜体",strikethrough:"删除线",underline:"下划线",strong:"加粗",em:"斜体",del:"删除线",unorderedList:"无序列表",orderedList:"有序列表",insertImage:"插入图片",insertVideo:"插入视频",link:"超链接",createLink:"插入链接",unlink:"取消链接",justifyLeft:"居左对齐",justifyCenter:"居中对齐",justifyRight:"居右对齐",justifyFull:"两端对齐",horizontalRule:"插入分隔线",fullscreen:"全屏",close:"关闭",submit:"确定",reset:"取消",required:"必需的",description:"描述",title:"标题",text:"文字"}; -------------------------------------------------------------------------------- /assets/trumbowyg/langs/zh_tw.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * zh_tw.js 3 | * Traditional Chinese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Peter Dave Hello (PeterDaveHello) 7 | * Twitter : @PeterDaveHello 8 | * Github : https://github.com/PeterDaveHello 9 | */ 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.zh_tw={viewHTML:"原始碼",undo:"復原",redo:"重做",formatting:"格式",p:"段落",blockquote:"引用",code:"代碼",header:"標題",bold:"加粗",italic:"斜體",strikethrough:"刪除線",underline:"底線",strong:"粗體",em:"斜體",del:"刪除線",superscript:"上標",subscript:"下標",unorderedList:"無序列表",orderedList:"有序列表",insertImage:"插入圖片",insertVideo:"插入影片",link:"超連結",createLink:"插入連結",unlink:"取消連結",justifyLeft:"靠左對齊",justifyCenter:"置中對齊",justifyRight:"靠右對齊",justifyFull:"左右對齊",horizontalRule:"插入分隔線",removeformat:"移除格式",fullscreen:"全螢幕",close:"關閉",submit:"確定",reset:"取消",required:"必需的",description:"描述",title:"標題",text:"文字",target:"目標",width:"寬度"}; -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/emoji/ui/sass/trumbowyg.emoji.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-emoji { 13 | width: 265px; 14 | padding: 7px 0 7px 5px; 15 | } 16 | 17 | .trumbowyg-dropdown-emoji svg { 18 | display: none !important; 19 | } 20 | 21 | .trumbowyg-dropdown-emoji button { 22 | display: block; 23 | position: relative; 24 | float: left; 25 | height: 26px; 26 | width: 26px; 27 | padding: 0; 28 | margin: 2px; 29 | line-height: 24px; 30 | text-align: center; 31 | 32 | &:hover, 33 | &:focus { 34 | &::after { 35 | display: block; 36 | position: absolute; 37 | top: -5px; 38 | left: -5px; 39 | height: 27px; 40 | width: 27px; 41 | background: inherit; 42 | box-shadow: #000 0 0 2px; 43 | z-index: 10; 44 | background-color: transparent; 45 | } 46 | } 47 | } 48 | 49 | .trumbowyg .emoji { 50 | width: 22px; 51 | height: 22px; 52 | display: inline-block; 53 | } 54 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/emoji/ui/trumbowyg.emoji.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-emoji { 13 | width: 265px; 14 | padding: 7px 0 7px 5px; } 15 | 16 | .trumbowyg-dropdown-emoji svg { 17 | display: none !important; } 18 | 19 | .trumbowyg-dropdown-emoji button { 20 | display: block; 21 | position: relative; 22 | float: left; 23 | height: 26px; 24 | width: 26px; 25 | padding: 0; 26 | margin: 2px; 27 | line-height: 24px; 28 | text-align: center; } 29 | .trumbowyg-dropdown-emoji button:hover::after, .trumbowyg-dropdown-emoji button:focus::after { 30 | display: block; 31 | position: absolute; 32 | top: -5px; 33 | left: -5px; 34 | height: 27px; 35 | width: 27px; 36 | background: inherit; 37 | -webkit-box-shadow: #000 0 0 2px; 38 | box-shadow: #000 0 0 2px; 39 | z-index: 10; 40 | background-color: transparent; } 41 | 42 | .trumbowyg .emoji { 43 | width: 22px; 44 | height: 22px; 45 | display: inline-block; } 46 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/emoji/ui/trumbowyg.emoji.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-dropdown-emoji{width:265px;padding:7px 0 7px 5px}.trumbowyg-dropdown-emoji svg{display:none!important}.trumbowyg-dropdown-emoji button{display:block;position:relative;float:left;height:26px;width:26px;padding:0;margin:2px;line-height:24px;text-align:center}.trumbowyg-dropdown-emoji button:focus::after,.trumbowyg-dropdown-emoji button:hover::after{display:block;position:absolute;top:-5px;left:-5px;height:27px;width:27px;background:inherit;-webkit-box-shadow:#000 0 0 2px;box-shadow:#000 0 0 2px;z-index:10;background-color:transparent}.trumbowyg .emoji{width:22px;height:22px;display:inline-block} -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/highlight/ui/sass/trumbowyg.highlight.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-highlight-form-group { 13 | margin: 15px 10px; 14 | 15 | .trumbowyg-highlight-form-control { 16 | width: 100%; 17 | border: 1px solid #DEDEDE; 18 | font-size: 14px; 19 | padding: 7px; 20 | 21 | &.code { 22 | height: 200px; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/highlight/ui/trumbowyg.highlight.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-highlight-form-group { 13 | margin: 15px 10px; } 14 | .trumbowyg-highlight-form-group .trumbowyg-highlight-form-control { 15 | width: 100%; 16 | border: 1px solid #DEDEDE; 17 | font-size: 14px; 18 | padding: 7px; } 19 | .trumbowyg-highlight-form-group .trumbowyg-highlight-form-control.code { 20 | height: 200px; } 21 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/highlight/ui/trumbowyg.highlight.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-highlight-form-group{margin:15px 10px}.trumbowyg-highlight-form-group .trumbowyg-highlight-form-control{width:100%;border:1px solid #DEDEDE;font-size:14px;padding:7px}.trumbowyg-highlight-form-group .trumbowyg-highlight-form-control.code{height:200px} -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/indent/trumbowyg.indent.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.indent.js v1.0 3 | * Indent or Outdent plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Fabacks 7 | * Website : https://github.com/Fabacks 8 | */ 9 | !function(n){"use strict";n.extend(!0,n.trumbowyg,{langs:{en:{indent:"Indent",outdent:"Outdent"},sl:{indent:"Povečaj zamik",outdent:"Zmanjšaj zamik"},by:{indent:"Водступ",outdent:"Выступ"},et:{indent:"Taande suurendamine",outdent:"Taande vähendamine"},fr:{indent:"Augmenter le retrait",outdent:"Diminuer le retrait"},pt_br:{indent:"Aumentar Recuo",outdent:"Diminuir Recuo"},ru:{indent:"Отступ",outdent:"Выступ"},tr:{indent:"Girinti",outdent:"Çıkıntı"}}}),n.extend(!0,n.trumbowyg,{plugins:{paragraph:{init:function(n){var t={fn:"indent",title:n.lang.indent,isSupported:function(){return!!document.queryCommandSupported&&!!document.queryCommandSupported("indent")},ico:"indent"},e={fn:"outdent",title:n.lang.outdent,isSupported:function(){return!!document.queryCommandSupported&&!!document.queryCommandSupported("outdent")},ico:"outdent"};n.addBtnDef("indent",t),n.addBtnDef("outdent",e)}}}})}(jQuery); -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/insertaudio/trumbowyg.insertaudio.min.js: -------------------------------------------------------------------------------- 1 | /*/* =========================================================== 2 | * trumbowyg.insertaudio.js v1.0 3 | * InsertAudio plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Adam Hess (AdamHess) 7 | */ 8 | !function(e){"use strict";var r={src:{label:"URL",required:!0},autoplay:{label:"AutoPlay",required:!1,type:"checkbox"},muted:{label:"Muted",required:!1,type:"checkbox"},preload:{label:"preload options",required:!1}};e.extend(!0,e.trumbowyg,{langs:{en:{insertAudio:"Insert Audio"},sl:{insertAudio:"Vstavi zvočno datoteko"},by:{insertAudio:"Уставіць аўдыё"},da:{insertAudio:"Indsæt lyd"},et:{insertAudio:"Lisa helifail"},fr:{insertAudio:"Insérer un son"},hu:{insertAudio:"Audio beszúrás"},ja:{insertAudio:"音声の挿入"},ko:{insertAudio:"소리 넣기"},pt_br:{insertAudio:"Inserir áudio"},ru:{insertAudio:"Вставить аудио"},tr:{insertAudio:"Ses Ekle"}},plugins:{insertAudio:{init:function(i){var t={fn:function(){i.openModalInsert(i.lang.insertAudio,r,(function(r){var t="")[0];return i.range.deleteContents(),i.range.insertNode(o),!0}))}};i.addBtnDef("insertAudio",t)}}}})}(jQuery); -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/mathml/ui/sass/trumbowyg.mathml.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | [formulas] { 13 | position: relative; 14 | display: inline-block; 15 | pointer-events: none; 16 | 17 | &[inline="false"] { 18 | display: block; 19 | width: 100%; 20 | } 21 | 22 | &::after { 23 | content: '\270E'; 24 | position: absolute; 25 | top: 0; 26 | right: 0; 27 | bottom: 0; 28 | left: 0; 29 | opacity: 0; 30 | background-color: rgba(255, 255, 255, 0.83); 31 | box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83); 32 | cursor: pointer; 33 | pointer-events: auto; 34 | } 35 | 36 | &:hover { 37 | &::after { 38 | opacity: 1; 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/mathml/ui/trumbowyg.mathml.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | [formulas] { 13 | position: relative; 14 | display: inline-block; 15 | pointer-events: none; } 16 | [formulas][inline="false"] { 17 | display: block; 18 | width: 100%; } 19 | [formulas]::after { 20 | content: '\270E'; 21 | position: absolute; 22 | top: 0; 23 | right: 0; 24 | bottom: 0; 25 | left: 0; 26 | opacity: 0; 27 | background-color: rgba(255, 255, 255, 0.83); 28 | -webkit-box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83); 29 | box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83); 30 | cursor: pointer; 31 | pointer-events: auto; } 32 | [formulas]:hover::after { 33 | opacity: 1; } 34 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/mathml/ui/trumbowyg.mathml.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | [formulas]{position:relative;display:inline-block;pointer-events:none}[formulas][inline=false]{display:block;width:100%}[formulas]::after{content:'\270E';position:absolute;top:0;right:0;bottom:0;left:0;opacity:0;background-color:rgba(255,255,255,.83);-webkit-box-shadow:0 0 5px 5px rgba(255,255,255,.83);box-shadow:0 0 5px 5px rgba(255,255,255,.83);cursor:pointer;pointer-events:auto}[formulas]:hover::after{opacity:1} -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/mention/trumbowyg.mention.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.mention.js v0.1 3 | * Mention plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Viper 7 | * Github: https://github.com/Globulopolis 8 | * Website: http://киноархив.com 9 | */ 10 | !function(n){"use strict";var t={source:[],formatDropdownItem:function(n){return n.login},formatResult:function(n){return"@"+n.login+" "}};function o(t,o){var e=[];return n.each(t,(function(n,t){var i="mention-"+n,m={hasIcon:!1,text:o.o.plugins.mention.formatDropdownItem(t),fn:function(){return o.execCmd("insertHTML",o.o.plugins.mention.formatResult(t)),!0}};o.addBtnDef(i,m),e.push(i)})),e}n.extend(!0,n.trumbowyg,{langs:{en:{mention:"Mention"},sl:{mention:"Omeni"},by:{mention:"Згадаць"},da:{mention:"Nævn"},et:{mention:"Maini"},fr:{mention:"Mentionner"},hu:{mention:"Említ"},ko:{mention:"언급"},pt_br:{mention:"Menção"},ru:{mention:"Упомянуть"},tr:{mention:"Bahset"},zh_tw:{mention:"標記"}},plugins:{mention:{init:function(e){e.o.plugins.mention=n.extend(!0,{},t,e.o.plugins.mention||{});var i={dropdown:o(e.o.plugins.mention.source,e)};e.addBtnDef("mention",i)}}}})}(jQuery); -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/mention/ui/sass/trumbowyg.mention.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-mention { 13 | button { 14 | position: relative; 15 | white-space: nowrap; 16 | 17 | &:after { 18 | content: ""; 19 | position: absolute; 20 | top: 0; 21 | right: 0; 22 | width: 15%; 23 | height: 100%; 24 | background-size: 100%; 25 | background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 26 | pointer-events: none; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/mention/ui/trumbowyg.mention.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-mention button { 13 | position: relative; 14 | white-space: nowrap; } 15 | .trumbowyg-dropdown-mention button:after { 16 | content: ""; 17 | position: absolute; 18 | top: 0; 19 | right: 0; 20 | width: 15%; 21 | height: 100%; 22 | -webkit-background-size: 100% 100%; 23 | background-size: 100%; 24 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, #ffffff), to(#ffffff)); 25 | background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 26 | background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 27 | background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 28 | pointer-events: none; } 29 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/mention/ui/trumbowyg.mention.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-dropdown-mention button{position:relative;white-space:nowrap}.trumbowyg-dropdown-mention button:after{content:"";position:absolute;top:0;right:0;width:15%;height:100%;-webkit-background-size:100% 100%;background-size:100%;background-image:-webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),color-stop(80%,#fff),to(#fff));background-image:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,#fff 80%,#fff 100%);background-image:-o-linear-gradient(left,rgba(255,255,255,0) 0,#fff 80%,#fff 100%);background-image:linear-gradient(to right,rgba(255,255,255,0) 0,#fff 80%,#fff 100%);pointer-events:none} -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/pasteembed/trumbowyg.pasteembed.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.pasteembed.js v1.0 3 | * Url paste to iframe with noembed. Plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Max Seelig 7 | * Facebook : https://facebook.com/maxse 8 | * Website : https://www.maxmade.nl/ 9 | */ 10 | !function(t){"use strict";var e={enabled:!0,endpoints:["https://noembed.com/embed?nowrap=on","https://api.maxmade.nl/url2iframe/embed"]};t.extend(!0,t.trumbowyg,{plugins:{pasteEmbed:{init:function(n){n.o.plugins.pasteEmbed=t.extend(!0,{},e,n.o.plugins.pasteEmbed||{}),n.o.plugins.pasteEmbed.enabled&&n.pasteHandlers.push((function(e){try{var a=(e.originalEvent||e).clipboardData.getData("Text"),r=n.o.plugins.pasteEmbed.endpoints,s=null;if(a.startsWith("http")){e.stopPropagation(),e.preventDefault();var i={url:a.trim()},o="",p=0;s&&s.transport&&s.transport.abort(),s=t.ajax({crossOrigin:!0,url:r[p],type:"GET",data:i,cache:!1,dataType:"jsonp",success:function(t){t.html?(p=0,o=t.html):p+=1},error:function(){p+=1},complete:function(){0===o.length&&p",{href:a,text:a}).prop("outerHTML")),o.length>0&&(p=0,n.execCmd("insertHTML",o))}})}}catch(t){}}))}}}})}(jQuery); -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/pasteimage/trumbowyg.pasteimage.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.pasteimage.js v1.0 3 | * Basic base64 paste plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Alexandre Demode (Alex-D) 7 | * Twitter : @AlexandreDemode 8 | * Website : alex-d.fr 9 | */ 10 | !function(e){"use strict";e.extend(!0,e.trumbowyg,{plugins:{pasteImage:{init:function(e){e.pasteHandlers.push((function(t){try{for(var a,n=(t.originalEvent||t).clipboardData.items,i=!1,r=n.length-1;r>=0;r-=1)n[r].type.match(/^image\//)&&((a=new FileReader).onloadend=function(t){e.execCmd("insertImage",t.target.result,!1,!0)},a.readAsDataURL(n[r].getAsFile()),i=!0);i&&(t.stopPropagation(),t.preventDefault())}catch(e){}}))}}}})}(jQuery); -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/specialchars/ui/trumbowyg.specialchars.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-symbol-\ -dropdown-button { 13 | display: none !important; } 14 | 15 | .trumbowyg-symbol-\ -dropdown-button + button { 16 | clear: both; } 17 | 18 | .trumbowyg-dropdown-specialChars { 19 | width: 248px; 20 | padding: 5px 3px 3px; } 21 | 22 | .trumbowyg-dropdown-specialChars button { 23 | display: block; 24 | position: relative; 25 | float: left; 26 | height: 26px; 27 | width: 26px; 28 | padding: 0; 29 | margin: 2px; 30 | line-height: 24px; 31 | text-align: center; } 32 | .trumbowyg-dropdown-specialChars button:hover::after, .trumbowyg-dropdown-specialChars button:focus::after { 33 | display: block; 34 | position: absolute; 35 | top: -5px; 36 | left: -5px; 37 | height: 27px; 38 | width: 27px; 39 | background: inherit; 40 | -webkit-box-shadow: #000 0 0 2px; 41 | box-shadow: #000 0 0 2px; 42 | z-index: 10; 43 | background-color: transparent; } 44 | 45 | .trumbowyg .specialChars { 46 | width: 22px; 47 | height: 22px; 48 | display: inline-block; } 49 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/specialchars/ui/trumbowyg.specialchars.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-symbol-\ -dropdown-button{display:none!important}.trumbowyg-symbol-\ -dropdown-button+button{clear:both}.trumbowyg-dropdown-specialChars{width:248px;padding:5px 3px 3px}.trumbowyg-dropdown-specialChars button{display:block;position:relative;float:left;height:26px;width:26px;padding:0;margin:2px;line-height:24px;text-align:center}.trumbowyg-dropdown-specialChars button:focus::after,.trumbowyg-dropdown-specialChars button:hover::after{display:block;position:absolute;top:-5px;left:-5px;height:27px;width:27px;background:inherit;-webkit-box-shadow:#000 0 0 2px;box-shadow:#000 0 0 2px;z-index:10;background-color:transparent}.trumbowyg .specialChars{width:22px;height:22px;display:inline-block} -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/table/ui/sass/trumbowyg.table.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-editor table { 13 | width: 100%; 14 | 15 | td { 16 | border: 1px dotted #e7eaec; 17 | padding: 8px; 18 | } 19 | } 20 | 21 | .trumbowyg-dropdown-table { 22 | table { 23 | margin: 10px; 24 | display: inline-block; 25 | } 26 | 27 | table td { 28 | display: inline-block; 29 | height: 20px; 30 | width: 20px; 31 | margin: 1px; 32 | padding: 0; 33 | background-color: #fff; 34 | box-shadow: 0 0 0 1px #cecece inset; 35 | 36 | &.active { 37 | background-color: #00b393; 38 | box-shadow: none; 39 | cursor: pointer; 40 | } 41 | } 42 | 43 | .trumbowyg-table-size { 44 | text-align: center; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/table/ui/trumbowyg.table.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-editor table { 13 | width: 100%; } 14 | .trumbowyg-editor table td { 15 | border: 1px dotted #e7eaec; 16 | padding: 8px; } 17 | 18 | .trumbowyg-dropdown-table table { 19 | margin: 10px; 20 | display: inline-block; } 21 | 22 | .trumbowyg-dropdown-table table td { 23 | display: inline-block; 24 | height: 20px; 25 | width: 20px; 26 | margin: 1px; 27 | padding: 0; 28 | background-color: #fff; 29 | -webkit-box-shadow: 0 0 0 1px #cecece inset; 30 | box-shadow: 0 0 0 1px #cecece inset; } 31 | .trumbowyg-dropdown-table table td.active { 32 | background-color: #00b393; 33 | -webkit-box-shadow: none; 34 | box-shadow: none; 35 | cursor: pointer; } 36 | 37 | .trumbowyg-dropdown-table .trumbowyg-table-size { 38 | text-align: center; } 39 | -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/table/ui/trumbowyg.table.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-editor table{width:100%}.trumbowyg-editor table td{border:1px dotted #e7eaec;padding:8px}.trumbowyg-dropdown-table table{margin:10px;display:inline-block}.trumbowyg-dropdown-table table td{display:inline-block;height:20px;width:20px;margin:1px;padding:0;background-color:#fff;-webkit-box-shadow:0 0 0 1px #cecece inset;box-shadow:0 0 0 1px #cecece inset}.trumbowyg-dropdown-table table td.active{background-color:#00b393;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.trumbowyg-dropdown-table .trumbowyg-table-size{text-align:center} -------------------------------------------------------------------------------- /assets/trumbowyg/plugins/template/trumbowyg.template.min.js: -------------------------------------------------------------------------------- 1 | !function(t){"use strict";function e(e){var a=e.o.plugins.templates,l=[];return t.each(a,(function(t,a){e.addBtnDef("template_"+t,{fn:function(){e.html(a.html)},hasIcon:!1,title:a.name}),l.push("template_"+t)})),l}t.extend(!0,t.trumbowyg,{langs:{en:{template:"Template"},sl:{template:"Predloga"},by:{template:"Шаблон"},da:{template:"Skabelon"},de:{template:"Vorlage"},et:{template:"Mall"},fr:{template:"Patron"},hu:{template:"Sablon"},ja:{template:"テンプレート"},ko:{template:"서식"},nl:{template:"Sjabloon"},pt_br:{template:"Modelo"},ru:{template:"Шаблон"},tr:{template:"Şablon"},zh_tw:{template:"模板"}}}),t.extend(!0,t.trumbowyg,{plugins:{template:{shouldInit:function(t){return t.o.plugins.hasOwnProperty("templates")},init:function(t){t.addBtnDef("template",{dropdown:e(t),hasIcon:!1,text:t.lang.template})}}}})}(jQuery); -------------------------------------------------------------------------------- /assets/userImage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/assets/userImage/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "php": "^8.3", 4 | "ext-curl": "*", 5 | "ext-gd": "*", 6 | "mercadopago/dx-php": "^2.6.2", 7 | "efipay/sdk-php-apis-efi": "^1.11.0", 8 | "codeigniter/framework": "^3.1.13", 9 | "mpdf/mpdf": "^8.2.5", 10 | "filp/whoops": "^2.17.0", 11 | "mk-j/php_xlsxwriter": "^0.38.0", 12 | "mpdf/qrcode": "^1.2.1", 13 | "phpoffice/phpword": "^0.18.3", 14 | "piggly/php-pix": "^2.0.2", 15 | "vlucas/phpdotenv": "^5.6.1", 16 | "codephix/asaas-sdk": "^2.0.10" 17 | }, 18 | "require-dev": { 19 | "friendsofphp/php-cs-fixer": "^3.68.1", 20 | "symfony/var-dumper": "^6.4.15", 21 | "fakerphp/faker": "^1.24.1" 22 | }, 23 | "scripts": { 24 | "format": [ 25 | "application/vendor/bin/php-cs-fixer fix" 26 | ] 27 | }, 28 | "config": { 29 | "vendor-dir": "application/vendor" 30 | }, 31 | "autoload": { 32 | "psr-4": { 33 | "Libraries\\": "application/libraries" 34 | } 35 | }, 36 | "repositories": [ 37 | { 38 | "type": "vcs", 39 | "url": "https://github.com/codephix/asaas-sdk" 40 | } 41 | ], 42 | "type": "project" 43 | } 44 | -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # See https://docs.docker.com/compose/environment-variables/#the-env-file 4 | 5 | # Nginx 6 | NGINX_HOST=localhost 7 | NGINX_PORT=8000 8 | 9 | # PHP 10 | 11 | # See https://hub.docker.com/r/nanoninja/php-fpm/tags/ 12 | PHP_VERSION=latest 13 | 14 | # PhpMyAdmin 15 | PHP_MY_ADMIN_PORT=8080 16 | 17 | # MySQL 18 | MYSQL_MAPOS_PORT=8989 19 | MYSQL_MAPOS_VERSION=8.4 20 | MYSQL_MAPOS_HOST=mysql 21 | MYSQL_MAPOS_DATABASE=mapos 22 | MYSQL_MAPOS_ROOT_USER=root 23 | MYSQL_MAPOS_ROOT_PASSWORD=root 24 | MYSQL_MAPOS_USER=mapos 25 | MYSQL_MAPOS_PASSWORD=mapos 26 | -------------------------------------------------------------------------------- /docker/etc/composer/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM composer:latest 2 | 3 | # Install necessary dependencies 4 | RUN apk add libpng libpng-dev libjpeg-turbo-dev libwebp-dev zlib-dev libxpm-dev gd && docker-php-ext-install gd 5 | -------------------------------------------------------------------------------- /docker/etc/nginx/default.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 8000 default_server; 3 | listen [::]:8000 default_server; 4 | server_name localhost; 5 | 6 | root /var/www/html; 7 | index index.html index.php; 8 | client_max_body_size 64M; 9 | 10 | # set expiration of assets to MAX for caching 11 | location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ { 12 | expires max; 13 | log_not_found off; 14 | } 15 | 16 | location / { 17 | # Check if a file or directory index file exists, else route it to index.php. 18 | try_files $uri $uri/ /index.php; 19 | } 20 | 21 | location ~* \.php$ { 22 | fastcgi_pass php-fpm:9000; 23 | fastcgi_index index.php; 24 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 25 | fastcgi_read_timeout 600; 26 | include fastcgi_params; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /docker/etc/nginx/default.template.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen ${NGINX_PORT} default_server; 3 | listen [::]:${NGINX_PORT} default_server; 4 | server_name ${NGINX_HOST}; 5 | 6 | root /var/www/html; 7 | index index.html index.php; 8 | client_max_body_size 64M; 9 | 10 | # set expiration of assets to MAX for caching 11 | location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ { 12 | expires max; 13 | log_not_found off; 14 | } 15 | 16 | location / { 17 | # Check if a file or directory index file exists, else route it to index.php. 18 | try_files $uri $uri/ /index.php; 19 | } 20 | 21 | location ~* \.php$ { 22 | fastcgi_pass php-fpm:9000; 23 | fastcgi_index index.php; 24 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 25 | fastcgi_read_timeout 600; 26 | include fastcgi_params; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /docker/etc/php/cron-jobs: -------------------------------------------------------------------------------- 1 | */2 * * * * /usr/local/bin/php /var/www/html/index.php email/process >> /var/log/cron.log 2 | */5 * * * * /usr/local/bin/php /var/www/html/index.php email/retry >> /var/log/cron.log 3 | -------------------------------------------------------------------------------- /docker/etc/php/php.ini: -------------------------------------------------------------------------------- 1 | ; PHP Configuration 2 | 3 | ;[Date] 4 | ; Defines the default timezone used by the date functions 5 | ; http://php.net/date.timezone 6 | ;date.timezone = 7 | 8 | ; Error handling 9 | ;display_errors = Off 10 | 11 | ; Xdebug 12 | ; See https://xdebug.org/docs/all_settings 13 | 14 | ;PHPStorm 15 | ; [Xdebug] 16 | ; xdebug.remote_enable=1 17 | ; xdebug.idekey=PHPSTORM 18 | ; xdebug.profiler_enable=0 19 | ; xdebug.max_nesting_level=700 20 | ; xdebug.remote_host=192.168.0.1 # your ip 21 | ; xdebug.remote_port=9000 22 | 23 | ;Netbeans 24 | ;[Xdebug] 25 | ;xdebug.remote_enable=1 26 | ;xdebug.remote_handler=dbgp 27 | ;xdebug.remote_mode=req 28 | ;xdebug.remote_host=192.168.0.1 # your ip 29 | ;xdebug.remote_port=9000 30 | -------------------------------------------------------------------------------- /docker/etc/php/supervisord.conf: -------------------------------------------------------------------------------- 1 | [supervisord] 2 | nodaemon=true 3 | 4 | [program:cron] 5 | command = cron -f 6 | 7 | [program:php-fpm] 8 | command = docker-php-entrypoint php-fpm 9 | -------------------------------------------------------------------------------- /docker/etc/php/uploads.ini: -------------------------------------------------------------------------------- 1 | file_uploads = On 2 | memory_limit = 128M 3 | upload_max_filesize = 10M 4 | post_max_size = 10M 5 | max_execution_time = 600 6 | -------------------------------------------------------------------------------- /docs/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/docs/dashboard.png -------------------------------------------------------------------------------- /docs/modelagem.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/docs/modelagem.mwb -------------------------------------------------------------------------------- /docs/modelagem.mwb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/docs/modelagem.mwb.bak -------------------------------------------------------------------------------- /install/assets/css/custom.css: -------------------------------------------------------------------------------- 1 | body { 2 | overflow-y: scroll; 3 | background-color: #f1f1f1; 4 | } 5 | 6 | #logo { 7 | margin-top: 12px; 8 | } 9 | 10 | /* Sticky footer styles 11 | -------------------------------------------------- */ 12 | .footer { 13 | text-align: center; 14 | } 15 | 16 | .panel-install>.panel-heading{ 17 | background-color: #fff; 18 | color: #93a4c3; 19 | border-bottom: none; 20 | } 21 | -------------------------------------------------------------------------------- /install/assets/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/install/assets/images/favicon-16x16.png -------------------------------------------------------------------------------- /install/assets/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/install/assets/images/favicon-32x32.png -------------------------------------------------------------------------------- /install/assets/images/favicon-512x512.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/install/assets/images/favicon-512x512.fw.png -------------------------------------------------------------------------------- /install/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/install/assets/images/favicon.ico -------------------------------------------------------------------------------- /install/assets/images/loader2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonSilva20/mapos/c25c413914856bfa6332fd3a8d00ecdf268e83db/install/assets/images/loader2.gif -------------------------------------------------------------------------------- /install/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "MAPOS - Sistema de Controle de Ordens de Serviço", 3 | "extensions": [ 4 | "cURL", 5 | "MySQLi", 6 | "GD", 7 | "zip" 8 | ], 9 | "database_file": "../banco.sql", 10 | "writeable_directories": { 11 | "files": "/updates" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /install/view/finished.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 | 7 |
8 | 9 | Parabéns! Você instalou o 10 | com sucesso! 11 | 12 | 13 |
14 | Não esqueça de deletar seu diretório de instalação. 15 |
16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | Parece que este aplicativo já está instalado! Você não pode reinstalá-lo novamente. 24 |
25 | 26 | 27 | 28 | 34 | 35 |
36 |
37 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /updates/update_3.12_to_3.14.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `produtos` ADD `codDeBarra` VARCHAR(70) NULL AFTER `idProdutos`; 2 | -------------------------------------------------------------------------------- /updates/update_3.14.2_to_3.15.0.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `configuracoes` ( `idConfig` INT NOT NULL AUTO_INCREMENT , `config` VARCHAR(20) NOT NULL UNIQUE, `valor` VARCHAR(20) NOT NULL , PRIMARY KEY (`idConfig`)) ENGINE = InnoDB; 2 | 3 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES 4 | (2, 'app_name', 'Map-OS'), 5 | (3, 'app_theme', 'white'), 6 | (4, 'per_page', '10'), 7 | (5, 'os_notification', 'cliente'), 8 | (6, 'control_estoque', '1'); 9 | 10 | -------------------------------------------------------------------------------- /updates/update_3.15.0_to_4.0.0.sql: -------------------------------------------------------------------------------- 1 | -- ----------------------------------------------------- 2 | -- Table `migrations` 3 | -- ----------------------------------------------------- 4 | CREATE TABLE `migrations` ( 5 | `version` BIGINT(20) NOT NULL 6 | ); 7 | 8 | INSERT INTO `migrations`(`version`) VALUES ('20121031100537'); 9 | -------------------------------------------------------------------------------- /updates/update_3.6.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `produtos_os` ADD `descricao` VARCHAR(80) NULL AFTER `quantidade`, ADD `preco` VARCHAR(15) NULL AFTER `descricao`; 2 | 3 | ALTER TABLE `servicos_os` ADD `servico` VARCHAR(80) NULL AFTER `idServicos_os`, ADD `quantidade` DOUBLE NULL AFTER `servico`, ADD `preco` VARCHAR(15) NULL AFTER `quantidade`; 4 | 5 | ALTER TABLE `itens_de_vendas` ADD `preco` VARCHAR(15) NULL AFTER `quantidade`; -------------------------------------------------------------------------------- /updates/update_3.7.0.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `email_queue` ( 2 | `id` int(11) NOT NULL AUTO_INCREMENT, 3 | `to` varchar(255) NOT NULL, 4 | `cc` varchar(255) DEFAULT NULL, 5 | `bcc` varchar(255) DEFAULT NULL, 6 | `message` text NOT NULL, 7 | `status` enum('pending','sending','sent','failed') DEFAULT NULL, 8 | `date` datetime DEFAULT NULL, 9 | `headers` text, 10 | PRIMARY KEY (`id`) 11 | ) -------------------------------------------------------------------------------- /updates/update_3.9_to_3.10.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `anotacoes_os` ( 2 | `idAnotacoes` INT(11) NOT NULL AUTO_INCREMENT, 3 | `anotacao` VARCHAR(255) NOT NULL , 4 | `data_hora` DATETIME NOT NULL , 5 | `os_id` INT(11) NOT NULL , 6 | PRIMARY KEY (`idAnotacoes`) 7 | ); -------------------------------------------------------------------------------- /updates/update_4.14.1_to_4.15.0.sql: -------------------------------------------------------------------------------- 1 | -- Alterando tabela vendas 2 | ALTER TABLE vendas ADD observacoes TEXT DEFAULT NULL NULL; 3 | -------------------------------------------------------------------------------- /updates/update_4.17.1_to_4.18.0.sql: -------------------------------------------------------------------------------- 1 | -- Alterando tabela vendas 2 | ALTER TABLE vendas ADD observacoes_cliente TEXT DEFAULT NULL NULL; 3 | -------------------------------------------------------------------------------- /updates/update_4.19.0_to_4.20.0.sql: -------------------------------------------------------------------------------- 1 | -- Alterando tabela lancamentos 2 | ALTER TABLE lancamentos ADD observacoes TEXT DEFAULT NULL NULL; 3 | -------------------------------------------------------------------------------- /updates/update_4.23.0_to_4.24.0.sql: -------------------------------------------------------------------------------- 1 | -- Alterando tabela emitente 2 | ALTER TABLE emitente ADD cep VARCHAR(20) NULL; 3 | -------------------------------------------------------------------------------- /updates/update_4.24.0_to_4.25.0.sql: -------------------------------------------------------------------------------- 1 | -- Estrutura da tabela `cobrancas` 2 | CREATE TABLE `cobrancas` ( 3 | `idCobranca` int(11) NOT NULL, 4 | `charge_id` int(11) DEFAULT NULL, 5 | `conditional_discount_date` date DEFAULT NULL, 6 | `created_at` datetime DEFAULT NULL, 7 | `custom_id` int(11) DEFAULT NULL, 8 | `expire_at` date NOT NULL, 9 | `message` varchar(255) NOT NULL, 10 | `payment_method` varchar(11) DEFAULT NULL, 11 | `payment_url` varchar(255) DEFAULT NULL, 12 | `request_delivery_address` varchar(64) DEFAULT NULL, 13 | `status` varchar(36) NOT NULL, 14 | `total` varchar(15) DEFAULT NULL, 15 | `barcode` varchar(255) NOT NULL, 16 | `link` varchar(255) NOT NULL, 17 | `payment` varchar(64) NOT NULL, 18 | `pdf` varchar(255) DEFAULT NULL, 19 | `vendas_id` int(11) DEFAULT NULL, 20 | `os_id` int(11) DEFAULT NULL, 21 | PRIMARY KEY (`idCobranca`), 22 | INDEX `fk_cobrancas_os1` (`os_id` ASC), 23 | CONSTRAINT `fk_cobrancas_os1` FOREIGN KEY (`os_id`) REFERENCES `os` (`idOs`) ON DELETE NO ACTION ON UPDATE NO ACTION, 24 | INDEX `fk_cobrancas_vendas1` (`vendas_id` ASC), 25 | CONSTRAINT `fk_cobrancas_vendas1` FOREIGN KEY (`vendas_id`) REFERENCES `vendas` (`idVendas`) ON DELETE NO ACTION ON UPDATE NO ACTION 26 | ) ENGINE = InnoDB DEFAULT CHARSET = utf8; 27 | -------------------------------------------------------------------------------- /updates/update_4.25.1_to_4.26.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `lancamentos` ADD `usuarios_id` INT(11) NULL; 2 | ALTER TABLE `lancamentos` ADD CONSTRAINT `fk_usuarios_lancamentos1` FOREIGN KEY (`usuarios_id`) REFERENCES `usuarios` (`idUsuarios`) ON DELETE NO ACTION ON UPDATE NO ACTION; 3 | -------------------------------------------------------------------------------- /updates/update_4.26.2_to_4.27.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `configuracoes` CHANGE `valor` `valor` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL; 2 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES ('7', 'notifica_whats', 'Prezado(a), {CLIENTE_NOME} a OS de nº {NUMERO_OS} teve o status alterado para :{STATUS_OS} segue a descrição {DESCRI_PRODUTOS} com valor total de {VALOR_OS}!\r\nPara mais informações entre em contato conosco.\r\nAtenciosamente, {EMITENTE} {TELEFONE_EMITENTE}.'); 3 | -------------------------------------------------------------------------------- /updates/update_4.27.0_to_4.28.0.sql: -------------------------------------------------------------------------------- 1 | UPDATE permissoes 2 | SET permissoes = 'a:53:{s:8:"aCliente";s:1:"1";s:8:"eCliente";s:1:"1";s:8:"dCliente";s:1:"1";s:8:"vCliente";s:1:"1";s:8:"aProduto";s:1:"1";s:8:"eProduto";s:1:"1";s:8:"dProduto";s:1:"1";s:8:"vProduto";s:1:"1";s:8:"aServico";s:1:"1";s:8:"eServico";s:1:"1";s:8:"dServico";s:1:"1";s:8:"vServico";s:1:"1";s:3:"aOs";s:1:"1";s:3:"eOs";s:1:"1";s:3:"dOs";s:1:"1";s:3:"vOs";s:1:"1";s:6:"aVenda";s:1:"1";s:6:"eVenda";s:1:"1";s:6:"dVenda";s:1:"1";s:6:"vVenda";s:1:"1";s:9:"aGarantia";s:1:"1";s:9:"eGarantia";s:1:"1";s:9:"dGarantia";s:1:"1";s:9:"vGarantia";s:1:"1";s:8:"aArquivo";s:1:"1";s:8:"eArquivo";s:1:"1";s:8:"dArquivo";s:1:"1";s:8:"vArquivo";s:1:"1";s:10:"aPagamento";N;s:10:"ePagamento";N;s:10:"dPagamento";N;s:10:"vPagamento";N;s:11:"aLancamento";s:1:"1";s:11:"eLancamento";s:1:"1";s:11:"dLancamento";s:1:"1";s:11:"vLancamento";s:1:"1";s:8:"cUsuario";s:1:"1";s:9:"cEmitente";s:1:"1";s:10:"cPermissao";s:1:"1";s:7:"cBackup";s:1:"1";s:10:"cAuditoria";s:1:"1";s:6:"cEmail";s:1:"1";s:8:"cSistema";s:1:"1";s:8:"rCliente";s:1:"1";s:8:"rProduto";s:1:"1";s:8:"rServico";s:1:"1";s:3:"rOs";s:1:"1";s:6:"rVenda";s:1:"1";s:11:"rFinanceiro";s:1:"1";s:9:"aCobranca";s:1:"1";s:9:"eCobranca";s:1:"1";s:9:"dCobranca";s:1:"1";s:9:"vCobranca";s:1:"1";}' 3 | WHERE idPermissao = 1; 4 | 5 | ALTER TABLE cobrancas 6 | ADD `payment_gateway` VARCHAR(255) NULL DEFAULT NULL 7 | AFTER `link`; 8 | -------------------------------------------------------------------------------- /updates/update_4.29.0_to_4.30.0.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (9, 'control_editos', 1); 2 | 3 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (10, 'control_datatable', 1); 4 | 5 | ALTER TABLE `clientes` ADD `fornecedor` BOOLEAN NOT NULL DEFAULT FALSE; 6 | -------------------------------------------------------------------------------- /updates/update_4.30.3_to_4.31.0.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (11, 'pix_key', ''); 2 | -------------------------------------------------------------------------------- /updates/update_4.31.1_to_4.32.0 .sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (Null, 'os_status_list', '[\"Aberto\",\"Faturado\",\"Negocia\\u00e7\\u00e3o\",\"Em Andamento\",\"Or\\u00e7amento\",\"Finalizado\",\"Cancelado\",\"Aguardando Pe\\u00e7as\"]'); 2 | -------------------------------------------------------------------------------- /updates/update_4.32.1_to_4.33.0.sql: -------------------------------------------------------------------------------- 1 | UPDATE `configuracoes` SET valor = '[\"Aberto\",\"Faturado\",\"Negocia\\u00e7\\u00e3o\",\"Em Andamento\",\"Or\\u00e7amento\",\"Finalizado\",\"Cancelado\",\"Aguardando Pe\\u00e7as\",\"Aprovado\"]' WHERE idConfig = 12; 2 | -------------------------------------------------------------------------------- /updates/update_4.34.0_to_4.35.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE clientes ADD asaas_id varchar(255) NULL; 2 | ALTER TABLE cobrancas MODIFY COLUMN charge_id VARCHAR(255) NOT NULL; 3 | -------------------------------------------------------------------------------- /updates/update_4.35.0_to_4.36.0 .sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE usuarios ADD url_image_user varchar(255) NULL; 2 | -------------------------------------------------------------------------------- /updates/update_4.36.0_to_4.37.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `clientes` ADD `senha` VARCHAR(200) NOT NULL; 2 | CREATE TABLE `resets_de_senha` ( `id` INT NOT NULL AUTO_INCREMENT, `email` VARCHAR(200) NOT NULL , `token` VARCHAR(255) NOT NULL , `data_expiracao` DATETIME NOT NULL, `token_utilizado` TINYINT NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; 3 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (13, 'control_edit_vendas', 1); 4 | -------------------------------------------------------------------------------- /updates/update_4.37.0_to_4.38.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `os` CHANGE `valorTotal` `valorTotal` DECIMAL(10,2) NULL DEFAULT 0; 2 | ALTER TABLE `os` ADD `desconto` DECIMAL(10, 2) NULL DEFAULT 0; 3 | ALTER TABLE `os` ADD `valor_desconto` DECIMAL(10, 2) NULL DEFAULT 0; 4 | ALTER TABLE `vendas` CHANGE `valorTotal` `valorTotal` DECIMAL(10,2) NULL DEFAULT 0; 5 | ALTER TABLE `vendas` CHANGE `desconto` `desconto` DECIMAL(10,2) NULL DEFAULT 0; 6 | ALTER TABLE `vendas` ADD `valor_desconto` DECIMAL(10, 2) NULL DEFAULT 0; 7 | ALTER TABLE `lancamentos` CHANGE `valor` `valor` DECIMAL(10,2) NOT NULL DEFAULT 0; 8 | ALTER TABLE `lancamentos` ADD `desconto` DECIMAL(10, 2) NULL DEFAULT 0; 9 | ALTER TABLE `lancamentos` ADD `valor_desconto` DECIMAL(10, 2) NULL DEFAULT 0; 10 | ALTER TABLE `cobrancas` CHANGE `total` `total` DECIMAL(10,2) NULL DEFAULT 0; 11 | ALTER TABLE `produtos_os` CHANGE `preco` `preco` DECIMAL(10,2) NULL DEFAULT 0; 12 | ALTER TABLE `produtos_os` CHANGE `subTotal` `subTotal` DECIMAL(10,2) NULL DEFAULT 0; 13 | ALTER TABLE `servicos_os` CHANGE `preco` `preco` DECIMAL(10,2) NULL DEFAULT 0; 14 | ALTER TABLE `servicos_os` CHANGE `subTotal` `subTotal` DECIMAL(10,2) NULL DEFAULT 0; 15 | ALTER TABLE `itens_de_vendas` CHANGE `subTotal` `subTotal` DECIMAL(10,2) NULL DEFAULT 0; 16 | ALTER TABLE `itens_de_vendas` CHANGE `preco` `preco` DECIMAL(10,2) NULL DEFAULT 0; 17 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (14, 'email_automatico', 1); 18 | -------------------------------------------------------------------------------- /updates/update_4.39.0_to_4.40.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `os` ADD `tipo_desconto` VARCHAR(8) NULL DEFAULT NULL; 2 | ALTER TABLE `vendas` ADD `tipo_desconto` VARCHAR(8) NULL DEFAULT NULL; 3 | ALTER TABLE `lancamentos` ADD `tipo_desconto` VARCHAR(8) NULL DEFAULT NULL; 4 | ALTER TABLE `clientes` ADD `asaas_id` VARCHAR(255) NULL DEFAULT NULL; 5 | ALTER TABLE `usuarios` DROP `asaas_id`; 6 | INSERT INTO `configuracoes` (`idConfig`, `config`, `valor`) VALUES (15, 'control_2vias', 0); 7 | ALTER TABLE `configuracoes` CHANGE `config` `config` VARCHAR(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL; 8 | UPDATE `configuracoes` SET `valor` = 'Prezado(a), {CLIENTE_NOME} a OS de nº {NUMERO_OS} teve o status alterado para: {STATUS_OS} segue a descrição {DESCRI_PRODUTOS} com valor total de {VALOR_OS}! Para mais informações entre em contato conosco. Atenciosamente, {EMITENTE} {TELEFONE_EMITENTE}.' WHERE `configuracoes`.`idConfig` = 7; 9 | -------------------------------------------------------------------------------- /updates/update_4.45.0_to_4.46.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `vendas` ADD `garantia` VARCHAR(45) NULL DEFAULT NULL; 2 | ALTER TABLE `vendas` ADD `status` VARCHAR(45) NULL DEFAULT NULL; -------------------------------------------------------------------------------- /updates/update_v2_to_v3.sql: -------------------------------------------------------------------------------- 1 | 2 | DROP TABLE `ci_sessions`; 3 | 4 | -- Atualizar tabela de sessão do Codeigniter 5 | CREATE TABLE IF NOT EXISTS `ci_sessions` ( 6 | `id` varchar(128) NOT NULL, 7 | `ip_address` varchar(45) NOT NULL, 8 | `timestamp` int(10) unsigned DEFAULT 0 NOT NULL, 9 | `data` blob NOT NULL, 10 | KEY `ci_sessions_timestamp` (`timestamp`) 11 | ); 12 | 13 | -- Alterando o tamanho do campo senha 14 | ALTER TABLE usuarios MODIFY senha VARCHAR(200) NOT NULL; 15 | 16 | -- Reset de senha do usuário administrador 17 | UPDATE usuarios SET senha = '94556715d7862d57e603e5e7389e0174227388d94090370517e3cfe5b1cccfbf3647bacd8dfc6190492c42d19e76df96308236c87c83ff78c37c01678d675e4fZE8TIK5YP2vt2j7+3ta7mfbOgY8wdMfs/vPCG5YBWh4=' 18 | 19 | -- Alterando tabela usuario 20 | ALTER TABLE `usuarios` ADD `dataExpiracao` DATE NOT NULL ; -------------------------------------------------------------------------------- /updates/update_v3.1.9_to_3.2.x.sql: -------------------------------------------------------------------------------- 1 | -- Alterando tabela usuario 2 | ALTER TABLE `usuarios` ADD `dataExpiracao` DATE NOT NULL ; 3 | 4 | UPDATE usuarios SET dataExpiracao = '3000-01-01'; -------------------------------------------------------------------------------- /updates/update_v3.1.x_to_3.1.9.sql: -------------------------------------------------------------------------------- 1 | -- Alterando tabela de produtos 2 | 3 | ALTER TABLE `produtos` ADD `saida` TINYINT(1) NULL DEFAULT NULL AFTER `estoqueMinimo`, ADD `entrada` TINYINT(1) NULL DEFAULT NULL AFTER `saida`; 4 | 5 | ALTER TABLE `lancamentos` CHANGE `baixado` `baixado` TINYINT(1) NULL DEFAULT '0'; 6 | 7 | ALTER TABLE `lancamentos` ADD `vendas_id` INT(11) NULL DEFAULT NULL; 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /updates/update_v3.3.x_to_3.4.x.sql: -------------------------------------------------------------------------------- 1 | 2 | -- ----------------------------------------------------- 3 | -- Table `Garantia` 4 | -- ----------------------------------------------------- 5 | 6 | CREATE TABLE IF NOT EXISTS `garantias` ( 7 | `idGarantias` INT NOT NULL AUTO_INCREMENT, 8 | `dataGarantia` DATE NULL, 9 | `refGarantia` VARCHAR(15) NULL, 10 | `textoGarantia` VARCHAR(2000) NULL, 11 | `usuarios_id` INT(11) NULL, 12 | PRIMARY KEY (`idGarantias`), 13 | INDEX `fk_garantias_usuarios1` (`usuarios_id` ASC), 14 | CONSTRAINT `fk_garantias_usuarios1` 15 | FOREIGN KEY (`usuarios_id`) 16 | REFERENCES `usuarios` (`idUsuarios`) 17 | ON DELETE NO ACTION 18 | ON UPDATE NO ACTION) 19 | ENGINE = InnoDB; 20 | 21 | 22 | ALTER TABLE `os` ADD `garantias_id` INT NULL; --------------------------------------------------------------------------------