Sitebuild során mindig előre mutató, aktuális megoldást használj. Legalább nagy vonalakban kövesd a core következő verziójának a fejlesztését, és úgy válogasd össze a szükséges modulokat, mintha holnap Drupal 8-ra kellene migrálnod!
Make HTML5 elements available in views 3.
In the views 3 we can build a customizable html output for view and own fields too. However it has own limit, by default we can choose the elements from a predefined list. Let's make some html5 elements available here too:
Php hints
This document was shared by chx in #drupal.hu irc channel. Original was found on github, but unfortunally it's deleted, so I don't know who write it.
I've just saved it for me unpublished, but now, I'm publishing and add some style.
--------------------------------------------------------------------------
This document discusses difficult traps and pitfalls in PHP, and how to avoid, work around, or at least understand them.
If you're brand new to PHP, read [[Articles/PHP Intro]] first.
Musthave fonts to ubuntu (macfonts, tahoma)
I've searched a lot, but http://ubuntu-debs.googlecode.com/files/macfonts.tar.gz doesn't work. I've found the macfonts.tar.gz in a temporary repository. Well, I hope, this site won't be deleted the next few years, I upload here along with other "musthave" font in ubuntu: the tahoma.
Just use it.
Történet (history) eltüntetése a felhasználói profilról
Mindössze néhány sorral a smink template.php-jében eltüntethetjük az ennyi és ennyi ideje regisztrált (történet) szöveget:
[geshifilter-drupal6] function your_theme_name_preprocess_user_profile(&$vars) { unset ($vars['profile']['summary']) ; $vars['user_profile'] = implode($vars['profile']); } [/geshifilter-drupal6]