Skip to content

Instantly share code, notes, and snippets.

View silasrm's full-sized avatar

Silas Ribas Martins silasrm

View GitHub Profile
@silasrm
silasrm / ModuleBasedNavigation.php
Created April 11, 2012 11:53 — forked from mingomax/ModuleBasedNavigation.php
Zpf_Controller_Plugin_ModuleBasedNavigation
<?php
/**
* Registra objeto Zend_Navigation e disponibiliza para uso em:
* - Menus
* - Sitemap
* - Breadcrumbs
* Ja aplica as regras de ACLs
*
* @author Domingos Teruel <[email protected]>
*
@silasrm
silasrm / compressor.sh
Last active December 15, 2015 06:49 — forked from JoaoVagner/compressor.sh
Fiz umas melhorias como informar a pasta de origem e de destino dos arquivos. A pasta que será feita a limpeza. Bem como informar o caminho para o YUI sem usar a busca que já existia.
#!/bin/bash
FOLDER_IN=""
FOLDER_OUT=""
FOLDER_JS_IN="./js"
FOLDER_JS_OUT="./js"
FOLDER_CSS_IN="./css"
FOLDER_CSS_OUT="./css"
@silasrm
silasrm / gist:7877911
Last active December 30, 2015 19:59 — forked from anonymous/gist:7875406
<?php
require('../../dts/dbaSis.php');
require('../../dts/getSis.php');
require('../../dts/setSis.php');
require('../../dts/outSis.php');
$acao = ($_POST['acao'] ? $_POST['acao'] : $_GET['acao']);
$acao = mysql_real_escape_string($acao);
@silasrm
silasrm / gist:7878049
Last active December 30, 2015 19:59 — forked from anonymous/gist:7875395
<div id="box-pedido-produto-1" class="linhas">
<span>
Produto
<a href="#" class="removerCampo" data-id="box-pedido-produto-1"><img src="ico/no.png" class=" pedido-no" /></a>
</span>
<input type="text" class="produto_autocomplete produto" name="produto[]" data-count="1" />
<div id="produto_qv-1"></div>
</div>
@silasrm
silasrm / gist:7878113
Last active December 30, 2015 19:59 — forked from anonymous/gist:7875399
$(function () {
var contadorCamposAdicionar = 1;
removeCampo('box-pedido-produto-1');
function removeCampo(idNovoCampo) {
var novoCampo = $('#'+idNovoCampo+' a.removerCampo');
novoCampo.unbind("click");
#############################################################################
## data source definitions
#############################################################################
source users
{
# data source type. mandatory, no default value
# known types are mysql, pgsql, mssql, xmlpipe, xmlpipe2, odbc
type = mysql

I have managed to install this… and make it work. I implemented it for Facebook and Google, but you can extend it. My solution it is mostly as described in #116, with a bit of more code presented. The key aspects that lack in the #116 presentation (IMO) are:

  • the registration as service of your custom FOSUBUserProvider (with the necessary parameters)
  • set the service for oauth_user_provider in the security.yml with your custom created service

Here are the steps:

  1. Routing. In routing.yml I have added all the routes for both bundles.
  2. Configuration. I have set the config.yml mostly as it is presented in the HWIOAuthBundle.
  3. Security. I have set the security.yml mostly as it is presented in the HWIOAuthBundle (though my routes are using /login pattern, not /connect). Also, the oauth_user_provider is set for my custom service.
/*
verifica_cpf_cnpj
Verifica se é CPF ou CNPJ
@see http://www.tutsup.com/
*/
function verifica_cpf_cnpj ( valor ) {
// Garante que o valor é uma string
@silasrm
silasrm / Form.php
Last active August 29, 2015 14:24 — forked from jgornick/Form.php
<?php
// ...
$this->addElementPrefixPath('My_Validate', 'My/Validate/', 'validate');
$this->addElement('text', 'start_time', array(
'label' => 'Start Time (GMT)',
'class' => 'datetime',
'required' => true,
'validators' => array(
@silasrm
silasrm / CpfCnpj.php
Last active August 29, 2015 14:24 — forked from afranioce/CpfCnpj.php
<?php
namespace Obras\Bundle\CadastroBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
* @Target({"PROPERTY", "METHOD", "ANNOTATION"})
*