Skip to main content

Home/ Groups/ foograde
Adán Muguiro

Symfony world: session timeout in symfony 1.3, 1.4 - 1 views

  •  
    Incrementar tiempo de sesión en symfony
Adán Muguiro

Symfony world: Custom admin generator filter example - 0 views

  •  
    Aplicar filtros de admin generator personalizados
Adán Muguiro

Love Coding: Diem, Symfony - Set value for Form field in processForm - 0 views

  •  
    Setteando campos manualmente durante el processForm
Fernando Vega

Dribbble - What are you working on? - 0 views

  •  
    Chequense esta es la madre de las ideas para proyectos web
Adán Muguiro

Embed Forms - 0 views

  •  
    Líneas de código para embeber un formulario dentro de otro donde existe una relación de clave foránea.
Adán Muguiro

[PHP] jq_link_to_remote con jq_visual_effect - Pastebin.com - 0 views

  •  
    Sintaxis para jq_visual_effect
Adán Muguiro

SAKRA WebStudio: Remove PostValidator in Symfony - 0 views

  •  
    quitar un post validator definido en una clase base
Adán Muguiro

Symfony world: symfony range filter - 0 views

  •  
    Implementar filtro de rangos en filtrado de generators
Adán Muguiro

Ordenamiento en columnas personalizadas en admin generator - 0 views

  •  
    Cabeceras ordenables en cualquier columna
Adán Muguiro

Ajaxload - Ajax loading gif generator - 0 views

  •  
    Animaciones gif para indicadores de carga por ajax
Adán Muguiro

jQuery: Get the checked and unchecked items from list of checkboxes « Sushant... - 0 views

  •  
    Manejo de checkboxes con jQuery
Fernando Vega

Copiar imagen de un servidor a otro. - Foros del Web - 0 views

  • function recibe_imagen ($url_origen,$archivo_destino){  $mi_curl = curl_init ($url_origen);  $fs_archivo = fopen ($archivo_destino, "w");  curl_setopt ($mi_curl, CURLOPT_FILE, $fs_archivo);  curl_setopt ($mi_curl, CURLOPT_HEADER, 0);  curl_exec ($mi_curl);  curl_close ($mi_curl);  fclose ($fs_archivo);  } 
    • Fernando Vega
       
      Guardar imagenes de Google Chart URL GET
Adán Muguiro

Doctrine y select Max - 0 views

  • $this->linea = Doctrine_Query::create()    ->select('MAX(linea) AS linea')    ->from('Tabla')    ->execute();
  •  
    Hacer una consulta select max con doctrine
Adán Muguiro

Ecualizador para Rhythmbox « Delirios de un Informático - 0 views

  •  
    Ecualizador para Rhythmbox
Fernando Vega

The Definitive Guide to symfony | Chapter 9 - Links And The Routing System | symfony | ... - 0 views

  • prod: .settings no_script_name: off
    • Fernando Vega
       
      para eliminar el nombre del controlador en lo enlaces
Fernando Vega

symfony framework forum: symfony 1.3 and 1.4 => Admin generator, filters and I18n - 1 views

  •  
    "class MenuFormFilter extends BaseMenuFormFilter { private $rootAlias; public function configure() { $this->widgetSchema['title'] = new sfWidgetFormFilterInput(array('with_empty' => false)); $this->validatorSchema['title'] = new sfValidatorPass(array('required' => false)); $this->widgetSchema['type'] = new sfWidgetFormChoice(array( 'choices' => Doctrine_Core::getTable('Menu')->getTypes(), 'expanded' => false, )); $this->validatorSchema['type'] = new sfValidatorChoice(array( 'choices' => array_keys(Doctrine_Core::getTable('Menu')->getTypes()), )); } public function addTitleColumnQuery(Doctrine_Query $q, $field, $values) { if (is_array($values) && isset($values['text']) && '' != $values['text']) { $this->JoinTable($q); $q->andWhere('t.title like ?', '%' . str_replace(" ","%",$values['text']) . '%'); } } public function addTypeColumnQuery(Doctrine_Query $q, $field, $values){ if (isset($values) && '%' != $values) { $this->JoinTable($q); $q->andWhere('t.type = ?', $values); } } private function JoinTable(Doctrine_Query $q){ if(empty($this->rootAlias)){ $request = sfContext::getInstance()->getRequest(); $this->rootAlias = $q->getRootAlias(); $q->leftJoin($this->rootAlias.'.Translation t') ->andWhere('t.lang = ?', $request->getParameter('sf_culture', 'ro')); // or it will search in all of them } } public function getFields(){ return parent::getFields() + array('type' => 'Text') + array('title' => 'Text'); } } "
1 - 20 of 87 Next › Last »
Showing 20 items per page