3
Est-il toujours mauvais de passer une variable via t ()?
J'ai une petite fonction d'aide pour mon hook_schema: function _bbcmap_schema_asr_field($description) { return array( 'type' => 'int', 'unsigned' => TRUE, 'size' => 'small', // Up to ~66k with MySQL (equivalent up to ~660.00 adjusted) 'not null' => FALSE, 'description' => t($description), ); } Et puis je peux l'utiliser quelque chose comme: …