This file contains 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
//REMOVE O 1º ESPAÇO E OS DUPLOS ESPAÇOS | |
$(".removeDuploEspaco").bind('keyup', function(e){ | |
e.preventDefault(); | |
var inicio = /^[^\s].*/; | |
if(!this.value.match(inicio)) | |
this.value = this.value.replace(/\s+/g,""); | |
else | |
this.value = this.value.replace(/\s+/g," "); | |
}) |
This file contains 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 | |
function timeToTexto($time){ | |
$retorno = array(); | |
$anos = floor($time/(86400*365)); | |
$time = $time%(86400*365); | |
$meses = floor($time/(86400*30)); | |
$time = $time%(86400*30); | |
$dias = floor($time/86400); | |
$time = $time%86400; | |
$horas = floor($time/(3600)); |
This file contains 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
/*! | |
* Ext JS Library 3.2.1 | |
* Copyright(c) 2006-2010 Ext JS, Inc. | |
* [email protected] | |
* http://www.extjs.com/license | |
*/ | |
Ext.ns('Ext.ux.form'); | |
/** |
This file contains 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 | |
$preco=Convert('USD', 'BRL','535,93'); | |
if($preco!=false){ | |
echo $preco; | |
} | |
else{echo "conversão não possível";} | |
/** | |
* [Converte Moedas] | |
* @example http://www.google.com/finance/converter |
This file contains 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
CREATE OR REPLACE FUNCTION public.url_slug ( | |
s_texto text | |
) | |
RETURNS varchar AS | |
$body$ | |
DECLARE | |
total integer; | |
BEGIN | |
s_texto := replace(s_texto , 'U$', 'dolares'); | |
s_texto := replace(s_texto , 'R$', 'reais'); |
This file contains 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
<!-- | |
/*! | |
* Ext JS Library 3.0.0 | |
* Copyright(c) 2006-2009 Ext JS, LLC | |
* [email protected] | |
* http://www.extjs.com/license | |
*/ | |
--> | |
<html> | |
<head> |
This file contains 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 | |
function url_slug($str, $replace=array(), $delimiter='-', $maxLength=200) { | |
setlocale(LC_ALL, 'pt_BR.UTF8'); | |
if( !empty($replace) ) { | |
$str = str_replace((array)$replace, ' ', $str); | |
} | |
$clean = iconv('UTF-8', 'ASCII//TRANSLIT', $str); | |
$clean = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $clean); | |
$clean = strtolower(trim(substr($clean, 0, $maxLength), '-')); |
This file contains 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
SELECT | |
P.DESTIPOPROC | |
,COUNT(P.DESTIPOPROC) AS TOTAL | |
FROM PROTOCOLO.HISTORICO H | |
RIGHT JOIN PROTOCOLO.PROCESSOS P ON (P.NUMPROCESSO=H.NUMPROCESSO) | |
JOIN PROTOCOLO.INTERESSADOS I ON (I.NUMPROCESSO=P.NUMPROCESSO) | |
WHERE TO_CHAR(H.DATTRAMITOU ,'DD/MON/YYYY') BETWEEN TO_DATE('{?Pm-DataIni}','DD/MM/YYYY') AND TO_DATE('{?Pm-DataFim}','DD/MM/YYYY') | |
AND | |
1 = ( CASE WHEN {?Pm-CargoA} = -1 THEN 1 | |
WHEN H.CODORGAO = {?Pm-CargoA} THEN 1 |
This file contains 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 | |
function datediff ($inicio, $fim, $tipo = 'd'){ | |
list($dia1,$mes1,$ano1) = explode("/",$inicio); | |
list($dia2,$mes2,$ano2) = explode("/",$fim); | |
$data_inicio = mktime(0,0,0,$mes1,$dia1,$ano1); | |
$data_fim = mktime(0,0,0,$mes2,$dia2,$ano2); | |
$diferenca = ($data_fim - $data_inicio); |
This file contains 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
CategoriasLista = Ext.extend(Ext.Panel, { | |
title : 'Titulo' | |
,$depends : [pluginFormUx + 'statusbar/StatusBar']//CARREGA ARQUIVOS DINAMICAMENTE | |
,layout : 'fit' | |
,initComponent: function() { | |
var tbar = new Ext.Toolbar({ | |
items: | |
[ | |
{ |
OlderNewer