This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div style=" float: right; padding: 20px 0 20px 35px; font-family:Verdana, Geneva, sans-serif; font-size:12px;"> | |
| <div class="Upload">oi</div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="form_filtro_container ui-widget ui-widget-content ui-corner-all"> | |
| <span class="form_filtro_titulo ui-widget-header ui-corner-all">LABEL</span> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if(!empty($_POST)){ | |
| require_once "SOAP/Client.php"; | |
| // SOAP/WSDL | |
| $sw = new SOAP_WSDL ("http://192.168.1.60/web.php?wsdl"); | |
| // Proxy-Obj. | |
| $proxy = $sw->getProxy (); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ====== html ========= | |
| <div id="footer" class="ui-accordion-header ui-helper-reset ui-state-default">Unicred - Todos os direitos reservados</div> | |
| ======= CSS ==========> o css está localizado no site.css | |
| div#footer { | |
| bottom: 0pt; | |
| float: left; | |
| height: 30px; | |
| line-height: 30px; | |
| margin-top: 40px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form action="http://64.15.129.201:8027/unicredmais/retaguarda/upload/send" method="post" enctype="multipart/form-data"> | |
| <table class="table_form" style="width: 500px;"> | |
| <tbody><tr style="width: 110px;"> | |
| <td class="td_label"> | |
| <label for="arquivo">Arquivo: *</label> | |
| </td> | |
| <td class="td_field" style="width: 390px;"> | |
| <input type="file" name="arquivo" size="35" alt="Arquivo"> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="ui-widget"> | |
| <div class="ui-state-success ui-corner-all" style="margin-top: 20px; padding: 0 .7em;"> | |
| <p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span> | |
| Item removido com sucesso.</p> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| url = '<?php echo url::base(); ?>fornecedor/ofertas/get_ofertas'; | |
| $('.form_filtro_submit').click(function() { | |
| new_url = url +'?'+ $('.form_filtro').serialize(); | |
| $("#grid").jqGrid('setGridParam',{url:new_url}).trigger("reloadGrid"); | |
| return false; | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php defined('SYSPATH') OR die('No direct access allowed.'); | |
| ini_set('include_path', ini_get('include_path').PATH_SEPARATOR.APPPATH.'vendor/'); | |
| include Kohana::find_file('vendor','Zend/Soap/AutoDiscover'); | |
| include Kohana::find_file('vendor','Zend/Soap/Server'); | |
| class Atualiza_Senha_Controller extends Controller { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * include the library files and the model | |
| */ | |
| class Service_Model extends Model | |
| { | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| function actions(cellvalue, options, rowObject) { | |
| retorno = '<a style="margin-right: 5px" href="<?php echo url::base(); ?>market/fornecedores/show/'+rowObject.id+'" title="<?php echo kohana::lang('admin.show'); ?>">'; | |
| retorno += '<?php echo html::image('images/icons/zoom.png'); ?></a>'; | |
| retorno += '<a href="<?php echo url::base(); ?>market/fornecedores/edit/'+rowObject.id+'" title="<?php echo kohana::lang('admin.edit'); ?>">'; | |
| retorno += '<?php echo html::image('images/icons/page_edit.png'); ?></a>'; | |
| retorno += ' ' | |
| retorno += '<a href="<?php echo url::base(); ?>market/fornecedores/disable/'+rowObject.id+'" title="<?php echo kohana::lang('admin.disable'); ?>" '; | |
| retorno += 'onclick="return window.confirm(\'<?php echo kohana::lang('admin.confirm.supplier'); ?>\')"><?php echo html::image('images/icons/cross.png'); ?></a>'; | |
| return retorno; |