Blog Scroll (Inglés / English)
DrupalCamp CA / Guatemala 2010
Hey folks.
I went to the last Drupal Camp Central America 2010, this event was in Guatemala at June 25/26. I did two lectures about Drupal Themes + 960 Grid CSS and Migration Tips from other CMS to Drupal.
This event was 100% successful with people from Nicaragua, El Salvador, Belice, Mexico, Costa Rica, Colombia (me) and off course Guatemala.
Also I visited the beautifully city Antigua, Guatemala . some pictures at http://picasaweb.google.com/yersika/Drupalgt10
Attachment(click to download) Drupal-Migration-2010-Spanish.ppt819.5 KB Drupal-Migration-2010-Spanish.odp683.95 KB Drupal-Themes-2010-Spanish.ppt1.62 MB Drupal-Themes-2010-Spanish.odp1.47 MBContent Profile Form inside User Edit for Drupal 6
If you are familiar with Content Profile Drupal Module, you notice this module generate a tab(s) or subtab(s) for edition mode. This behavior is acceptable, but a common request is enable to put all fields in one big form, but with the option each section has its own submit button.
Well this is my solution for this request.
1. Create a PHP block for each content profile content type, i.e user_shipping_address_page.
How to set the index length in the Drupal Database Schema
I believe that you must be really picky when you define a database in a project, that is one of the spots where you could be taking your project to success or failure in terms of performance.
Drupal 6 and up has a very convenience way define your tables without using syntax for a specific database server, but, this sometimes could be a little limited when trying to set specific details like the index length, so, I'll explain to you how to achieve this specific feature.
How use views arguments in PHP Code for Drupal 6
If you need for some reason in your header or footer PHP code use this snipet code
$view = views_get_current_view();// [0] is first arg, [1] is second etc.
$new_var = $view-> args[0];
echo $new_var;
Enjoy It
enzo