Drupal user_hook in custom module - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:51:12Z http://stackoverflow.com/feeds/question/952729 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/952729/drupal-userhook-in-custom-module 1 Drupal user_hook in custom module unknown (google) 2009-06-04T19:49:14Z 2009-06-04T21:23:19Z <p>Modifying download_count module to include information about users who downloaded files. Want to show this info on users' profile pages.</p> <p>Here's the code:</p> <pre><code>function download_count_user($op, &amp;$edit, &amp;$account, $caterory = NULL) { if ($op == 'view') { $result = db_query("SELECT filename FROM file_downloads_users WHERE user_id = %d", $account-&gt;uid); while ($file_array = db_fetch_object($result)) { $file_str .= $file-&gt;filename . '&lt;br/&gt;'; } $items['downloads'] = array( 'title' =&gt; t('Files'), 'value' =&gt; $file_str, 'class' =&gt; 'member' ); return array(t('Downloads')=&gt;$items); } } </code></pre> <p>Doesn't give me any errors but doesn't show anything on My Account page either.</p> http://stackoverflow.com/questions/952729/drupal-userhook-in-custom-module/952765#952765 2 Answer by jskulski for Drupal user_hook in custom module jskulski 2009-06-04T19:57:42Z 2009-06-04T19:57:42Z <p>You don't want to modify a module. Drupal is built very very carefully to avoid having to hack core or contrib. Unless of course you are contributing a patch back.</p> <p>The right way is to build your own custom module to do this (that would require the user downloads module) and implement the hook almost exactly what you're doing here.</p> <ol> <li>The function is getting run (module enabled, var_dump ing or krumo'ing causes output?, cache cleared)</li> <li>The way you are keying your variables is for Drupal 5.x and below. In D6, you add to $account->content. Which version of drupal are you using? </li> </ol> <p>Check out user_user() (in user.module): </p> <pre><code> $account-&gt;content['user_picture'] = array( '#value' =&gt; theme('user_picture', $account), '#weight' =&gt; -10, ); </code></pre> http://stackoverflow.com/questions/952729/drupal-userhook-in-custom-module/953190#953190 0 Answer by unknown (google) for Drupal user_hook in custom module unknown (google) 2009-06-04T21:23:19Z 2009-06-04T21:23:19Z <pre><code> $account-&gt;content['summary']['file_downloads'] = array( '#type' =&gt; 'user_profile_item', '#title' =&gt; t('File Downloads'), '#value' =&gt; $file_str, '#weight' =&gt; 1 ); </code></pre>